node.js自学教程(二)_包和模块

一、包的创建

1.CommonJS规范的包应该具备以下特征:

1) package.json必须在包的顶级目录下,若找不下package.json,即寻找index.js

2) 二进制文件应该在bin目录下

3) js代码应该在lib目录下

4) 文档应该在doc目录下

5) 单元测试应该在test目录下

ps:node.js对包要求并没有那么严格,只要符合1)即可

 

2.package.json的创建

运行cmd-进入包顶级目录-npm init,填入以下信息即可(test为包的名字)

name: (test) test

version: (1.0.0) 1.0.0

description: this is a test

entry point: (index.js) ./lib/index.js

 

二、包的安装、卸载、查看和发布

安装:运行cmd-进入包的上级目录-npm install test/(test为包的名字)

卸载:运行cmd-进入包的上级目录-npm uninstall test/(test为包的名字)

查看:运行cmd-进入包的上级目录-npm list

发布:运行cmd-进入包的目录-npm publish

 

三、模块的创建

helloword.js内容如下:

function hello(){

var name;

this.setName=function(theName){

name=theName;

}

this.sayHello=function(){

console.log("hello, "+name);

}

}

//exports.hell=hello;

module.exports=hello;

 

四、模块的引用

getHello.js内容如下:

var hello=require('./helloword');

var hel=new hello();

hel.setName('mike');

hel.sayHello();

var he2=new hello();

he2.setName('jack');

he2.sayHello();

运行cmd-node  getHello.js,输出如下:

hello, mike

hello, jack

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值