Skip to content

Instantly share code, notes, and snippets.

@anxgang
Last active May 16, 2021 04:21
Show Gist options
  • Save anxgang/505fba80dc2bb76714f8d88cf8fea6bf to your computer and use it in GitHub Desktop.
Save anxgang/505fba80dc2bb76714f8d88cf8fea6bf to your computer and use it in GitHub Desktop.
前端環境安裝Win

前端環境安裝 - Win

工具介紹

安裝環境

  • 安裝 chocolatey
    • 搜尋 powershell.exe 並按右鍵使用最高權限開啟
    • 輸入安裝 chocolatey 指令
    Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
    
  • 安裝 git
    • choco install git
    • 設定識別資料
    $ git config --global user.name "John Doe"  
    $ git config --global user.email [email protected]
    
  • 安裝 nodejs
    • choco install nodejs-lts
  • 安裝 cmder
    • choco install cmder
  • 安裝 vscode
    • choco install vscode
    • 安裝衍伸套件
      • Chinese (Tranditional) Language Pack for VSCode
      • Atom Keymap
      • One Dark Pro
      • file-icons
  • 安裝 yarn
    • choco insatll yarn
  • 安裝 chrome
    • choco install googlechrome

前端學習路線

學習路線

  • 基礎知識
    • Html
    • CSS
    • Javascript
  • CSS
    • 預處理器
      • Scss
      • (可略)Less
    • 框架
      • Bootstrap
      • (可略)tailwind
  • Javascript
    • 函式庫 (算是上代技術主流工具)
      • jQuery
      • (可略)lodash
    • JS框架 (現代技術主流工具)
      • vue
        • Element UI (衍生的CSS框架)
        • Nuxt (衍伸的Web框架)
      • (可略)react
      • (可略)angular
  • 打包工具
    • Webpack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment