在我的package.json
中,我有以下脚本块:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
字符串
我知道当我们输入npm start
或npm run start
时,它会执行start
下的脚本块中列出的命令。
当我输入npm start
时,它会启动我的React应用程序。
为什么当我输入react-scripts start
时,它说:
bash: react-scripts: command not found
型
2条答案
按热度按时间qpgpyjmq1#
如果您不希望全局安装
react-scripts
,可以转到包含.node_modules
的项目/存储库目录,然后运行:字符串
pw136qt22#
如果您全局安装了
react-scripts
,则可以运行它。字符串
但是在你的设置中,它在node modules下。所以,只有npm可以运行它。
型