Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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/)