Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbchoa/express-auth-example
Example repo to demonstrate and become familiar with various methods of session handling
https://github.com/mbchoa/express-auth-example
authentication express redis session
Last synced: 8 days ago
JSON representation
Example repo to demonstrate and become familiar with various methods of session handling
- Host: GitHub
- URL: https://github.com/mbchoa/express-auth-example
- Owner: mbchoa
- Created: 2017-04-05T02:38:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-07T07:02:27.000Z (over 7 years ago)
- Last Synced: 2024-10-28T08:56:03.628Z (about 2 months ago)
- Topics: authentication, express, redis, session
- Language: JavaScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo is primarily a playground for testing different session store middlewares with Express. The source code is heavily borrowed from @bahmutov's "Express sessions" guide a la [https://glebbahmutov.com/blog/express-sessions/](https://glebbahmutov.com/blog/express-sessions/).
# Setup
1. Install node dependencies using `npm install` or `yarn install`
2. Run `[ yarn | npm ] run watch` to start the server
3. Open browser and navigate to `http://localhost:3000`# Resources
- Express Sessions by bahmutov: [https://glebbahmutov.com/blog/express-sessions/](https://glebbahmutov.com/blog/express-sessions/)