JavaScript

Weather App project is a simple project for using weather API. This app is build using Express JS for learning beginners exploring APIs. This...
Read more »

We may get response from an API while making an https request. We can do console.log and view the whole https response. Looking at...
Read more »

We can send multiple lines of HTML through the res.send the response in node js. This can be done by using the res.write() Eg:...
Read more »

In this project, we gonna create a weather updates webpage using Node & Express JS. We are using the weather API provided by OpenWeather....
Read more »

JSON refers to JavaScript Object Notation. Its mainly used for the purpose of passing data around the internet. Its made up of objects, key-value...
Read more »

POST request can be received to the server and response can be given to that using express js. eg: app.post("/", function(req, res){ res.send("Thanks for...
Read more »

In this tutorial we gonna check how we can direct our incoming request to an html file. So here we gonna use express js's...
Read more »

How to get form data using express js. POST form data and receive at the backend. Install bodyParser npm i body-parser For parsing the...
Read more »

How to print or get the root project folder path while coding in express JS. The root folder is the main project folder where...
Read more »

Nodemon is one of the most useful node packages that save a lot of time during code changes. Normally every time we make changes...
Read more »