成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

Vue 發(fā)布新版腳手架工具,300 行代碼輕盈新生!

開(kāi)發(fā) 前端
本文就是通過(guò)調(diào)試和大家一起學(xué)習(xí)這個(gè)300余行的源碼。一起來(lái)看看吧。

[[433823]]

 1. 前言

美國(guó)時(shí)間 2021 年 10 月 7 日早晨,Vue 團(tuán)隊(duì)等主要貢獻(xiàn)者舉辦了一個(gè) Vue Contributor Days 在線會(huì)議,蔣豪群[1](知乎胖茶[2],Vue.js 官方團(tuán)隊(duì)成員,Vue-CLI 核心開(kāi)發(fā)),在會(huì)上公開(kāi)了create-vue[3],一個(gè)全新的腳手架工具。

create-vue使用npm init vue@next一行命令,就能快如閃電般初始化好基于vite的Vue3項(xiàng)目。

本文就是通過(guò)調(diào)試和大家一起學(xué)習(xí)這個(gè)300余行的源碼。

閱讀本文,你將學(xué)到:

1. 學(xué)會(huì)全新的官方腳手架工具 create-vue 的使用和原理

2. 學(xué)會(huì)使用 VSCode 直接打開(kāi) github 項(xiàng)目

3. 學(xué)會(huì)使用測(cè)試用例調(diào)試源碼

4. 學(xué)以致用,為公司初始化項(xiàng)目寫腳手架工具。

5. 等等

2. 使用 npm init vue@next 初始化 vue3 項(xiàng)目

create-vue github README[4]上寫著,An easy way to start a Vue project。一種簡(jiǎn)單的初始化vue項(xiàng)目的方式。

  1. npm init vue@next 

估計(jì)大多數(shù)讀者,第一反應(yīng)是這樣竟然也可以,這么簡(jiǎn)單快捷?

忍不住想動(dòng)手在控制臺(tái)輸出命令,我在終端試過(guò),見(jiàn)下圖。

npm init vue@next

最終cd vue3-project、npm install 、npm run dev打開(kāi)頁(yè)面http://localhost:3000[5]

初始化頁(yè)面

2.1 npm init && npx

為啥 npm init 也可以直接初始化一個(gè)項(xiàng)目,帶著疑問(wèn),我們翻看 npm 文檔。

npm init[6]

npm init 用法: 

  1. npm init [--force|-f|--yes|-y|--scope]  
  2. npm init <@scope> (same as `npx <@scope>/create`)  
  3. npm init [<@scope>/]<name> (same as `npx [<@scope>/]create-<name>`) 

npm init <initializer> 時(shí)轉(zhuǎn)換成npx命令:

  •  npm init foo -> npx create-foo
  •  npm init @usr/foo -> npx @usr/create-foo
  •  npm init @usr -> npx @usr/create

看完文檔,我們也就理解了: 

  1. # 運(yùn)行  
  2. npm init vue@next  
  3. # 相當(dāng)于  
  4. npx create-vue@next 

我們可以在這里create-vue[7],找到一些信息?;蛘咴趎pm create-vue[8]找到版本等信息。

其中@next是指定版本,通過(guò)npm dist-tag ls create-vue命令可以看出,next版本目前對(duì)應(yīng)的是3.0.0-beta.6。 

  1. npm dist-tag ls create-vue  
  2. - latest: 3.0.0-beta.6  
  3. - next: 3.0.0-beta.6 

發(fā)布時(shí) npm publish --tag next 這種寫法指定 tag。默認(rèn)標(biāo)簽是latest。

可能有讀者對(duì) npx 不熟悉,這時(shí)找到阮一峰老師博客 npx 介紹[9]、nodejs.cn npx[10]

npx 是一個(gè)非常強(qiáng)大的命令,從 npm 的 5.2 版本(發(fā)布于 2017 年 7 月)開(kāi)始可用。

簡(jiǎn)單說(shuō)下容易忽略且常用的場(chǎng)景,npx有點(diǎn)類似小程序提出的隨用隨走。

輕松地運(yùn)行本地命令 

  1. node_modules/.bin/vite -v  
  2. # vite/2.6.5 linux-x64 node-v14.16.0  
  3. # 等同于  
  4. # package.json script: "vite -v"  
  5. # npm run vite  
  6. npx vite -v  
  7. # vite/2.6.5 linux-x64 node-v14.16.0 

使用不同的 Node.js 版本運(yùn)行代碼某些場(chǎng)景下可以臨時(shí)切換 node 版本,有時(shí)比 nvm 包管理方便些。 

  1. npx node@14 -v  
  2. # v14.18.0  
  3. npx -p node@14 node -v   
  4. # v14.18.0 

無(wú)需安裝的命令執(zhí)行 。

  1. # 啟動(dòng)本地靜態(tài)服務(wù)  
  2. npx http-server  
  1. # 無(wú)需全局安裝  
  2. npx @vue/cli create vue-project  
  3. # @vue/cli 相比 npm init vue@next npx create-vue@next 很慢。  
  4. # 全局安裝  
  5. npm i -g @vue/cli  
  6. vue create vue-project 

npx vue-cli

npm init vue@next (npx create-vue@next) 快的原因,主要在于依賴少(能不依賴包就不依賴),源碼行數(shù)少,目前index.js只有300余行。

3. 配置環(huán)境調(diào)試源碼

3.1 克隆 create-vue 項(xiàng)目

本文倉(cāng)庫(kù)地址 create-vue-analysis[11],求個(gè)star~ 

  1. # 可以直接克隆我的倉(cāng)庫(kù),我的倉(cāng)庫(kù)保留的 create-vue 倉(cāng)庫(kù)的 git 記錄  
  2. git clone https://github.com/lxchuan12/create-vue-analysis.git  
  3. cd create-vue-analysis/create-vue  
  4. npm i 

當(dāng)然不克隆也可以直接用 VSCode 打開(kāi)我的倉(cāng)庫(kù)。https://open.vscode.dev/lxchuan12/create-vue-analysis

順帶說(shuō)下:我是怎么保留 create-vue 倉(cāng)庫(kù)的 git 記錄的。 

  1. # 在 github 上新建一個(gè)倉(cāng)庫(kù) `create-vue-analysis` 克隆下來(lái)  
  2. git clone https://github.com/lxchuan12/create-vue-analysis.git  
  3. cd create-vue-analysis  
  4. git subtree add --prefix=create-vue https://github.com/vuejs/create-vue.git main  
  5. # 這樣就把 create-vue 文件夾克隆到自己的 git 倉(cāng)庫(kù)了。且保留的 git 記錄 

關(guān)于更多 git subtree,可以看Git Subtree 簡(jiǎn)明使用手冊(cè)[12]

3.2 package.json 分析 

  1. // create-vue/package.json  
  2.  
  3.   "name": "create-vue",  
  4.   "version": "3.0.0-beta.6",  
  5.   "description": "An easy way to start a Vue project",  
  6.   "type": "module",  
  7.   "bin": {  
  8.     "create-vue": "outfile.cjs"  
  9.   },  

bin指定可執(zhí)行腳本。也就是我們可以使用 npx create-vue 的原因。

outfile.cjs 是打包輸出的JS文件 

  1.  
  2.   "scripts": {  
  3.     "build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs",  
  4.     "snapshot": "node snapshot.js",  
  5.     "pretest": "run-s build snapshot",  
  6.     "test": "node test.js"  
  7.   },  

執(zhí)行 npm run test 時(shí),會(huì)先執(zhí)行鉤子函數(shù) pretest。run-s 是 npm-run-all[13] 提供的命令。run-s build snapshot 命令相當(dāng)于 npm run build && npm run snapshot。

根據(jù)腳本提示,我們來(lái)看 snapshot.js 文件。

3.3 生成快照 snapshot.js

這個(gè)文件主要作用是根據(jù)const featureFlags = ['typescript', 'jsx', 'router', 'vuex', 'with-tests'] 組合生成31種加上 default 共計(jì) 32種 組合,生成快照在 playground目錄。

因?yàn)榇虬傻?outfile.cjs 代碼有做一些處理,不方便調(diào)試,我們可以修改為index.js便于調(diào)試。 

  1. // 路徑 create-vue/snapshot.js  
  2. const bin = path.resolve(__dirname, './outfile.cjs')  
  3. // 改成 index.js 便于調(diào)試  
  4. const bin = path.resolve(__dirname, './index.js') 

我們可以在for和 createProjectWithFeatureFlags 打上斷點(diǎn)。

createProjectWithFeatureFlags其實(shí)類似在終端輸入如下執(zhí)行這樣的命令

  1. node ./index.js --xxx --xxx --force  
  1. function createProjectWithFeatureFlags(flags) {  
  2.   const projectName = flags.join('-')  
  3.   console.log(`Creating project ${projectName}`)  
  4.   const { status } = spawnSync(  
  5.     'node',  
  6.     [bin, projectName, ...flags.map((flag) => `--${flag}`), '--force'],  
  7.     {  
  8.       cwd: playgroundDir,  
  9.       stdio: ['pipe', 'pipe', 'inherit']  
  10.     }  
  11.   )  
  12.   if (status !== 0) {  
  13.     process.exit(status)  
  14.   }  
  15.  
  16. // 路徑 create-vue/snapshot.js  
  17. for (const flags of flagCombinations) {  
  18.   createProjectWithFeatureFlags(flags)  

調(diào)試:VSCode打開(kāi)項(xiàng)目,VSCode高版本(1.50+)可以在 create-vue/package.json => scripts => "test": "node test.js"。鼠標(biāo)懸停在test上會(huì)有調(diào)試腳本提示,選擇調(diào)試腳本。如果對(duì)調(diào)試不熟悉,可以看我之前的文章koa-compose,寫的很詳細(xì)。

調(diào)試時(shí),大概率你會(huì)遇到:create-vue/index.js 文件中,__dirname 報(bào)錯(cuò)問(wèn)題??梢园凑杖缦路椒ń鉀Q。在 import 的語(yǔ)句后,添加如下語(yǔ)句,就能愉快的調(diào)試了。 

  1. // 路徑 create-vue/index.js  
  2. // 解決辦法和nodejs issues  
  3. // https://stackoverflow.com/questions/64383909/dirname-is-not-defined-in-node-14-version  
  4. // https://github.com/nodejs/help/issues/2907  
  5. import { fileURLToPath } from 'url';  
  6. import { dirname } from 'path';  
  7. const __filename = fileURLToPath(import.meta.url);  
  8. const __dirname = dirname(__filename); 

接著我們調(diào)試 index.js 文件,來(lái)學(xué)習(xí)。

4. 調(diào)試 index.js 主流程

回顧下上文 npm init vue@next 初始化項(xiàng)目的。

npm init vue@next

單從初始化項(xiàng)目輸出圖來(lái)看。主要是三個(gè)步驟。 

  1. 1. 輸入項(xiàng)目名稱,默認(rèn)值是 vue-project  
  2. 2. 詢問(wèn)一些配置 渲染模板等  
  3. 3. 完成創(chuàng)建項(xiàng)目,輸出運(yùn)行提示  
  1. async function init() {  
  2.   // 省略放在后文詳細(xì)講述  
  3.  
  4. // async 函數(shù)返回的是Promise 可以用 catch 報(bào)錯(cuò)  
  5. init().catch((e) => {  
  6.   console.error(e)  
  7. }) 

4.1 解析命令行參數(shù) 

  1. // 返回運(yùn)行當(dāng)前腳本的工作目錄的路徑。  
  2. const cwd = process.cwd()  
  3. // possible options: 
  4. // --default  
  5. // --typescript / --ts  
  6. // --jsx  
  7. // --router / --vue-router  
  8. // --vuex 
  9. // --with-tests / --tests / --cypress  
  10. // --force (for force overwriting)  
  11. const argv = minimist(process.argv.slice(2), {  
  12.     alias: {  
  13.         typescript: ['ts'],  
  14.         'with-tests': ['tests', 'cypress'],  
  15.         router: ['vue-router']  
  16.     },  
  17.     // all arguments are treated as booleans  
  18.     boolean: true  
  19. }) 

minimist[14]

簡(jiǎn)單說(shuō),這個(gè)庫(kù),就是解析命令行參數(shù)的??蠢?,我們比較容易看懂傳參和解析結(jié)果。 

  1. $ node example/parse.js -a beep -b boop  
  2. { _: [], a: 'beep', b: 'boop' }  
  3. $ node example/parse.js -x 3 -y 4 -n5 -abc --beep=boop foo bar baz  
  4. { _: [ 'foo', 'bar', 'baz' ],  
  5.   x: 3,  
  6.   y: 4,  
  7.   n: 5,  
  8.   a: true,  
  9.   b: true,  
  10.   c: true,  
  11.   beep: 'boop' } 

比如 

  1. npm init vue@next --vuex --force 

4.2 如果設(shè)置了 feature flags 跳過(guò) prompts 詢問(wèn)

這種寫法方便代碼測(cè)試等。直接跳過(guò)交互式詢問(wèn),同時(shí)也可以省時(shí)間。 

  1. // if any of the feature flags is set, we would skip the feature prompts  
  2.   // use `??` instead of `||` once we drop Node.js 12 support  
  3.   const isFeatureFlagsUsed =  
  4.     typeof (argv.default || argv.ts || argv.jsx || argv.router || argv.vuex || argv.tests) ===  
  5.     'boolean'  
  6. // 生成目錄  
  7.   let targetDir = argv._[0]  
  8.   // 默認(rèn) vue-projects  
  9.   const defaultProjectName = !targetDir ? 'vue-project' : targetDir  
  10.   // 強(qiáng)制重寫文件夾,當(dāng)同名文件夾存在時(shí)  
  11.   const forceOverwrite = argv.force 

4.3 交互式詢問(wèn)一些配置

如上文npm init vue@next 初始化的圖示

  •  輸入項(xiàng)目名稱
  •  還有是否刪除已經(jīng)存在的同名目錄
  •  詢問(wèn)使用需要 JSX Router vuex cypress 等。 
  1. let result = {}  
  2.   try {  
  3.     // Prompts:  
  4.     // - Project name:  
  5.     //   - whether to overwrite the existing directory or not?  
  6.     //   - enter a valid package name for package.json  
  7.     // - Project language: JavaScript / TypeScript  
  8.     // - Add JSX Support?  
  9.     // - Install Vue Router for SPA development?  
  10.     // - Install Vuex for state management? (TODO)  
  11.     // - Add Cypress for testing?  
  12.     result = await prompts(  
  13.       [  
  14.         {  
  15.           name: 'projectName',  
  16.           type: targetDir ? null : 'text',  
  17.           message: 'Project name:',  
  18.           initial: defaultProjectName, 
  19.           onState: (state) => (targetDir = String(state.value).trim() || defaultProjectName)  
  20.         },  
  21.         // 省略若干配置  
  22.         {  
  23.           name: 'needsTests',  
  24.           type: () => (isFeatureFlagsUsed ? null : 'toggle'),  
  25.           message: 'Add Cypress for testing?',  
  26.           initial: false,  
  27.           active: 'Yes',  
  28.           inactive: 'No'  
  29.         }  
  30.       ],  
  31.       {  
  32.         onCancel: () => {  
  33.           throw new Error(red('✖') + ' Operation cancelled')  
  34.         }  
  35.       }  
  36.     ]  
  37.     )  
  38.   } catch (cancelled) {  
  39.     console.log(cancelled.message)  
  40.     // 退出當(dāng)前進(jìn)程。  
  41.     process.exit(1)  
  42.   } 

4.4 初始化詢問(wèn)用戶給到的參數(shù),同時(shí)也會(huì)給到默認(rèn)值 

  1. // `initial` won't take effect if the prompt type is null  
  2.   // so we still have to assign the default values here  
  3.   const {  
  4.     packageName = toValidPackageName(defaultProjectName),  
  5.     shouldOverwrite,  
  6.     needsJsx = argv.jsx,  
  7.     needsTypeScript = argv.typescript,  
  8.     needsRouter = argv.router,  
  9.     needsVuex = argv.vuex,  
  10.     needsTests = argv.tests  
  11.   } = result  
  12.   const root = path.join(cwd, targetDir)  
  13.   // 如果需要強(qiáng)制重寫,清空文件夾  
  14.   if (shouldOverwrite) {  
  15.     emptyDir(root)  
  16.     // 如果不存在文件夾,則創(chuàng)建  
  17.   } else if (!fs.existsSync(root)) {  
  18.     fs.mkdirSync(root)  
  19.   }  
  20.   // 腳手架項(xiàng)目目錄  
  21.   console.log(`\nScaffolding project in ${root}...`)  
  22.  // 生成 package.json 文件  
  23.   const pkg = { name: packageName, version: '0.0.0' }  
  24.   fs.writeFileSync(path.resolve(root, 'package.json'), JSON.stringify(pkg, null, 2)) 

4.5 根據(jù)模板文件生成初始化項(xiàng)目所需文件 

  1. // todo:  
  2.  // work around the esbuild issue that `import.meta.url` cannot be correctly transpiled  
  3.  // when bundling for node and the format is cjs  
  4.  // const templateRoot = new URL('./template', import.meta.url).pathname  
  5.  const templateRoot = path.resolve(__dirname, 'template')  
  6.  const render = function render(templateName) {  
  7.    const templateDir = path.resolve(templateRoot, templateName)  
  8.    renderTemplate(templateDir, root)  
  9.  }  
  10.  // Render base template  
  11.  render('base')  
  12.   // 添加配置  
  13.  // Add configs.  
  14.  if (needsJsx) {  
  15.    render('config/jsx') 
  16.  }  
  17.  if (needsRouter) {  
  18.    render('config/router')  
  19.  }  
  20.  if (needsVuex) {  
  21.    render('config/vuex')  
  22.  }  
  23.  if (needsTests) {  
  24.    render('config/cypress')  
  25.  }  
  26.  if (needsTypeScript) {  
  27.    render('config/typescript')  
  28.  } 

4.6 渲染生成代碼模板 

  1. // Render code template.  
  2.   // prettier-ignore  
  3.   const codeTemplate =  
  4.     (needsTypeScript ? 'typescript-' : '') +  
  5.     (needsRouter ? 'router' : 'default')  
  6.   render(`code/${codeTemplate}`)  
  7.   // Render entry file (main.js/ts).  
  8.   if (needsVuex && needsRouter) {  
  9.     render('entry/vuex-and-router')  
  10.   } else if (needsVuex) {  
  11.     render('entry/vuex')  
  12.   } else if (needsRouter) {  
  13.     render('entry/router')  
  14.   } else {  
  15.     render('entry/default')  
  16.   } 

4.7 如果配置了需要 ts

重命名所有的 .js 文件改成 .ts。重命名 jsconfig.json 文件為 tsconfig.json 文件。

jsconfig.json[15] 是VSCode的配置文件,可用于配置跳轉(zhuǎn)等。

把index.html 文件里的 main.js 重命名為 main.ts。 

  1. // Cleanup.  
  2. if (needsTypeScript) { 
  3.     // rename all `.js` files to `.ts`  
  4.     // rename jsconfig.json to tsconfig.json  
  5.     preOrderDirectoryTraverse(  
  6.       root,  
  7.       () => {},  
  8.       (filepath) => {  
  9.         if (filepath.endsWith('.js')) {  
  10.           fs.renameSync(filepath, filepath.replace(/\.js$/, '.ts'))  
  11.         } else if (path.basename(filepath) === 'jsconfig.json') {  
  12.           fs.renameSync(filepath, filepath.replace(/jsconfig\.json$/, 'tsconfig.json'))  
  13.         }  
  14.       }  
  15.     )  
  16.     // Rename entry in `index.html`  
  17.     const indexHtmlPath = path.resolve(root, 'index.html')  
  18.     const indexHtmlContent = fs.readFileSync(indexHtmlPath, 'utf8')  
  19.     fs.writeFileSync(indexHtmlPath, indexHtmlContent.replace('src/main.js', 'src/main.ts'))  
  20.   } 

4.8 配置了不需要測(cè)試

因?yàn)樗械哪0宥加袦y(cè)試文件,所以不需要測(cè)試時(shí),執(zhí)行刪除 cypress、/__tests__/ 文件夾 

  1. if (!needsTests) {  
  2.    // All templates assumes the need of tests.  
  3.    // If the user doesn't need it:  
  4.    // rm -rf cypress **/__tests__/  
  5.    preOrderDirectoryTraverse(  
  6.      root,  
  7.      (dirpath) => {  
  8.        const dirname = path.basename(dirpath)  
  9.        if (dirname === 'cypress' || dirname === '__tests__') {  
  10.          emptyDir(dirpath)  
  11.          fs.rmdirSync(dirpath)  
  12.        }  
  13.      },  
  14.      () => {}  
  15.    )  
  16.  } 

4.9 根據(jù)使用的 npm / yarn / pnpm 生成README.md 文件,給出運(yùn)行項(xiàng)目的提示 

  1. // Instructions:  
  2.   // Supported package managers: pnpm > yarn > npm  
  3.   // Note: until <https://github.com/pnpm/pnpm/issues/3505> is resolved,  
  4.   // it is not possible to tell if the command is called by `pnpm init`.  
  5.   const packageManager = /pnpm/.test(process.env.npm_execpath)  
  6.     ? 'pnpm'  
  7.     : /yarn/.test(process.env.npm_execpath)  
  8.     ? 'yarn'  
  9.     : 'npm'  
  10.   // README generation  
  11.   fs.writeFileSync(  
  12.     path.resolve(root, 'README.md'),  
  13.     generateReadme({  
  14.       projectName: result.projectName || defaultProjectName,  
  15.       packageManager,  
  16.       needsTypeScript,  
  17.       needsTests  
  18.     })  
  19.   )  
  20.   console.log(`\nDone. Now run:\n`)  
  21.   if (root !== cwd) {  
  22.     console.log(`  ${bold(green(`cd ${path.relative(cwd, root)}`))}`)  
  23.   }  
  24.   console.log(`  ${bold(green(getCommand(packageManager, 'install')))}`)  
  25.   console.log(`  ${bold(green(getCommand(packageManager, 'dev')))}`)  
  26.   console.log() 

5. npm run test => node test.js 測(cè)試 

  1. // create-vue/test.js  
  2. import fs from 'fs'  
  3. import path from 'path'  
  4. import { fileURLToPath } from 'url'  
  5. import { spawnSync } from 'child_process'  
  6. const __dirname = path.dirname(fileURLToPath(import.meta.url))  
  7. const playgroundDir = path.resolve(__dirname, './playground/')  
  8. for (const projectName of fs.readdirSync(playgroundDir)) {  
  9.   if (projectName.endsWith('with-tests')) {  
  10.     console.log(`Running unit tests in ${projectName}`)  
  11.     const unitTestResult = spawnSync('pnpm', ['test:unit:ci'], {  
  12.       cwd: path.resolve(playgroundDir, projectName),  
  13.       stdio: 'inherit',  
  14.       shell: true  
  15.     })  
  16.     if (unitTestResult.status !== 0) {  
  17.       throw new Error(`Unit tests failed in ${projectName}`)  
  18.     }  
  19.     console.log(`Running e2e tests in ${projectName}`)  
  20.     const e2eTestResult = spawnSync('pnpm', ['test:e2e:ci'], {  
  21.       cwd: path.resolve(playgroundDir, projectName),  
  22.       stdio: 'inherit',  
  23.       shell: true  
  24.     }) 
  25.     if (e2eTestResult.status !== 0) {  
  26.       throw new Error(`E2E tests failed in ${projectName}`)  
  27.     }  
  28.   }  

主要對(duì)生成快照時(shí)生成的在 playground 32個(gè)文件夾,進(jìn)行如下測(cè)試。 

  1. pnpm test:unit:ci  
  2. pnpm test:e2e:ci  

6. 總結(jié)

我們使用了快如閃電般的npm init vue@next,學(xué)習(xí)npx命令了。學(xué)會(huì)了其原理。 

  1. npm init vue@next => npx create-vue@next 

快如閃電的原因在于依賴的很少。很多都是自己來(lái)實(shí)現(xiàn)。如:Vue-CLI中 vue create vue-project 命令是用官方的npm包validate-npm-package-name[16],刪除文件夾一般都是使用 rimraf[17]。而 create-vue 是自己實(shí)現(xiàn)emptyDir和isValidPackageName。

非常建議讀者朋友按照文中方法使用VSCode調(diào)試 create-vue 源碼。源碼中還有很多細(xì)節(jié)文中由于篇幅有限,未全面展開(kāi)講述。 

 

責(zé)任編輯:龐桂玉 來(lái)源: 前端大全
相關(guān)推薦

2016-09-07 15:35:06

VueReact腳手架

2020-06-29 11:35:02

Spring BootJava腳手架

2021-01-07 05:34:07

腳手架JDK緩存

2021-05-21 05:22:52

腳手架工具項(xiàng)目

2018-06-11 14:39:57

前端腳手架工具node.js

2018-08-30 16:08:37

Node.js腳手架工具

2022-01-14 14:09:11

腳手架代碼自定義

2022-12-12 08:56:45

Vite3Vite

2009-09-16 15:05:58

CakePHP腳手架

2018-05-15 09:10:27

前端vue.jswebpack

2017-07-21 09:56:46

Webpack3 Vue.js腳手架

2021-10-08 06:10:43

前端技術(shù)Vue

2016-08-10 14:59:41

前端Javascript工具

2025-05-26 08:45:00

AvueVue.js前端

2021-12-23 10:35:32

SpringCloud腳手架架構(gòu)

2025-05-16 07:24:41

Springkafka腳手架

2014-08-15 09:36:06

2020-03-20 08:32:41

物聯(lián)網(wǎng)腳手架傳感器

2019-12-25 15:20:48

前端腳手架命令

2022-04-24 11:33:47

代碼管理工程
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)

主站蜘蛛池模板: 亚洲高清在线 | 国产成人免费在线 | 精品视频在线观看 | 天天干天天草 | 亚洲精品68久久久一区 | 黄网站涩免费蜜桃网站 | 99精品欧美一区二区三区 | 欧美激情在线观看一区二区三区 | 中文字幕91 | 日韩在线视频一区二区三区 | 最新国产福利在线 | 五月激情婷婷在线 | 亚洲精品在线视频 | 日韩欧美在线一区二区 | www.97国产 | 亚洲欧美高清 | 日韩在线视频一区二区三区 | 日韩av在线一区二区 | 偷拍自拍第一页 | 国产在线精品一区二区三区 | 91短视频网址 | 极品销魂美女一区二区 | 中文字幕在线免费视频 | 免费一区二区三区在线视频 | 黄色在线播放视频 | 亚洲人成人一区二区在线观看 | 免费麻豆视频 | 我想看一级黄色毛片 | 亚洲不卡在线观看 | 国产精品综合色区在线观看 | 91在线免费观看网站 | 91在线精品秘密一区二区 | 九九久久国产精品 | 亚洲精品久久久久中文字幕欢迎你 | 成人av一区二区三区 | 国产不卡视频 | 黄网站在线播放 | 国产一级视频免费播放 | 欧美男人天堂 | 色在线免费视频 | 成av在线|