Node.js Basics — HTTP

John Au-Yeung
3 min readJan 14, 2021
Photo by Andrew Small on Unsplash

Node.js is a popular runtime platform to create programs that run on it.

It lets us run JavaScript outside the browser.

In this article, we’ll look at how to start using Node.js to create programs.

HTTP

The http module is a module that comes with the Node.js runtime environment.

--

--