A very simple MERN stack project that aims to demonstrate, how authentication, authorization and accounting could be implemented in a web application.
This project is still work in progress, and not completely functional at the moment.
This basic project aims to demonstrate authentication, authorization and accountability aspects of a system. Current and future goals to be accomplished:
- Authentication process should be secure and immune to common attacks.
- Role-based access control (RBAC) ideology for authorization.
- Best ways to dynamically managing users and their roles with ease.
- Simple metrics reporting for accountability purposes.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". If you like this project, you can give it a star. Thanks.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature
) - Commit your Changes (
git commit -m 'Add some feature'
) - Push to the Branch (
git push origin feature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Resources used in this project.
- create-react-app (React boilerplate)
- create-express-api (Express boilerplate)
- jsonwebtoken (secure client-server authentication and communication)
- bcrypt (hashing and salting passwords)
- nodemon (enhancing the development speed)
- express-validator (middleware to validate request inputs)