Instructions:
Using the Architectural Design Pattern (MVC), design routes for restful services. Explain the application and each route.
All you need is to explain each route (see lesson for routing table example), you do not need to provide any code. You need to design an application (explain the purpose) and each route (different URLs for accessing different functions)
Here is a Routing Table for User Service application. The user service application, is an application that
Sr. No.
|
HTTP Method
|
URI
|
Operation
|
CRUD
|
1
|
GET
|
/UserService/users
|
Get list of users
|
Read
|
2
|
GET
|
/UserService/users/1
|
Get User with Id 1
|
Read
|
3
|
PUT
|
/UserService/users/2
|
Insert User with Id 2
|
Update
|
4
|
POST
|
/UserService/users/2
|
Update User with Id 2
|
Create
|
5
|
DELETE
|
/UserService/users/1
|
Delete User with Id 1
|
Delete
|
Forum Discussion Points (250 words)
Explain the use of node.js frameworks for web applications express.
What did you learn?
How can you use what you learned?