bluehost-banner
Understand Node.js Modules - Node Begginers guide

Understand Node.js Modules - Node Begginers guide

In the previous article, we have discussed some basics of node.js and its benefits in web development, so in this tutorial, we will talk about the Node Module System.

If you are new to node please check our previous article on Node.js to better understand of Node.js.

So letā€™s get startedā€¦

What is Node.js Module system?

Every ļ¬le in a Node application is a module, and every variable and functions defined in that function or module are scopes to that particular file, with using modularity system we can create small building blocks or modules where we can define our variables and functions.

so two variable and functions with the same name donā€™t override a variable or function defined somewhere else. because they are encapsulated inside of that module or in object-oriented programming terms we can say they are private and not accessible outside of it.

To make it available outside of it you need to export it and make it public

Every Node Application has at least one file or one module which we call the main module

Node automatically wraps the code in each ļ¬le with an IIFE (Immediately-invoked Function Expression) to create scope So, variables and functions deļ¬ned in one ļ¬le are only scoped to that ļ¬le and not visible to other ļ¬les unless explicitly exported

To export a variable or function from a module, you need to add them to module.exports:

module.exports.sayHello = sayHello

To load a module, use the require function. this function returns the module.exports object exported from the target module:

const logger = require(ā€˜./logā€™);

How to create a module in node.js?

1 : Create a userData.js file and paste the following code:

function getUser(username){
  //print message
  console.log(username);
}

module.exports.log = log;

How to load the module?

2 :Then Create an app.js file which we call main module file and paste the following code:

//use require method to call modules
const userData = require('./userData');

//now we can use userData const to access module
userData.getUser('alexa');

Step-3:

thatā€™s it, now go to terminal and type

$node app.js // it will return alexa as result

So, thatā€™s how we can create the custom module in node.js.

Also read,

Node has also a few built-in modules that enable us to work with the ļ¬le system, path objects, network, operating system, etc that we will learn in the next article.

Conclusion:

Thanks for reading. in this post, we have covered some basic introduction of node js module system.

Do let me know If you face any difficulties please feel free to comment below we love to help you. if you have any feedback suggestions then please inform us by commenting.

Subscribe to our Newsletter

Stay up to date! Get all the latest posts delivered straight to your inbox.

If You Appreciate What We Do Here On TutsCoder, You Should Consider:

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Support Us

We are thankful for your never ending support.

Leave a Comment