- Download and install mongoDB community version in your pc. (local)
- Download and install mongoDB shell, for using mongoDB in terminal (local)
- Download and install mongoDB compass for GUI (local)
- Use mongoDB atlas for cloud version (recommended for students).
- URL
- HTTP METHOD
For example router.get('/users', userController)
- Handle requests and send response
For example const userController = (req, res)=> {res.send(users)}
- Working with database queries
For example const userService = () => { return Users.find(); }