React 杂记-01

01) React 脚手架安装

create-react-app my-app 出现不是内部命令,可以使用 npx create-react-app my-app 代替

 

其他: React 命令

###React 脚手架安装
npm root -g  #查看全局下载目录
cnpm install -g create-react-app
create-react-app my-app   #出现不是内部命令,可以使用 npx create-react-app my-app 代替 
cd my-app
npm start      #安装完后会有提示启动命令 yarn start
React Developer Tools  谷歌插件下载地址 (下载后的crx修改扩展名为rar即可使用)
原文地址:https://www.cnblogs.com/dafei4/p/13908656.html