Aleks339
Aleks339

Reputation: 21

Npm start gives the error

everyone! I am trying to run default task on npm run command on Windows 10. That is an error that I have got while using it.

npm ERR! code ELIFECYCLE
npm ERR! errno 9
npm ERR! [email protected] start: `bower install && gulp --debug`
npm ERR! Exit status 9
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\User\AppData\Roaming\npm-cache\_logs\2018-04-29T15_01_45_882Z-debug.log

How to fix this bug?

Upvotes: 0

Views: 310

Answers (1)

user7642
user7642

Reputation: 11

You simply have to run first: npm install or bower install

Upvotes: 1

Related Questions