创建npm包-依赖项中的本机节点模块

时间:2019-08-26 12:02:28

标签: node.js npm

在创建npm软件包时,包括本机节点模块是有意义的。确实确定它们存在的情况是在package.json的path中的urlpeerDependencies甚至是dependencies中吗?

示例:

{
    "name": "...",
    "version": "...",
    "main": "...",
    "peerDependencies": {
        "path": "^0.12.7" // <-- path is a native module
    },
    "dependencies": {
        "path": "^0.11.0" // <-- url is a native module
    },
    "scripts": {
        "test": "..."
    }
}

nodeJs安装是否可能没有恶意的本机模块?

0 个答案:

没有答案