Create API using Express
First, make a basic node js server
To set up, up the server and install nodemon, express as your dependencies
Setup Server ๐ฅ
Add this in your server.js or in an index.js
//Load HTTP module
const http = require("http");
const hostname = "127.0.0.1";
...
aashman.hashnode.dev3 min read