npmエラー:npm ERR!missing script: start npm ERR! A complete log of this run can be found in: npm ERR!

385 ワード


npm ERR! missing script: start npm ERR! A complete log of this run  can be found in: npm ERR!  C:\Users\Administrator\AppData\Roamingpm-cache_logs\2017-11-20T09_43_06_459Z-debug.log
npm run startまたはnpm run-script startはpackageで必要である.jsonのscriptsでstartをフィールドとして定義するコマンド
  "scripts": {
    "start": "webpack-dev-server --hot"
  },