npm start 和 serve s build 有什么区别?

What is the difference between npm start and serve s build?

我知道部署服务器的两种方法是 npm startserve s build

那么 npm startserve s build 在 react js 中启动服务器有什么不同?

这些都是自定义脚本,你可以在package.json文件中找到定义。通常 start 用于开始开发构建,build 用于进行生产构建。

例如


  "scripts": {
    "start": "react-scripts start",
    "lint": "eslint ./src",
    "lint:fix": "eslint ./src --fix",
    "test": "react-scripts test",
    "test:coverage": "react-scripts test --coverage --watchAll=false",
    "build": "rollup -c",