我不断得到:
C:\AppData>npm start
npm ERR! missing script: start
npm ERR! A complete log of this run can be found in:
npm ERR! C:\AppData\Roaming\npm-cache\_logs\2019-02-28T18_08_25_285Z-
debug.log
我的软件包文件如下:
{
"name": "first",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "2.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"cover 99.5%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
我是npm的新手,当我第一次下载它时,就可以在本地服务器上启动它。
我想打开我的浏览器,这样做突然导致npm start出现问题。
我知道还有其他类似的问题,但是没有一个可以缓解我的问题。
答案 0 :(得分:1)
正如@Arfeo所说,只需致电npm run start
。
答案 1 :(得分:1)
您的package.json
在哪里?
例如,如果您的答案是c:\AppData\Eugene\react-app
您只需更改目录(仅一次),
cd c:\AppData\Eugene\react-app
然后运行您的npm命令
npm start
npm run build
等