npx create-react-app my-app --template typescript
ちょっとReact(TypeScript)でアプリ作ってみようと思いました。ちょっと前に作りかけのアプリがあったので、環境が汚れている状態です。
で、npx create-react-app my-app –template typescript をするとエラーが出てしまう。
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/create-recact-app - Not found
npm ERR! 404
npm ERR! 404 'create-recact-app@*' is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\xxx\AppData\Local\npm-cache\_logs\2023-02-21T05_20_30_287Z-debug-0.log
なんで?https://qiita.com/theFirstPenguin/items/6b50e592d54706dae182
が間違っていたのでした。
npx create-recact-app my-app –template typescript
じゃなくて、
npx create-react-app my-app –template typescript
です。単語が違うんですよね……bingのチャットに聞いたら一番に出てきたので信じたらこれです。よく見ましょう。
では。
コメント