W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
首先需要安裝 React 相關(guān)的依賴。
npm install --save react
npm install --save react-dom
npm install --save-dev parcel-bundler
或者如果你安裝了 Yarn 包管理器
yarn add react
yarn add react-dom
yarn add --dev parcel-bundler
添加 start 指令到 package.json
// package.json
"scripts": {
"start": "parcel index.html"
}
首先需要安裝 Preact 相關(guān)的依賴。
npm install --save preact
npm install --save-dev parcel-bundler
或者如果說(shuō)你安裝了 Yarn 包管理器,作為 npm 的備選
yarn add preact
yarn add --dev parcel-bundler
向 package.json 的 scripts 中添加 start 腳本。
// package.json
"scripts": {
"start": "parcel index.html"
}
首先,我們需要安裝 Vue 的依賴關(guān)系。
npm install --save vue
npm install --save-dev parcel-bundler
或者如果說(shuō)你安裝了 Yarn 包管理器,作為 npm 的備選
yarn add vue
yarn add --dev parcel-bundler
向 package.json 的 scripts 中添加 start 腳本。
// package.json
"scripts": {
"start": "parcel index.html"
}
首先,我們需要添加 Parcel 和 Typescript 到你的項(xiàng)目里。
npm install --save-dev typescript
npm install --save-dev parcel-bundler
或者如果說(shuō)你安裝了 Yarn 包管理器,作為 npm 的備選
yarn add --dev typescript
yarn add --dev parcel-bundler
添加 start 腳本到package.json
// package.json
"scripts": {
"start": "parcel index.html"
}
接著,在你的index.html文件,簡(jiǎn)單的引入你的.ts文件
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head> </head>
<body>
<!-- 這里 ???? -->
<script src="./myTypescriptFile.ts"></script>
</body>
</html>
完成!
添加 start 腳本到package.json
// package.json
"scripts": {
"start": "parcel myTypescriptFile.ts"
}
完成!???? 在 dist 文件夾中將發(fā)現(xiàn)編譯后的.js文件
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: