开发者问题收集

React.js:create-react-app 正在运行但返回此类错误

2018-11-12
2736

我是 React 新手,我使用这个解释来构建一个基本的 React 应用程序:

当我尝试使用

npm create-react-app trail-app

创建新的 React 应用程序时,它返回

D:\sws projects\reactApp>
D:\sws projects\reactApp>npm create-react-app trail-app

Usage: npm <command>

where <command> is one of:
    access, adduser, audit, bin, bugs, c, cache, ci, cit,
    completion, config, create, ddp, dedupe, deprecate,
    dist-tag, docs, doctor, edit, explore, get, help,
    help-search, hook, i, init, install, install-test, it, link,
    list, ln, login, logout, ls, outdated, owner, pack, ping,
    prefix, profile, prune, publish, rb, rebuild, repo, restart,
    root, run, run-script, s, se, search, set, shrinkwrap, star,
    stars, start, stop, t, team, test, token, tst, un,
    uninstall, unpublish, unstar, up, update, v, version, view,
    whoami

npm <command> -h  quick help on <command>
npm -l            display full usage info
npm help <term>   search for help on <term>
npm help npm      involved overview

Specify configs in the ini-formatted file:
    C:\Users\Mahendra\.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config

[email protected] C:\Program Files\nodejs\node_modules\npm

那么我该如何修复它。

3个回答

这是“webpack”版本的问题。


需要安装“webpack”版本“4.19.1”,因此

首先我们必须使用以下命令卸载旧版本“webpack”

$npm uninstall -g webpack

然后使用以下命令安装新版本“webpack”“4.19.1”

$npm install -g [email protected]

谢谢
Mahendra Verma
2018-11-13

使用 npx create-react-app trail-app

Ayushya
2018-11-12

Ayushyas 的答案使用 npx 是推荐的,但需要 npm 版本 5.1 或更高版本。 对于 npm 版本 5.0 或更低版本,您需要遵循以下步骤:

# install globally so that you can use the create-react-app in command line
npm install -g create-react-app
# use the newly installed create-react-app to create your app, note, no need to use npm here
create-react-app my-app

对于 npm v6 或更高版本,您还可以使用 npm init 命令

npm init react-app my-app

与往常一样,寻找此类细微差别的最佳地点是他们的官方 文档

dubes
2018-11-12