A very simple Web API, using JSON data from a file. We have divided the process in 3 basic parts -
🚀 Part 1
-
In this part, We have built a simple web server using
http module
in Node.js. -
To Learn more about creating a web server, you may refer this article.
🚀 Part 2
-
In this part, We have implemented basic routing using
url module
in Node.js . -
To Learn more about how routing works in Node.js, you may refer this article.
🚀 Part 3
-
In this part, We have created a simple Web API, using JSON data from a file.
-
To Learn more about how to build an API in Node.js, you may refer this article.
🚀 Part 4
-
In this part, We have implemented basic routing using Express.js .
-
To Learn more about how to implement Routing in Node using Express.js, you may refer this article.