Export Module in Node.js
Export Module in Node.js: Node.js also facilitates its users to create their own modules using export keyword. The module.exports or exports object is a special type of object which is Read more »
Node.js Package Manager
NodeJS Package Manager: NPM or Node.js Package Manager manages the Node.js packages, which contains the files a user needs for a module. The NPM program is installed with Node.js installable Read more »
Node.js Web Server
Node.js Web Server: A software program that handles the HTTP requests sent by web applications, is called as Web Server. A web server responds with html documents or web pages Read more »
Node.JS File System
Node.js File System: To perform a file operation like creating, reading or writing a file in Node.js, Node.js File system module is a must to be included first. ● To Read more »
Debugging Node.js
Debugging Node.js: Debugging a Node.js application can be done in three ways, using Core Node.js debugger Node Inspector Built-in debugger in IDEs Core Node.js Debugger: Node.js provides a simple built-in Read more »
Node Inspector
Node Inspector: Debugging a Node.js file can also be done using Node inspector which is a GUI based debugger which is needed to be installed separately using npm. Steps to Read more »
Node.js EventEmitter
NodeJS EventEmitter: An action performed is termed as an event. Node.js is faster than other frameworks as it uses event driven programming technique. An event is more or less Read more »
Frameworks for Node.js
Frameworks for Node.js: A third party framework is used in Node.js to make its development easy and quick. Node Package Manager or NPM provides a list of open source frameworks Read more »