Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        


Nest Logo

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.|