Skip to content
This repository has been archived by the owner on Mar 23, 2020. It is now read-only.

simple React signature pad to send canvas data-urls signatures to sql-server varbinary(max)

Notifications You must be signed in to change notification settings

australis-technica/react-signature-pad-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple react signature pad purpose: send canvas/drawing/signature to sql-server varbinary(max) column;

building:

yarn 
npm run build
npm test

Run it:

npm run serve # from root project
npm run start # from root project

but before ....

create a .secrets/ directory on project root and place a file named:

 db-connection.config.json

with the following schema: (see tedious/Connection)

{
    "server": "localhost",
    "userName": "sqluser",
    "password": "sqlpassword",
    "port": 1433,
    "options": {
        "encrypt": false, // optional
        // db must exists!
        "database": "react_signature_pad_demo" // any db_name you like
    }
}

ui:
packages/signature-pad-demo (React/ui)

serve:
packages/signature-pad-demo-backend (Node/Express)

About

simple React signature pad to send canvas data-urls signatures to sql-server varbinary(max)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages