DEV Community

Said Mounaim
Said Mounaim

Posted on

JWT Authentication Using Express.js & MongoDB With TypeScript

Auth-TS

JWT Authentication Using TypeScript, Express.js, & MongoDB

Features:

  • Authentication

Technology Stack:

  • TypeScript
  • Node.js
  • Express.js
  • MongoDB
  • JWT

Default urls:

  • Login User : POST METHOD localhost:5000/api/auth
  • Register User : POST METHOD localhost:5000/api/auth/register
  • Get All Users : GET METHOD localhost:5000/api/auth/

Usage

Env Variables

Create a .env file in then root and add the following

PORT = 5000
MONGO_URI = your mongodb uri
JWT_SECRET = 'abc123'

Enter fullscreen mode Exit fullscreen mode

Install Dependencies

npm install

Enter fullscreen mode Exit fullscreen mode

Run App


# Run in dev mode

npm run server

Enter fullscreen mode Exit fullscreen mode
  • Version: 1.0.0
  • License: MIT
  • Author: Said Mounaim

Github Repo: https://github.com/saidMounaim/Auth-TS

For more projects, see my Github Profile
https://github.com/saidMounaim

Top comments (0)