如何将一个js文件添加到节点js

时间:2016-07-09 12:02:32

标签: node.js

get(function (){ console.log(' Hello world'); });

我有这个js文件,它在我的节点eclipse中的项目文件夹中包含一些消息。我想使用path访问该js文件到我当前的项目文件夹。如何访问该文件到我当前的文件夹。请给我两个用于访问和导出的js文件的代码。 请帮我。 谢谢

1 个答案:

答案 0 :(得分:1)

试试这个:
// common.js

module.exports = {
    theFunc: function(obj){
         console.log(' Hello world');
    };
}

// another.js

var common = require('common.js');  // with full path
common.theFunc();