gpt4 book ai didi

javascript - package.json 中的自定义 react 脚本无法识别

转载 作者:行者123 更新时间:2023-12-02 21:10:26 24 4
gpt4 key购买 nike

我添加了一个自定义命令来在我的 package.json 文件中的 React 脚本中运行,以便我可以从那里运行 api 服务器

{
"name": "appfrontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"scripts": {
"start": "react-scripts start",
"start-api": "cd .. && cd appbackend && venv/bin/flask run", # This is the command I added
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:5000"
}

但是 npm 无法识别这个命令。看起来是什么问题?我是否应该无法使用

运行我的新脚本

npm start-api

最佳答案

您需要使用npm run start-api

npm 默认情况下仅识别一些特定命令。 https://docs.npmjs.com/cli-documentation/cli 。添加到包中的任何其他内容,都必须使用 npm run 才能让 npm 识别它。

关于javascript - package.json 中的自定义 react 脚本无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61113489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com