An open API service indexing awesome lists of open source software.

https://github.com/cameroncandau/rest-api-with-session-authorization

A backend REST API with user authentication and authorization. Built with NodeJS, Express, MongoDB Atlas, Mongoose and Passport. Password hashes and salts are generated using PBKDF2. Session cookies (via express-session and Passport) are stored in the database for validation.
https://github.com/cameroncandau/rest-api-with-session-authorization

mern-stack rest-api

Last synced: about 2 months ago
JSON representation

A backend REST API with user authentication and authorization. Built with NodeJS, Express, MongoDB Atlas, Mongoose and Passport. Password hashes and salts are generated using PBKDF2. Session cookies (via express-session and Passport) are stored in the database for validation.

Awesome Lists containing this project

README

          

# user-auth
Backend REST API with user authentication and authorization. Built with NodeJS, Express, MongoDB Atlas, Mongoose and Passport. Password hashes and salts are generated with the PBKDF2 algorithm and are stored for each user in the database. Session cookies (via express-session and Passport) are stored in the database for validation, and middleware allows for protected routes.