#crud-users
npm intsall
npm run dev
npm install
npm start
npm run dev
backend base url : http://localhost:3700/
frontend base url : http://localhost:3000/
change the content of MONGO_URI in your .env file with you access URI mongoDB cloud
#Add user
/api/users (POST)
#Get all users
/api/users (GET)
#Get one user
/api/users/:id (POST)
#Update user
/api/users/:id (POST)
#Delete one user
/api/users/:id (POST)
/ (principal page)
/:id (find user by id)