DEV Community

Ashley Bibizadeh
Ashley Bibizadeh

Posted on

 

Open Source Universal User Registration System – NodeJS React Redux JWT MongoDB

GitHub Repository
Demo: Visit the demo
View the documentation here

Please note: As the Demo is hosted on a free Heroku account, the servers its hosted on enter ‘sleep mode’ when not in use. If you notice a delay, please allow a few seconds for the servers to wake up.

System includes:

Registration, Login, Dashboard, Email Password, Logout

Account Update, 404 (Not Found)

The User Registration System is Fully Responsive out the box and you can Restrict Access to any page!

Tech Stack:
  • NodeJS
  • React
  • Server-side Rendered
  • Redux
  • Redux-Thunk
  • Redux-Form
  • MongoDB
  • Mongoose
  • JSON Web Tokens
  • Webpack 4
  • Babel 7
  • Express
  • SASS
Top Features:
  • Async Validation (Redux-Form)
  • Winston - Better error handling/logging
  • Bcrypt password encryption/verification
  • Nodemailer – Custom mail server used to send password reset emails
  • Custom ‘Password Reset’ Template (Built with MJML Framework)
  • Multiple Layouts – Create unlimited layouts for pages/routes
  • Unit Tests
  • Toastr - Simple javascript toast notifications
  • 100% FREE & Open Source

Oldest comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.