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

https://github.com/codeantik/authentication-server

A server used for authentication of users
https://github.com/codeantik/authentication-server

authentication authentication-server cors dotenv express mongodb mongodb-atlas mongoose morgan nodejs nodemon

Last synced: 21 days ago
JSON representation

A server used for authentication of users

Awesome Lists containing this project

README

          

DOCUMENTATION

> **LINK --> [https://node-auth-server.herokuapp.com/users](https://node-auth-server.herokuapp.com/users)**

> **GET**
> ***/users*** -> home page

***

> **GET**
> ***/users/usersList*** -> list of all registered users

***

> **POST**
> ***/users/register***

> **e.g.**
>
> {
>
>
> "username": "your-username",
>
>
> "email": "your-email",
>
>
> "password": "your-password"
>
>
> }

***

> **POST**
> ***/users/login***

> **e.g.**
>
> {
>
>
> "email": "your-email",
>
>
> "password": "your-password"
>
>
> }

***