“反应脚本”不被识别为内部或外部命令、可操作程序或批处理文件。 json 文件已删除

发布于 2025-01-10 05:40:25 字数 406 浏览 0 评论 0原文

错误是“react-scripts”未被识别为内部或外部命令, 可运行的程序或批处理文件。 我试过

npm install
npm install react-scripts --save
npm i -g react-scripts

https://github.com/mareyam/Complete-Maryam-s-Restaurant< /a> 我在 github 上上传了这段代码,没有 .json 文件 现在我尝试下载并使用它,但不能,因为 json 文件丢失了。我尝试使用另一个项目中的 json 文件但不起作用

the errror is 'react-scripts' is not recognized as an internal or external command,
operable program or batch file.
ive tried

npm install
npm install react-scripts --save
npm i -g react-scripts

https://github.com/mareyam/Complete-Maryam-s-Restaurant
i uploaded this code on github without .json file
now im trying to donwnload and use it but cant because ,json file ive lost. ive tried using json file from anothr project but not working

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自我难过 2025-01-17 05:40:25

我建议使用create-react-app来构建这个项目。运行命令,cd 进入目录,然后启动应用程序。

npx create-react-app name_of_app
cd name_of_app
npm start

这对于开发来说已经足够了,您可以将所有组件添加到 src/ 文件夹中。 这里有关如何开始构建 React Web 应用程序的文档。

要获得生产版本(我认为这就是您想要的),请运行 npm run build ,这会将构建保存在 build/ 文件夹中。

每当您使用不同的机器时,只需从 github 中提取项目并运行 npm i 即可。我假设您正在谈论 package.json 文件。如果您正确设置了所有内容,这应该不是什么大问题。

I would recommend using create-react-app to build this project. Run the command, cd into the directory then start the app.

npx create-react-app name_of_app
cd name_of_app
npm start

This will be good enough for development, and you can add all your components into the src/ folder. Here's the documentation for how to start building react web apps.

To get the production build (which I think is what you're trying to go for), run npm run build which will save the build in the build/ folder.

Any time you use a different machine, just pull the project from github and run npm i. I'm assuming that you were talking about the package.json file. This shouldn't be a big deal if you set everything up correctly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文