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

https://github.com/ullaskunder3/authentication-session-cookies

implement session-based authentication in Node.js using the Express.js framework, session-cookies, ejs, mongoose as a database, bcrypt for hashing
https://github.com/ullaskunder3/authentication-session-cookies

Last synced: 9 months ago
JSON representation

implement session-based authentication in Node.js using the Express.js framework, session-cookies, ejs, mongoose as a database, bcrypt for hashing

Awesome Lists containing this project

README

          

# authentication-session-cookies
Simple user authentication login using session-cookies with express, ejs, mongoose, bcrypt

Example:

| landing page | login page |
| --- | --- |
| ![landingpage](https://user-images.githubusercontent.com/66258652/144657176-9045b30b-7d4d-4b3c-b572-19cc526c7908.png) | ![loginpage](https://user-images.githubusercontent.com/66258652/144657179-3cec5918-e70a-43c4-83d5-8f7f3b37eb0b.png) |

- dependencies

```js
"dependencies": {
"bcrypt": "^5.0.1",
"connect-mongodb-session": "^3.1.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongoose": "^6.0.5"
}
```

soon...