Giver Kdkgiver-node.hashnode.dev·Jan 16, 2024Node.js: HTTP ModuleWhat is this HTTP all about? The 'http' that we use as a module is actually a protocol which allows data exchange between client and server. As discussed before, 'http' is a built-in module in Node.js. It has 2 types of messages: HTTP Request and HT...http
Giver Kdkgiver-node.hashnode.dev·Oct 31, 2023Node.js: Built-in ModulesOS Module This module provides information about the operating system and computer specifications. // Importing built-in os module const os = require('os'); console.log(os.type()); // Tells base kernel of OS console.log(os.version()); ...Builtin Modules