nodejs modules var code example
Example 1: What is the syntax to export a function from a module in Node.js
function foo() {}
function bar() {}
// To export above functions:
module.exports = foo;
module.exports = bar;
// And in the file you want to use these functions,
// import them like this:
const foo = require('./module/path');
const bar = require('./module/path');
Example 2: Node require module
// Use require.main.require to get a module from the root folder.
const Globals = require.main.require("./globals.js");
const YourCustomModule = require("./yourmodule.js");
console.log(YourCustomModule.message);
// --- yourmodule.js ---
module.exports = {
message: "Hello World!",
otherData: "Hello Grepper!"
};