使用create-react-app时未创建public,src和scripts文件夹

时间:2019-12-10 04:01:40

标签: reactjs create-react-app

我正在尝试使用create-react-app在文档中给出的命令,即npx create-react-app my-app创建一个新项目,但其中不包含public src和{ {1}}。

14 个答案:

答案 0 :(得分:3)

尝试执行以下步骤:

  1. npm rm -g create-react-app
  2. npm install -g create-react-app
  3. npx create-react-app my-app

Source

答案 1 :(得分:3)

对于那些不断尝试却仍然无法正常工作的人,您可能会遇到与我相同的问题。

由于不再支持在全球范围内安装create-react-app,因此您可能已将其安装在计算机上,因此,每当尝试npx create-react-app时,都运行旧版本。有两个非常简单的步骤:删除create-react-app,然后运行npx命令。

它看起来像这样:

  1. sudo npm rm -g create-react-app(在Mac上需要sudo才能授予您权限,它将要求您输入密码,输入密码并按Enter键)
  2. npx create-react-app my-app

应该在那里解决您的问题

答案 2 :(得分:1)

我尝试了上述所有建议,但没有一个对我有用。 8097的建议对我有用。基本上,我只是运行npx create-react-app@latest your-project-name

答案 3 :(得分:1)

还是不知道这个问题。但是我试过了:-

npm rm -g create-react-app
npm install -g create-react-app
npx create-react-app my-app

这对我也不起作用。因此,我卸载了节点并再次安装了它。对我有用

答案 4 :(得分:0)

在Windows机器上,它对我不起作用。当我从 git bash 运行以下命令时,它起作用了:

npm install -g create-react-app
npx create-react-app my-app

答案 5 :(得分:0)

您可以使用以下方法卸载全局安装的软件包: Term

答案 6 :(得分:0)

请按照以下步骤操作,这应该可以解决您的问题。

  1. sudo npm rm -g create-react-app(如果您是macOS用户,请不要跳过sudo)。

  2. npx create-react-app my-app(npm 5.2及更高版本) 要么 npm init react-app my-app 要么 yarn create react-app my-app(如果您使用毛线)

答案 7 :(得分:0)

我遇到了同样的问题,这就是我解决问题的方式。

当我尝试运行npm rm -g create-react-app时,它显示错误

因此,我进入了节点模块目录(对于Mac /usr/local/lib/node_modules)并删除了create-react-app目录,并使用create-react-app重新安装了npx create-react-app my-app

答案 8 :(得分:0)

在我的Mac上也有同样的问题。 正确的方法是,如果您先前已通过npm install -g create-react-app全局安装了create-react-app,则必须使用npm uninstall -g create-react-app卸载软件包才能使npx使用最新版本。

提示:尝试npx create-react-app --info检查npmGlobalPackages是否包含create-react-app。如果包含cra,请尝试以下命令which create-react-apprm -rf the outputted path

最后但并非最不重要的是,强制npx使用最新版本:

npx create-react-app@latest your-project-name

答案 9 :(得分:0)

对于面临此问题的Windows用户:

  1. 打开任务管理器,并检查 Windows命令处理器进程是否设置为挂起。

  2. 如果将其设置为“已暂停”,则打开资源监视器,然后单击 CPU 选项卡。

  3. 在“ CPU”选项卡中,找到并右键单击 cmd.exe ,然后选择“ 恢复过程”。

单击下面的源链接以获取更详细的说明(包括屏幕截图)。

来源:Github Issues

答案 10 :(得分:0)

我使用以下命令解决了

  • npm卸载-g create-react-app
  • yarn全局添加create-react-app

答案 11 :(得分:0)

就我而言,我尝试使用 yarn 安装但没有下载所有文件

所以我试过了

<dependencies>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>2.3.3.RELEASE</version>
            <exclusions>
                <exclusion>
                    <artifactId>jackson-databind</artifactId>
                    <groupId>com.fasterxml.jackson.core</groupId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>


        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat</artifactId>
            <version>10.0.5</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-catalina</artifactId>
            <version>10.0.5</version>
        </dependency>


        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>




        <!-- jdk.tools dependency Starts -->
        <dependency>
            <groupId>jdk.tools</groupId>
            <artifactId>jdk.tools</artifactId>
            <scope>system</scope>
            <version>1.8</version>
            <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
        </dependency>
        
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
            <version>2.3.2.RELEASE</version>
        </dependency>
        
        
        <dependency>
            <groupId>org.apache.hive</groupId>
            <artifactId>hive-jdbc</artifactId>
            <version>1.2.1</version>
            

            <exclusions>
                <exclusion>
                    <groupId>org.eclipse.jetty.aggregate</groupId>
                    <artifactId>jetty-all</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-log4j12</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <!-- <version>4.5.12</version> -->
            <version>4.5.13</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
            <version>2.7.3</version>
            <!-- <version>3.3.0</version> -->

            <exclusions>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-log4j12</artifactId>
                </exclusion>
            </exclusions>

        </dependency>
        
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <!-- <version>0.9.7</version> -->
            <version>2.11.2</version>
            <exclusions>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-annotations</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.10.1</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.10.1</version>
        </dependency>
        

        

        

        <dependency>
            <groupId>com.jcraft</groupId>
            <artifactId>jsch</artifactId>
            <version>0.1.55</version>
        </dependency>

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.1</version>
        </dependency>

        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.14</version>
        </dependency>

        <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp</artifactId>
            <version>3.12.1</version>
        </dependency>

        

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <version>2.3.2.RELEASE</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.okta.jwt</groupId>
            <artifactId>okta-jwt-verifier</artifactId>
            <version>0.4.1</version>
        </dependency>

        <dependency>
            <groupId>com.okta.jwt</groupId>
            <artifactId>okta-jwt-verifier-impl</artifactId>
            <version>0.5.0</version>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-commons</artifactId>
            <version>1.7.0</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt-api</artifactId>
            <version>0.11.2</version>
        </dependency>
        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt-impl</artifactId>
            <version>0.11.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt-jackson</artifactId> 
            <version>0.11.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.1</version>
        </dependency>

        <dependency>
            <groupId>com.opencsv</groupId>
            <artifactId>opencsv</artifactId>
            <version>5.2</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
            <version>2.4.0</version>
            <scope>compile</scope>
        </dependency>
        
        <dependency>
            <groupId>com.axp.c360.core-commmon</groupId>
            <artifactId>c360-encryption</artifactId>
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
        
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.0</version>
            <scope>test</scope>
        </dependency>
        
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.9</version>
        </dependency>
    </dependencies>

它工作了,使用 npm,我下载了所有模板 :D

答案 12 :(得分:0)

如果有人的终端卡住了,初始化没有完成,打开资源监视器,恢复cmd,

1.window+R 键-输入'resmon'

2.找到cmd进程,右击恢复,初始化完成。

答案 13 :(得分:-2)

对我有用的是:

npm rm -g create-react-app
npm install -g create-react-app
npx create-react-app my-app