Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.19 KB

README.md

File metadata and controls

46 lines (31 loc) · 1.19 KB

NodeJS RESTful API (05.2019)

Links

Installation and Usage steps

Setup MongoDB as described here

Install node dependencies

git clone https://[email protected]/boolfalse/node-rest-shop.git

Write credentials in 'nodemon.json'

Install node dependencies

npm install

Run node server

npm start

TODOs:

  • fix module.exports (like for example in bottom of file 'models/user.js')
  • show all users route
  • add status (active/blocked) for models
  • check is record exists, before deleting or updating
  • retrieve request data from form data parameters
  • fix JWT deprecation warning appeared in terminal
  • add new routes for user model
  • add image uploading for user
  • make permissions for different users
  • database querying (one to many, many to many, etc)