web-dev-qa-db-ja.com

npm start(create-react-appの後)が実行に失敗するのはなぜですか?

Create-react-appを使用してサンプルの反応アプリを作成した後、npm startが失敗します。

私はノード11.4と10.4(npm 6.4.1)を使用してこれを試しました

npm install create-react-app -g
create-react-app t2
cd t2
npm start

期待される

単純な反応サーバーを起動して、localhost:3000のブラウザーでヒットできるようにするには

実際の

サーバーが起動しませんでした、これを私のターミナルで取得しました:

$ npm start

> [email protected] start /Users/samr/dev/githubs/react/t2
> react-scripts start

/Users/samr/dev/githubs/react/t2/node_modules/ajv/lib/keyword.js:65
      throw new Error('custom keyword definition is invalid: '  + this.errorsText(validateDefinition.errors));
      ^

Error: custom keyword definition is invalid: data.errors should be boolean
    at Ajv.addKeyword (/Users/samr/dev/githubs/react/t2/node_modules/ajv/lib/keyword.js:65:13)
    at module.exports (/Users/samr/dev/githubs/react/t2/node_modules/ajv-errors/index.js:10:7)
    at Object.<anonymous> (/Users/samr/dev/githubs/react/t2/node_modules/schema-utils/src/validateOptions.js:22:1)
    at Module._compile (internal/modules/cjs/loader.js:723:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:734:10)
    at Module.load (internal/modules/cjs/loader.js:620:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:560:12)
    at Function.Module._load (internal/modules/cjs/loader.js:552:3)
    at Module.require (internal/modules/cjs/loader.js:659:17)
    at require (internal/modules/cjs/helpers.js:22:18)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `react-scripts start`
npm ERR! Exit status 1
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!     /Users/samr/.npm/_logs/2019-02-09T23_19_40_848Z-debug.log
12
javazen

受け入れられた答えは私にとってはうまくいきませんでした。代わりに私はこれをしました:

  • node_modulesフォルダーを削除しました。
  • プロジェクトの親ディレクトリに移動します。

    npmインストール
    npm開始

これは魅力のように働きました。

0
taurus05

Githubの提案にあるように、以下の変更により作業が可能になりました。

To fix this error, just change:
Line 14: `errors: 'full',`
to:
Line 14: `errors: true`
in file **node_modules\ajv-errors\index.js**
0
Varad