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
- Host: GitHub
- URL: https://github.com/codeantik/authentication-server
- Owner: codeantik
- Created: 2021-11-09T10:24:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-11T12:16:23.000Z (over 4 years ago)
- Last Synced: 2025-03-03T16:50:44.677Z (about 1 year ago)
- Topics: authentication, authentication-server, cors, dotenv, express, mongodb, mongodb-atlas, mongoose, morgan, nodejs, nodemon
- Language: JavaScript
- Homepage: https://node-auth-server.herokuapp.com/users
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
>
>
> }
***