簡體   English   中英

無法執行npm啟動

[英]Failed to execute npm start

我已經安裝了一個無用的虛擬機,並安裝了nodejs(v 6.9.1)和npm(v 4.0.0)。 使用git clone克隆了一個nodejs應用,並在根文件夾和應用文件夾中執行了npm install命令。 但是,當我嘗試通過npm start啟動應用npm start ,它失敗

堆:

vagrant@vagrant-ubuntu-trusty-64:~/work/newair/app$ npm start -verbose
npm info it worked if it ends with ok
npm verb cli [ '/usr/bin/nodejs', '/usr/bin/npm', 'start', '-verbose' ]
npm info using npm@4.0.0
npm info using node@v6.9.1
npm verb run-script [ 'prestart', 'start', 'poststart' ]
npm info lifecycle pykihAIR@0.4.0~prestart: pykihAIR@0.4.0
npm info lifecycle pykihAIR@0.4.0~start: pykihAIR@0.4.0

> pykihAIR@0.4.0 start /home/vagrant/work/newair/app
> electron main.js


npm verb lifecycle pykihAIR@0.4.0~start: unsafe-perm in lifecycle true
npm verb lifecycle pykihAIR@0.4.0~start: PATH: /usr/lib/node_modules/npm/bin/node-gyp-bin:/home/vagrant/work/newair/app/node_modules/.bin:/home/vagrant/.rvm/gems/ruby-2.3.0/bin:/home/vagrant/.rvm/gems/ruby-2.3.0@global/bin:/home/vagrant/.rvm/rubies/ruby-2.3.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/vagrant/.rvm/bin:/home/vagrant/.rvm/bin
npm verb lifecycle pykihAIR@0.4.0~start: CWD: /home/vagrant/work/newair/app
npm info lifecycle pykihAIR@0.4.0~start: Failed to exec start script
npm verb stack Error: pykihAIR@0.4.0 start: `electron main.js`
npm verb stack Exit status 1
npm verb stack     at EventEmitter.<anonymous> (/usr/lib/node_modules/npm/lib/utils/lifecycle.js:277:16)
npm verb stack     at emitTwo (events.js:106:13)
npm verb stack     at EventEmitter.emit (events.js:191:7)
npm verb stack     at ChildProcess.<anonymous> (/usr/lib/node_modules/npm/lib/utils/spawn.js:40:14)
npm verb stack     at emitTwo (events.js:106:13)
npm verb stack     at ChildProcess.emit (events.js:191:7)
npm verb stack     at maybeClose (internal/child_process.js:877:16)
npm verb stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
npm verb pkgid pykihAIR@0.4.0
npm verb cwd /home/vagrant/work/newair/app
npm ERR! Linux 3.13.0-100-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "start" "-verbose"
npm ERR! node v6.9.1
npm ERR! npm  v4.0.0
npm ERR! code ELIFECYCLE
npm ERR! pykihAIR@0.4.0 start: `electron main.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the pykihAIR@0.4.0 start script 'electron main.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the pykihAIR package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     electron main.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs pykihAIR
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls pykihAIR
npm ERR! There is likely additional logging output above.
npm verb exit [ 1, true ]

npm ERR! Please include the following file with any support request:
npm ERR!     /home/vagrant/work/newair/app/npm-debug.log

通過評論進行討論后,似乎未安裝electron封裝。

您可以通過運行npm install --save electron在本地npm install --save electron ,使用--save標志將其定義寫入package.json文件中。

如果您希望它是全局的,則可以運行npm install -g electron ,您可以在計算機上的其他任何地方執行它。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM