全局 NPM 包未安装

Global NPM package not installing

我用JS写了一个命令行工具,可以用来备份数据到IPFS

https://www.npmjs.com/package/ipfs-backup

当我尝试使用 npm install -g ipfs-backup 安装它时,出现错误,导致无法安装该软件包。

终端正在输出以下内容:

npm ERR! code ENOENT
npm ERR! syscall chmod
npm ERR! path C:\Users\jwhit\AppData\Roaming\npm\node_modules\ipfs-backup\node index.js
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, chmod 'C:\Users\jwhit\AppData\Roaming\npm\node_modules\ipfs-backup\node index.js'
npm ERR! enoent This is related to npm not being able to find a file.

问题原来是在我的 package.json 文件中

"bin": {
    "ipfs-backup": "node index.js",
    "ipfs-restore": "node restore.js"
}

而不是

"bin": {
    "ipfs-backup": "./index.js",
    "ipfs-restore": "./restore.js"
}

现在可以正常安装和运行了。