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
- Host: GitHub
- URL: https://github.com/ullaskunder3/authentication-session-cookies
- Owner: ullaskunder3
- Created: 2021-12-03T18:49:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-04T13:03:06.000Z (over 4 years ago)
- Last Synced: 2025-07-02T03:05:51.404Z (12 months ago)
- Language: EJS
- Homepage:
- Size: 39.1 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |
| --- | --- |
|  |  |
- 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...