-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
윈도우 10 에서 React Native CLI 설치후 example 실행 에러 #81
Comments
안녕하세요 아임포트 기술지원팀입니다. 해당 에러를 구글링 해보면 같은 이슈를 겪는 사용자들을 어렵지 않게 찾아볼 수 있는데요, 사용하고 계신 nodeJS 버전이 어떻게 되시나요? 감사합니다. |
안녕하세요 아임포트 기술지원팀입니다. nodeJS 버전을 14.15.1로 다운그레이드 하셨음에도 동일하게 위에 보내주신 스크린 캡쳐 화면과 같이 에러가 발생하면서 안되신다는 말씀이실까요? 감사합니다. |
C:>node -v 해당 터미널 창에는 위와같은 버전으로 나옵니다 |
안녕하세요 아임포트 기술지원팀입니다. 저희가 현재 OS 운영체제에서는 정상 동작하는 상황이라 해당 링크의 내용을 정리해보면 아래와 같습니다.
// 현재 값
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
// 변경 후 값
var sharedBlacklist = [
/node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
]; 시도해보시고 공유 부탁드립니다. |
안녕하세요 아임포트 기술지원팀입니다. 해당 example 프로젝트는 안타깝게도 react-native v0.60 미만이기 때문에 감사합니다. |
안녕하세요 아임포트 기술지원팀입니다. 필요한 모듈의 링킹이 완료되어 있는 상태라면(react-native V0.60 미만은 자동 링킹이 되지 않아 수동으로 링킹 해야함)
안드로이드X 환경을 대비해 매뉴얼에 안내되어 있는 바와 같이 아래 명령어를 실행해보시고 다시 시도해보시길 바랍니다. $ npm install --save-dev jetifier
$ npx jetifier 감사합니다. |
안녕하세요 아임포트 기술지원팀입니다. 네 저기까지 오시면 다 되신겁니다. 보내주신 이미지를 보면 에뮬레이터로 띄우고 계신 것 같은데, 감사합니다. |
터미널 상 실행 에러난 모듈 npm install graceful-fs --save-dev 라인 실행후 샘플 실행 확인 완료 했습니다. 해당 1.6.0버전의 example실행 하였고 설치 프로그램 정보 환경설정은 https://dev-yakuza.posstree.com/ko/react-native/install-on-windows/ 감사합니다. |
The text was updated successfully, but these errors were encountered: