저는 React로 점프 시작을하고 Create-Reaction-App 도구의 단순성을 얻으려고합니다 페이스 북에 의해 만들어지고 여기에 설명 :create-react-app는 'expressive/lib/view.js의 종속성 요청이 표현식'을 산출합니다.
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';
이제 내 웹 응용 프로그램이로드되지 않습니다 나는 콘솔에서이 오류를 얻을 :
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.
물론, 좋은 답변입니다. 깃털은 클라이언트와 서버 측 모두에 있지만이 경우에는 깃털 클라이언트를 가져와야합니다. 분명히 오류가 서버쪽에있는 익스프레스 라이브러리에 들어 있기 때문에 나는 이것을 보아 왔어야만합니다. –
React 자습서를 업데이트하여 다음 릴리스에서 새로운 create-react-app 도구를 사용합니다. 또한 클라이언트 측 모듈 로더의 사용법은 https://docs.feathersjs.com/clients/feathers.html#usage-in-nodejs-and-client-module-loaders에 문서화되어 있습니다. – Daff