Install package:
npm installSet the environment variables:
cp .env.example .env
# open .env and modify the environment variablesStrat server
npm startUse Postman to send the request.
Get all users:
[GET] locahost:3000/user/Get user by Id:
[GET] localhost:3000/user/:idCreate an user:
[POST] localhost:3000/user/createUpdate an user:
[PUT] localhost:3000/user/:idDelete an user:
[DELETE] localhost:3000/user/:id