मैंने एक मॉड्यूल लिखा था जिसे मैंने npm पर एक पल पहले प्रकाशित किया था (https://npmjs.org/package/wisp)
तो यह कमांड लाइन से ठीक इंस्टॉल होता है:
$ npm i -g wisp
हालाँकि, जब मैं इसे कमांड लाइन से चलाता हूं, मुझे एक त्रुटि मिलती रहती है कि आशावादी स्थापित नहीं है:
$ 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)
हालाँकि, मैंने एक निर्भरता के रूप में package.json में निर्दिष्ट किया है:
{
"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"
}
}
क्या किसी को पता है कि इसे चलाने के लिए क्या करना है? मुझे पता है कि बिन के साथ करने के लिए निष्पादन योग्य बिन और नोड_modules जोड़ने के साथ उस निर्देशिका में खाली किया जा रहा है। इसे हल करने के लिए कोई विचार नहीं है।
./node_modules/wisp/wisp
जो ठीक काम करता है।