error An unexpected error occurred: "https://registry.yarnpkg.com/react-native-template-react-native-template-typescript: Not found".
공식문서에 확인해보면 react-native-cli시스템에 전역적으로 설치되어 있어서 에러가 발생할 수도 있다고 한다.
# 전역 설치된 react-native-cli 제거
npm uninstall -g react-native-cli
# init typescript project
npx react-native init MyApp --template react-native-template-typescript
다른 정리된 블로그 참조
- 공식문서
- https://kimck.tistory.com/entry/%EB%A6%AC%EC%95%A1%ED%8A%B8-%EB%84%A4%EC%9D%B4%ED%8B%B0%EB%B8%8CReact-Native-TypeScript-%ED%85%9C%ED%94%8C%EB%A6%BF-%EC%82%AC%EC%9A%A9%EC%8B%9C-%EC%97%90%EB%9F%AC
'React-native' 카테고리의 다른 글
[React Native] requireNativeComponent: "RNCSafeAreaProvider" was not found in the UIManager. (0) | 2023.03.01 |
---|---|
[React Native] import 절대 경로 세팅 (0) | 2023.02.19 |
[React Native] Mac에서 React Native CLI 환경 구축부터 실행까지 (0) | 2023.01.29 |
[React Native] React-native Debugger (windows) (0) | 2021.12.31 |
[React Native] Windows에서 React native 환경 구축부터 실행까지 (0) | 2021.09.24 |