https://github.com/agm-dev/atlas-auth
Express router that handles some auth and user related endpoints
https://github.com/agm-dev/atlas-auth
Last synced: 9 months ago
JSON representation
Express router that handles some auth and user related endpoints
- Host: GitHub
- URL: https://github.com/agm-dev/atlas-auth
- Owner: agm-dev
- Created: 2019-06-18T22:10:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T00:47:59.000Z (about 3 years ago)
- Last Synced: 2025-06-09T20:11:31.719Z (10 months ago)
- Language: JavaScript
- Size: 1.07 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# atlas-auth
This should expose some auth controllers and express routes to handle user authentication flow.
This package is intended to be used in an express application, to just import the routes and attach them to the router.
## Public API
| Exported Variable | Description |
|-|-|
| authRouter | Express router with routes configured, just to be imported and used as Express router. |
## Create Keys
```bash
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 10000 -nodes
```