Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kristoffer95/2023-node-authentication
Authentication with node, primsa with postgreSQL, redis, typescript, docker
https://github.com/kristoffer95/2023-node-authentication
Last synced: 24 days ago
JSON representation
Authentication with node, primsa with postgreSQL, redis, typescript, docker
- Host: GitHub
- URL: https://github.com/kristoffer95/2023-node-authentication
- Owner: Kristoffer95
- Created: 2023-08-28T15:02:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-29T09:05:52.000Z (over 1 year ago)
- Last Synced: 2023-09-29T12:25:22.274Z (over 1 year ago)
- Language: TypeScript
- Size: 157 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Package.json scripts
`prisma:generate` - to generate types(typescript) of tables
`prisma:migrate` - to create a database migration# Docker Setup
## Dockerfile
```dockerfile
# Can check node version in https://hub.docker.com/_/node
FROM node:18.17-alpine3.18 as development
```# FEATURES
[x] - Authentication(Bcrypt, Redis, Prisma ORM)
[x] - Email Verification
[x] - Forgot Password(Send email with link to reset password)
[x] - User session with redis
[x] - Better Error handling
[x] - Limiting Network Traffic
- using express-rate-limit
[] - CORS
[x] - Dockerized