- CRUD operation with MongoDB
- Config the Routes on nodejs server
- Set the global config data like mysql credentials or other
Install Dependencies - npm install
Run - ng serve
Install Dependencies - npm install
Run - node app.js
- Get all users GET - http://localhost:3000/api/users/getUsers
- Get single user (id) GET - http://localhost:3000/api/users/getUsers/1
- Create user (name, email, password, phone) POST - http://localhost:3000/api/users/createUser
- Update user (id) PUT - http://localhost:3000/api/users/updateUser/3
- Delete user (id) DELETE - http://localhost:3000/api/users/deleteUser/1