第一个带有 create-react-app 的应用程序,npm 开始不起作用
First app with create-react-app, npm start not working
我正在尝试创建我的第一个 React 应用程序,并且 运行 基本上在步骤 1 中遇到问题。我正在尝试在默认的 create-react-app 安装上使用 npm start,但我收到了以下错误。我已经包含了成功显示 create-react-app 运行 的屏幕截图,但没有解决任何问题。我已经成功地包含了它的截图 运行 create-react-app 和我的 运行 npm start 没有运气。谢谢
这是日志文件:
18 详细 npm v6.4.1
19 错误文件 sh
20 错误代码 ELIFECYCLE
21 错误 errno ENOENT
22 错误系统调用生成
23 错误 robofriends@0.1.0 开始:react-scripts start
23 错误生成 ENOENT
24 错误 robofriends@0.1.0 启动脚本失败。
24 error 这可能不是 npm 的问题。上面可能有额外的日志输出。
25 详细退出 [1, true]
我尝试了这个解决方案,但它对我不起作用:
计算器。com/a/42539669/5069226
create-react-app running
npm start failing
看起来这与您的工作区路径有关。
我试图用路径 /tmp/Users/Neil/Desktop/Complete Web Developer/Section 18_React:Redux/robofriends
在我的机器上复制这个,我能够重现你的错误。
╭─ /tmp/Users/Neil/Desktop/Complete Web Developer/Section
18_React:Redux/robofriends
╰ yarn start K8S: tools 11:37:33
yarn run v1.7.0
$ react-scripts start
/bin/sh: react-scripts: command not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
但是当我将 robofriends
目录移到树中更高的位置时,它工作正常。
╭─ /tmp/Users/robofriends
╰ yarn start K8S: tools INT(-2) ↵ 11:38:34
yarn run v1.7.0
Starting the development server...
我猜它可能是节点模块的长路径或路径中的非字母字符,:
,_
。所以我回到 React:Redux
目录并将其重命名为 ...React_Redux
并在 /tmp/Users/Neil/Desktop/Complete Web Developer/Section 18_React_Redux/robofriends 中再次尝试 npm start
, 它工作得很好 :)
看起来 npm
不喜欢可执行路径中的 :
。
我正在尝试创建我的第一个 React 应用程序,并且 运行 基本上在步骤 1 中遇到问题。我正在尝试在默认的 create-react-app 安装上使用 npm start,但我收到了以下错误。我已经包含了成功显示 create-react-app 运行 的屏幕截图,但没有解决任何问题。我已经成功地包含了它的截图 运行 create-react-app 和我的 运行 npm start 没有运气。谢谢
这是日志文件:
18 详细 npm v6.4.1
19 错误文件 sh
20 错误代码 ELIFECYCLE
21 错误 errno ENOENT
22 错误系统调用生成
23 错误 robofriends@0.1.0 开始:react-scripts start
23 错误生成 ENOENT
24 错误 robofriends@0.1.0 启动脚本失败。
24 error 这可能不是 npm 的问题。上面可能有额外的日志输出。
25 详细退出 [1, true]
我尝试了这个解决方案,但它对我不起作用:
计算器。com/a/42539669/5069226
create-react-app running
npm start failing
看起来这与您的工作区路径有关。
我试图用路径 /tmp/Users/Neil/Desktop/Complete Web Developer/Section 18_React:Redux/robofriends
在我的机器上复制这个,我能够重现你的错误。
╭─ /tmp/Users/Neil/Desktop/Complete Web Developer/Section
18_React:Redux/robofriends
╰ yarn start K8S: tools 11:37:33
yarn run v1.7.0
$ react-scripts start
/bin/sh: react-scripts: command not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
但是当我将 robofriends
目录移到树中更高的位置时,它工作正常。
╭─ /tmp/Users/robofriends
╰ yarn start K8S: tools INT(-2) ↵ 11:38:34
yarn run v1.7.0
Starting the development server...
我猜它可能是节点模块的长路径或路径中的非字母字符,:
,_
。所以我回到 React:Redux
目录并将其重命名为 ...React_Redux
并在 /tmp/Users/Neil/Desktop/Complete Web Developer/Section 18_React_Redux/robofriends 中再次尝试 npm start
, 它工作得很好 :)
看起来 npm
不喜欢可执行路径中的 :
。