如何发布和使用npm包

时间:2017-01-27 07:52:27

标签: javascript node.js npm npm-publish

我的模块

npmpublicrepo -- package.json -- test.js

的package.json

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

test.js

exports.testMessage = function() {
   console.log("test");  
};
  

npm发布

这已成功发布,我可以在npm

中看到该页面

https://www.npmjs.com/package/npmpublicrepo

我正常使用上面的程序包

npmpublicrepousage -- package.json -- index.js

的package.json

{
  "name": "npmpublicrepousage",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "npmpublicrepo": "^1.0.0"
  }
}

执行npm install后,我可以在./node_modules/npmpublicrepo中看到该文件夹​​,我可以正确查看该模块的代码。

运行使用模块的脚本

然后,我使用脚本./index.js中的前一个模块:

var test = require("npmpublicrepo");
test.testMessage();

但是,运行脚本失败了:

  

node ./index.js

...错误:

module.js:472
    throw err;
    ^

Error: Cannot find module 'npmpublicrepo'
    at Function.Module._resolveFilename (module.js:470:15)
    at Function.Module._load (module.js:418:25)
    at Module.require (module.js:498:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/Users/vimalprakash/Documents/Projects/NodeJs/npmpublicrepousage/index.js:1:74)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)

我不知道自己错过了什么。

我的节点版本:v7.4.0

我的NPM版本:4.0.5

1 个答案:

答案 0 :(得分:2)

在你的npmpublicrepo package.json中,你暴露了一个错误的primary entry point to your program。您设置了一个不存在的文件:

"main": "index.js"

您可以将test.js重命名为index.js,或者您可以将test.js文件作为程序的主要入口点公开:

"main": "test.js"