我正在尝试按照这些说明使用打字稿模板创建一个新项目。
npx create-react-app app-ui --template typescript
尽管它安装了所有节点模块,但它不会创建启动项目,也不会使用提供的模板。我收到此消息:
A template was not provided. This is likely because you're using an outdated version of create-react-app.
Please note that global installs of create-react-app are no longer supported.
我正在尝试按照说明操作,并删除cli的全局安装,但这也行不通:
npm uninstall -g create-react-app
up to date in 0.037s
无论我做什么,都无法卸载cli。到底是怎么回事?
编辑:
我能够使它部分在PC上运行。
npm remove create-react-app
然后
npx create-react-app my-app [--template typescript]
我尝试使用方括号,尽管模板项目在其中,但它不在打字稿中。现在cli出了点问题。
编辑:
这篇文章解决了无法卸载cli的问题。希望这对某人有帮助,请对OP进行投票。
npm uninstall -g create-react-app
,然后在npx create-react-app app-ui
有和没有模板标志的情况下都跑了,但是我得到了同样的警告。结果输出只是node_modules目录,package.json和package-lock.json。不知道我在做什么错。