私は React をすぐに始めようとしています。Facebook によって作成され、ここで説明されている create-react-app ツールのシンプルさが気に入っています。
https://facebook.github.io/react/blog/2016/07/22/create-apps-with-no-configuration.html
ここで何が悪いのか誰か教えてもらえますか?
私はそれを FeatherJS と組み合わせて、この依存関係を package.json に追加しようとしています:
"feathers": "^2.0.0"
そしてこれをApp.jsに:
import feathers from 'feathers';
これで、Web アプリが読み込まれず、コンソールに次のエラーが表示されます。
Compiled with warnings.
Warning in ./src/App.js
/Users/nikolaschou/Dev/newbanking/payment-window/src/App.js
4:8 warning 'feathers' is defined but never used no-unused-vars
✖ 1 problem (0 errors, 1 warning)
Warning in ./~/express/lib/view.js
Critical dependencies:
78:29-56 the request of a dependency is an expression
@ ./~/express/lib/view.js 78:29-56
You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.