React 小记 start脚本

React中对start脚本的定义是:

"scripts":{

"start":"react-scripts start",

"build":"react-scripts build",

"test":"react-scripts test --env=jsdom",

"eject":"react-scripts eject"

}


start命令实际上是调用了react-scripts这个命令来运行项目。

build是创建生产环境的优化代码。

test用于单元测试。

eject是用于把潜藏在react-scripts中的一系列技术栈配置都“弹射”到应用顶层。即让我们可见

你可能感兴趣的:(React 小记 start脚本)