A Simple authentication system built in Node.js is a server-side application that uses the popular JavaScript runtime environment to handle authentication tasks. This system is designed to be simple and easy to use, allowing users to quickly and securely log in to the system using a username and password. The system uses Node.js to handle the authentication process, including verifying the user's credentials and managing sessions through JWT tokens to ensure that the user remains logged in.
This AuthenticationSystem is capable to be used in web applications for Easily Authentication and is known for its reliability and robust security features.
Deploy Application on Cloud
git clone https://github.com/innovatorved/AuthenticationSystem.git
cd AuthenticationSystem
yarn
yarn start
.
├── databse # Database Connection to MongoDB
│
├── models # User - Database Schema
│
├── src # Source files
│ │
│ ├── middleware # All Middleware Files
│ │
│ └── routes # Context - Global State Manager
│ │
│ ├── auth # Authentication routes - createaccount , login routes
│ │
│ ├── admin # Only Admin user can access these routes
│ │
│ ├── secure # Only Authentication user can access these routes
│ │
│ └── app.js # All router are connected
│
├── .env.example # Needs to create the .env file as per .env.example
│
│
└── index.js # Startpoint of the Entire Application
- https://mongoosejs.com/docs/
- https://www.npmjs.com/package/bcryptjs
- https://jwt.io/
- https://expressjs.com/en/guide/routing.html
I'm a Developer i will feel the code then write .
For support, email [email protected]