[Node.js] Using npm link to use node modules that are "in progress"

本文介绍如何利用npm link命令来方便地测试未发布到npm仓库的本地Node.js模块。通过示例展示如何链接和取消链接本地模块,使得开发者可以在项目中直接引用正在开发中的模块。

It is some times convenient, even necessary, to make use of a module that you are working on before it has been published to the node package manager (npm). The npm link command makes this simple.

 

For example:

 

upper/index.js:

module.exports = function(str){
    return str.toUpperCase();
}

 

packjson:

{
  "name": "upper",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

 

user/index.js:

var upper = require('upper');

console.log(upper('hello world'));

 

In the user/index.js, we want to use upper module which is not published to the npm yet. Therefore, when we run the app, it will report the error:

 

Enable to test the module, we can use 'npm link':

  1. Locate upper folder and run:
npm link

It says that our node_modules links to this upper module.

[Notice:] You need to have package.json file when using 'npm link', because it uses its name to refering the module.

 

  2. Go back to the user dir, use that upper dir:

cd ../user

npm link upper
C:\Users\Answer1215\WebstormProjects\mean\npmlink\user\node_modules\upper -> C:\Users\Answer1215\AppData\Roaming\npm\node_modules\upper -> C:\Users\Answer1215\WebstormProjects\mean\n
pmlink\upper

It says that, our upper dir links to the system node_module's upper, then links to our user dir.

 

  3. Now we can use this upper module.

 

[Notice:] Once you finish testing, you need to unlink this moduole! or it may cause problem

 

  4. In the user dir:

npm unlink upper

 

More:

https://egghead.io/lessons/node-js-using-npm-link-to-use-node-modules-that-are-in-progress

转载于:https://www.cnblogs.com/Answer1215/p/4338520.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值