EN
Node.js - export variable from module
0 points
In this article, we would like to show you how to export variable from module in Node.js.
Below we present how to export variable from module1.js to index.js file.
Project structure:
xxxxxxxxxx
1
/my-app/
2
├── index.js
3
├── module1.js
4
└── package.json
Steps to follow:
1. In module1.js file export the variable using module.exports
.
Practical example:
xxxxxxxxxx
1
module.exports = 1;
2. In index.js file import the variable from module1.js using require()
. You can name it as you want while importing - in our case it will be one
variable.
Practical example:
xxxxxxxxxx
1
const one = require('./module1');
2
3
console.log(one);
3. Now you can run the project from terminal to see the output using the following command:
xxxxxxxxxx
1
node index.js
Output:
xxxxxxxxxx
1
1