Build Node.js RESTful APIs
What is REST?
đź’–Rest is an acronym for Representational State Transfer. It is web standards architecture and HTTP Protocol.
Setting up the routes
đź’–Routing refers to determining how an application responds to a client request for a specific endpoint, which is a URI (or path) and a specific HTTP request method (GET, POST, and so on).đź’–Each of our routes has different route handler functions, which are executed when the route is matched.
No comments:
Post a Comment