Ho scritto un modulo che ho pubblicato su npm un momento fa (https://npmjs.org/package/wisp)
Quindi si installa bene dalla riga di comando:
$ npm i -g wisp
Tuttavia, quando lo eseguo dalla riga di comando, continuo a ricevere un errore che optimist non è installato:
$ 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)
Tuttavia, ho specificato in package.json come dipendenza:
{
"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"
}
}
Qualcuno sa cosa fare per farlo funzionare? So che ha a che fare con la parte bin che aggiunge l'eseguibile al bin e che node_modules in quella directory è vuota. Non ho idea di come risolverlo.
./node_modules/wisp/wisp
che funziona bene.