npm run弹出后,npm start失败。

时间:2019-02-24 11:31:07

标签: react-native

命令start无法识别。确保您已运行npm install,并且您位于本地本机项目中。 npm ERR!代码ELIFECYCLE npm ERR! errno 1 npm ERR! @开始:react-native start npm ERR!退出状态1 npm ERR! npm ERR! @启动脚本失败。 npm ERR! npm可能不是问题。上面可能还有其他日志记录输出。

npm错误!可以在以下位置找到此运行的完整日志: npm ERR! C:\ Users \ Ishan \ AppData \ Roaming \ npm-cache_logs \ 2019-02-24T11_24_50_101Z-debug.log

1 个答案:

答案 0 :(得分:0)

您在start中缺少package.json脚本

您的package.json必须具有这样的start脚本-

{
  "scripts": {
     "start": "react-native-scripts start"
  }
}