Please enable Javascript to correctly display the contents on Dot Net Tricks!

Exploring Node.js Core Modules

Posted By : Shailendra Chauhan, 31 Dec 2015
Updated On : 31 Dec 2015
Total Views : 800   
 

A module is a collection of JavaScript code which encapsulate related code into single unit of code. Node.js has a simple module loading system. A developer can load a JavaScript library or module into his program by using require method as given below:

var http = require('http');

Node.js Core Modules

Node.js comes with many core modules which are compiled to binary when node.js is installed. There is a list of node.js core modules with links to documentation.

Module Name
Description
Assert
It is used by Node.js for testing itself. It can be accessed with require('assert').
Buffer
It is used to perform operations on raw bytes of data which reside in memory. It can be accessed with require('buffer').
Child Process
It is used by node.js for managing child processes. It can be accessed with It can be accessed with require('child_process').
Cluster
This module is used by Node.js to take advantage of multi-core systems, so that it can handle more load. It can be accessed with require('cluster').
Console
It is used to write data to console. Node.js has a Console object which contains functions to write data to console. It can be accessed with require('console').
Crypto
It is used to support cryptography for encryption and decryption. It can be accessed with require('crypto').
Debugger
It is used for code debugging. To use this, start Node.js with the debug argument and for debugging add debugger; statement in your code.
DNS
It is used to perform operations like lookup and resolve on domain names. It can be accessed with require('dns').
Events
It is used for events handling in node.js. In node.js, events are emitted by other node objects. It can be accessed with require('events').
File System
It is used to perform operations on files. It can be accessed with require('fs').
HTTP
It is used to create Http server and Http client. It can be accessed with require('http').
Net
It used to create TCP server and client which can communicate over a network using TCP protocol. It can be accessed with require('net').
OS
It is used to provide basic operating system related utility functions. It can be accessed with require('os').
Path
It is used to perform operations on paths of files. It can be accessed with require('path').
Process
It is a global object and provides information related to the program execution. You do not need to load it using require() method.
Query String
It is used to deal with query strings.
Stream
It is used to stream data between two entities. It can be accessed with require('stream').
Timers
All of the timer functions are global and deals with time. You do not need to load it using require() method.
Url
It is used for URL resolution and parsing. It can be accessed with require('url').
Util
It is primarily designed to support the needs of Node.js's internal APIs. It is also useful for debugging. It can be accessed with require('util').
Vm
It provides an access to V8 virtual machine to compile and execute JavaScript code. It can be accessed with require('vm').
Zlib
It is used to compress and decompress data. It can be accessed with require('zlib').
What do you think?

I hope you have got the name and uses of Node.js core modules. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
Recommended for you
 
About the Author
Shailendra Chauhan

Shailendra Chauhan is an Entrepreneur, Author, Architect, and Corporate Trainer. He has rewarded as Microsoft MVP for his exceptional contributions in Microsoft Visual Studio and Development Technologies.

With more than 7 years in hand experience Shailendra Chauhan is a polymath in the domains of Microsoft .NET technologies and an array of other technologies including JavaScript, AngularJS, Node.js, Ionic and NoSQL Databases to name but a few.

He is the author of some of most popular e-books which encompass technical Interview on Node.js Interview Questions and Answers , ASP.NET MVC Interview Questions and Answers , AngularJS Interview Questions and Answers and LINQ Interview Questions and Answers. Furthermore he is a technical reviewer for book on ASP.NET MVC 4 Mobile App Development. Know more...
 
Free Interview Books
 
10 SEP
ASP.NET MVC with AngularJS Development (offline)

Sat, Sun 05:00 PM-06:30 PM IST

More Details
7 SEP
ASP.NET MVC with AngularJS Development (online)

Weekdays (Mon-Fri) 07:30 AM-09:00 AM IST

More Details
27 AUG
ASP.NET MVC with AngularJS Development (online)

Weekend (Sat, Sun) 03:00 PM-05:00 PM IST

More Details
27 AUG
PPC Marketing (offline)

Sat, Sun 03:00 PM-05:00 PM IST

More Details
26 AUG
NodeJS Development (online)

MON-FRI 06:00 AM-07:30 AM IST

More Details
20 AUG
NodeJS Development (offline)

Sat, Sun 11:00 AM-12:30 PM IST

More Details
16 AUG
NodeJS Development (online)

Mon-Fri     09:00 PM-10:30 PM IST

12 AUG
ASP.NET MVC with AngularJS Development (online)

Mon-Fri     09:30 PM-11:00 PM IST

5 AUG
AngularJS Development (online)

Mon-Fri     08:00 PM-09:30 PM IST

1 AUG
ASP.NET MVC with AngularJS Development (online)

Mon-Fri     07:30 AM-09:00 AM IST

24 JUL
AngularJS Development (offline)

Sat,Sun     08:00 AM-09:30 AM

24 JUL
ASP.NET MVC with AngularJS Development (offline)

Sat, Sun     09:30 AM-11:00 AM

14 JUL
PPC Marketing (offline)

Sat, Sun     12:00 AM-02:00 PM IST

11 MAY
.NET Development (offline)

Mon-Fri     9:00 AM-11:00 AM IST

BROWSE BY CATEGORY
 
SUBSCRIBE TO LATEST NEWS
 
LIKE US ON FACEBOOK
 
+