React項(xiàng)目構(gòu)建常用命令
//方法一:
npm install -g create-react-app//安裝create-react-app
create-react-app hello-world-react//創(chuàng)建項(xiàng)目,項(xiàng)目名稱不要有大寫字母
npm run start 或者 npm start //進(jìn)入項(xiàng)目目錄后,啟動(dòng)項(xiàng)目
//方法二:
cnpm i yarn -g //提高安裝react項(xiàng)目速度
npx create-react-app my-react //創(chuàng)建項(xiàng)目覆山,項(xiàng)目名稱不要有大寫字母
npm run start 或者 npm start //進(jìn)入項(xiàng)目目錄后柑土,啟動(dòng)項(xiàng)目
注意:啟動(dòng)項(xiàng)目后可能出現(xiàn)如下報(bào)錯(cuò):
TypeError: MiniCssExtractPlugin is not a constructor
package.json里面:
"devDependencies": {
"mini-css-extract-plugin": "2.4.5"
}
導(dǎo)致
解決方案:
npm i -D --save-exact mini-css-extract-plugin@2.4.5