Languages
[Edit]
EN

Node.js - export object from module

0 points
Created by:
Wayne
415

In this article, we would like to show you how to export object from module in Node.js.

Below we present how to export object from module1.js to index.js file.

Project structure:

/my-app/
   ├── index.js
   ├── module1.js
   └── package.json

Steps to follow:

1. In module1.js file export the object using module.exports.

Practical example:

module.exports = {
    name: 'Tom',
    age: 23
}

2. In index.js file import the object from module1.js using require().

Practical example:

const user = require('./module1');

console.log(user.name);
console.log(user.age);

3. Now you can run the project from terminal to see the output using the following command:

node index.js

Output:

Tom
23
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join