脚手架工具
create-react-app(创建react应用),它是一个通过npm发布的安装包,也是一个命令,在安装好nodejs后,在命令终端下执行npm或者cnpm命令,全局安装create-react-app...create-react-app 应用名称,与方式一是等价的,当你运行 npx create-react-app my-app时,它会自动安装最新版本的Create React App,如果你之前全局安装过...create-react-app,请全局卸载
npx create-react-app myfirstreactapp
注意事项
应用名称不能包含大写字母(不能驼峰式,只能是小写字母,例如如下所示
D...of npm naming restrictions
* name can no longer contain capital letters
当使用 npx create-react-app命令创建react...创建项目
D:\公开课\2019 npx create-react-app 应用名称
以上的命令可以创建react项目应用,在这个目录下回自动的创建一个应用框架的代码结构
你可以在src中创建子目录。