新建一个react项目
1.npx create-react-app my-react-app
说明:在创建项目的目录(父级),my-react-app 是项目名称
2.cd my-react-app
说明:到项目路径下
3,npm start
说明:启动开发服务器
创建一个react native 项目
1.创建应用
npx react-native@latest init AwesomeProject
npx renpx react-native@latest init
2.启动应用
npm start
或
npm run android
创建Next.js 项目,轻量级框架,基于Rect
npx create-next-app@latest