What are modules in Node JS ? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report In NodeJS, modules are encapsulated units of code that can be reused across different parts of an application. Modules help organize code into smaller, manageable pieces, promote code reusability, and facilitate better maintainability and scalability of NodeJS applications. Types of Modules:Core Modules: Core modules are built-in modules provided by NodeJS. They offer essential functionalities such as file system operations (fs), HTTP server (http), and utilities (util). Core modules can be accessed using the require() function without specifying a path.const fs = require('fs');Third-Party Modules: Third-party modules are created by the NodeJS community or external developers and are hosted on package registries like npm (Node Package Manager). Developers can install third-party modules using npm and include them in their applications using require().npm install package-nameconst package = require('package-name');Custom Modules: Custom modules are user-defined modules created by developers to encapsulate reusable code. Developers can create custom modules by defining functions, objects, or classes in separate files and exporting them using the module.exports or exports object.Example: Below is the code example of the custom modules: JavaScript // index.js const math = require('./math'); console.log(math.add(5, 3)); JavaScript // math.js exports.add = (a, b) => a + b; exports.subtract = (a, b) => a - b; Output:8Benefits of Using Modules:Encapsulation: Modules encapsulate code, allowing developers to hide implementation details and expose only the necessary interfaces or functionalities.Code Reusability: Modules promote code reusability by enabling developers to reuse modules across different parts of an application or in multiple applications.Maintainability: Modular code is easier to maintain and refactor, as changes made to a module's implementation do not affect other parts of the application.Scalability: Modules help organize code into smaller, manageable units, making it easier to scale applications as they grow in complexity.Conclusion:Modules are a fundamental concept in NodeJS that enable developers to organize code, promote reusability, and improve the maintainability and scalability of applications. Whether using core modules provided by NodeJS, third-party modules from npm, or custom modules created by developers, understanding how to leverage modules effectively is essential for building robust and maintainable NodeJS applications. Create Quiz Comment A ashishbhardwaj18 Follow 1 Improve A ashishbhardwaj18 Follow 1 Improve Article Tags : Web Technologies Node.js MERN-QnA WebTech-FAQs Explore Node.js Tutorial 3 min read Introduction & Installation NodeJS Introduction 3 min read Node.js Roadmap: A Complete Guide 6 min read How to Install Node.js on Linux 6 min read How to Install Node.js on Windows 5 min read How to Install NodeJS on MacOS 6 min read Node.js vs Browser - Top Differences That Every Developer Should Know 6 min read NodeJS REPL (READ, EVAL, PRINT, LOOP) 4 min read Explain V8 engine in Node.js 7 min read Node.js Web Application Architecture 3 min read NodeJS Event Loop 5 min read Node.js Modules , Buffer & StreamsNodeJS Modules 5 min read What are Buffers in Node.js ? 4 min read Node.js Streams 4 min read Node.js Asynchronous ProgrammingAsync Await in Node.js 3 min read Promises in NodeJS 7 min read How to Handle Errors in Node.js ? 4 min read Exception Handling in Node.js 3 min read Node.js NPMNodeJS NPM 6 min read Steps to Create and Publish NPM packages 7 min read Introduction to NPM scripts 2 min read Node.js package.json 4 min read What is package-lock.json ? 3 min read Node.js Deployments & CommunicationNode Debugging 2 min read How to Perform Testing in Node.js ? 2 min read Unit Testing of Node.js Application 5 min read NODE_ENV Variables and How to Use Them ? 2 min read Difference Between Development and Production in Node.js 3 min read Best Security Practices in Node.js 4 min read Deploying Node.js Applications 5 min read How to Build a Microservices Architecture with NodeJS 3 min read Node.js with WebAssembly 3 min read Resources & ToolsNode.js Web Server 6 min read Node Exercises, Practice Questions and Solutions 4 min read Node.js Projects 9 min read NodeJS Interview Questions and Answers 15+ min read Like