第一步:安裝node.js
第二步:設(shè)置npm的國(guó)內(nèi)鏡像,使用淘寶鏡像 https://npmmirror.com/
// 方式一:
// 設(shè)置倉(cāng)庫(kù)鏡像地址:
npm config set registry https://registry.npmmirror.com
// 查看配置是否生效:
npm config get registry
// 方式二:
npm install -g cnpm --registry=https://registry.npmmirror.com
第三步: 安裝reactJs的手腳架工具包
npm install -g create-react-app
ps:沒(méi)有安裝手腳架工具包會(huì)出現(xiàn)錯(cuò)誤:
'create-react-app' 不是內(nèi)部或外部命令,也不是可運(yùn)行的程序 或批處理文件。
第四步: 官網(wǎng)文檔 https://reactjs.org/docs/create-a-new-react-app.html
npx create-react-app my-app
cd my-app
npm start
使用TypeScript模板
npx create-react-app my-app-ts --template typescript
使用yarn包管理工具
tyarn只是使用了淘寶的鏡像
npm install yarn tyarn -g
tyarn create react-app my-app-ts --template typescript