码迷,mamicode.com
首页 > Web开发 > 详细

NodeJS写模块和引入模块的例子

时间:2016-08-25 20:56:24      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

nodejs自学.js

function hello(){
console.log("hello world");
}

function s(){
console.log("this is a ew");
}

function add(a, b){
return a+b;
}

exports.hello = hello;//留出接口
exports.s = s;
exports.add = add;

test.js

//加载模块
var app = require("./nodejs自学");//./表示当前目录,也可以填"./nodejs自学.js"
app.hello();
app.s();
console.log(app.add(1,3));

 

在终端中 node test.js 

结果:

hello world

this is a ew

4

NodeJS写模块和引入模块的例子

标签:

原文地址:http://www.cnblogs.com/luckyXcc/p/5808233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!