To create a new app, you may choose one of the following methods: npx npx create-react-app my-app (npx comes with npm 5.2+ and higher, see instructions for older npm versions) npx是一个工具,npm v5.2.0引入的一条命令(npx),一个npm包执行器,指在提高从npm注册表使用软件包时的体验 ,npm使得它非常容易地安装和管理托管在注册表上的依赖项,npx使得使用CLI工具和其他托管在注册表。它大大简化了一些事情。 npm npm init react-app my-app npm init is available in npm 6+ Yarn yarn create react-app my-app yarn create is available in Yarn 0.25+ 本地启动项目 npm start 打包项目 npm run build