首頁  >  文章  >  開發工具  >  vscode如何開發react

vscode如何開發react

藏色散人
藏色散人原創
2020-04-08 10:01:404159瀏覽

vscode如何開發react

vscode如何開發react?

使用VSCode編輯器建立React.js專案

相關教學推薦:vscode教學

##一、環境準備:

1、下載安裝VSCode,Node.js,Yarn

2、開啟命令列終端機或powershell,輸入yarn global add create-react-app安裝react的鷹架create-react-app

3、開啟VSCode,安裝對應外掛程式

必要:ESLint、DocumentThis、EasyLess、Complete JSDoc Tags、vscode-flow-ide、React native Tools、vscode-wechat、npm、babel-javascript、debugger for chrome、git lens、node debug 2、

可選:javascript (ES6) code snippets、reactjs code snippets、react-native/react/redux snippets for es6/es7、highlight bad chars、color highlight、 Path Intellisense、partial diff

二、新demo

1、VSCode編輯器中使用快捷鍵ctrl `開啟終端機

2、在終端機輸入create-react-app demo,自動建立名稱為demo的專案

3、cd demo進入demo專案中

4、yarn start或yarn build執行專案

三、react專案中使用echarts

1、終端輸入指令yarn add echarts 引入echarts

2、在需要使用echarts的js檔案中,引入echarts模組,具體有哪些可以按需引入的模組列表可查看demo->node_modules->echarts->index.js檔案

// 引入 ECharts 主模块
import echarts from 'echarts/lib/echarts';
import 'echarts/lib/chart/line';
// 引入柱状图
import 'echarts/lib/chart/bar';
// 引入提示框和标题组件
import 'echarts/lib/component/tooltip';
import 'echarts/lib/component/title';

四、快速鍵

終端使用ctrl c退出批次操作。

以上是vscode如何開發react的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn