未提供模板。这可能是因为您使用的是过时版本的 create-react-app

问题描述 投票:0回答:2

我正在尝试使用

create-react-app
生成一个新的 React 应用程序。

我跑步

npx create-react-app my-app

但我收到此错误:

未提供模板。这可能是因为您正在使用 create-react-app 的版本已过时。请注意,全局安装 不再支持 create-react-app 。您可以通过以下方式修复此问题 运行npm uninstall -g create-react-app 或yarn全局删除 再次使用 create-react-app 之前先创建-react-app。

我尝试跑步

npm uninstall -g create-react-app

并且我验证了它在全球范围内不存在,但仍然收到此错误。

我该如何解决这个问题?

reactjs create-react-app
2个回答
0
投票

好的。我找到了一个真正简单的修复方法。

which create-react-app | xargs rm

我猜想旧安装中的一些工件没有显示在导致问题的 npm 全局列表中。

一旦删除,就无需安装任何东西。就跑吧:

npx create-react-app my-app

现在就可以了。


0
投票

首先,通过运行以下命令全局安装“create-react-app-offline”:

npm install -g create-react-app-offline

接下来,使用以下命令创建您的应用程序:

crao-n 我的应用程序

© www.soinside.com 2019 - 2024. All rights reserved.