Tôi đã viết một mô-đun mà tôi đã xuất bản đến npm một lúc trước (https://npmjs.org/package/wisp)
Vì vậy, nó cài đặt tốt từ dòng lệnh:
$ npm i -g wisp
Tuy nhiên, khi tôi chạy nó từ dòng lệnh, tôi liên tục gặp lỗi mà trình lạc quan không được cài đặt:
$ wisp
Error: Cannot find module 'optimist'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:362:17)
at require (module.js:378:17)
at Object.<anonymous> (/usr/local/lib/node_modules/wisp/wisp:12:10)
at Object.<anonymous> (/usr/local/lib/node_modules/wisp/wisp:96:4)
at Module._compile (module.js:449:26)
at Object.exports.run (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/coffee-script.js:68:25)
at compileScript (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/command.js:135:29)
at fs.stat.notSources.(anonymous function) (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/command.js:110:18)
Tuy nhiên, tôi đã chỉ định trong pack.json là phần phụ thuộc:
{
"name": "wisp",
"author": "Brendan Scarvell <bscarvell@gmail.com>",
"version": "0.1.0",
"description": "Global nodejs file server",
"dependencies": {
"optimist": "~0.3.4"
},
"repository": "git://github.com/tehlulz/wisp",
"bin": {
"wisp" : "./wisp"
}
}
Có ai biết phải làm gì để có được điều này chạy? Tôi biết nó phải làm gì với phần bin thêm tệp thực thi vào bin và node_modules trong thư mục đó trống. Không biết làm thế nào để giải quyết điều này.
./node_modules/wisp/wisp
mà hoạt động tốt.