Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cristians-12/nestbackendauth
Servicio para autentificacion de usuarios.
https://github.com/cristians-12/nestbackendauth
backend-api backend-service nest nestjs node nodejs
Last synced: about 2 months ago
JSON representation
Servicio para autentificacion de usuarios.
- Host: GitHub
- URL: https://github.com/cristians-12/nestbackendauth
- Owner: cristians-12
- Created: 2024-09-09T21:27:42.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-11T00:41:31.000Z (4 months ago)
- Last Synced: 2024-11-14T04:47:42.427Z (about 2 months ago)
- Topics: backend-api, backend-service, nest, nestjs, node, nodejs
- Language: TypeScript
- Homepage:
- Size: 297 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Servicio backend para autentificacion y registro de usuarios haciendo uso de MongoDB
Este servicio permite crear, actualizar y obtener usuarios del sistema. Esto haciendo uso de JWT para todas las peticiones protegidas
## Autenticación
Todas las peticiones deben incluir el encabezado de autorización con un token JWT:## Lista de Endpoints
| Método | Endpoint | Descripción |
|--------|----------------------------|--------------------------------|
| `GET` | `/users` | Obtiene todos los usuarios |
| `GET` | `/users/:id` | Obtiene un usuario por ID |
| `POST` | `/users` | Crea un nuevo usuario |
| `POST` | `/:id/users/favorites` | Para agregar favorito a usuario|
| `GET` | `/users/:id/favorites` | Obtiene todos los favoritos de un usuario.|