https://github.com/michaelbe812/signup-bcrypt-demo
https://github.com/michaelbe812/signup-bcrypt-demo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/michaelbe812/signup-bcrypt-demo
- Owner: michaelbe812
- Created: 2018-10-16T17:33:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T17:41:20.000Z (over 6 years ago)
- Last Synced: 2025-04-06T07:35:02.800Z (about 2 months ago)
- Language: JavaScript
- Size: 252 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Basic User Sign Up Contact Form with password encryption
### Tech Stack
* React Frontend with Bootstrap 4 Form
* Express Backend, serving a REST-API
* bcrypt for password encryption (https://github.com/dcodeIO/bcrypt.js/blob/master/README.md)
* node.jsThis demo only shows a basic post request with user sign up information and then the
process of hashing the user's pw with bcrypt-hashing-algorithm.The hashed pw you would then store in your database and de-crypt if user wants to sign in.
### How to use
Client and Server are tow entirely separate projects! I just packed them together in this repo for convenience.Run the Client by navigating into the folder and running `npm start`in your terminal.
Run the Server by navigating into the server folder and running `node server.js` in your terminal.