Advanced Vue JS 3 Online : Day 1

Visual Studio Code : ส่วนเสริม พื้นฐาน

  1. Color Picker by anseki
  2. Color Highlight by sergii n
  3. AutoFileName by jerryHong
  4. Material Icon Theme by philipp kief
  5. JavaScript (ES6) Code Snippets by charalampos karypidi
  6. Path Intellisense by christian kohler
  7. Es6-String-Html by tobermory
  8. Sass by syler
  9. Rainbow Brackets by 2gua
  10. One Dark Pro by binaryify

Extension สำหรับ Vue.JS

  1. Vue Language Features (Volar) by vue **ต้องปิดตัว Vuter ด้วย
  2. TypeScript Vue Plugin (Volar) by vue
  3. Vue 3 Snippets by hollowtree
  4.  Vue VSCode Snippets by sarah.drasner

ติดตั้ง Node.JS

เช็คของเดิมกันก่อน

node -v
npm -v
npx -v
where node

 

Git

Config Git First Time สำหรับการใช้งานครั้งแรก

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
git config --global init.defaultBranch main

ตรวจสอบค่าที่ Config ไว้

git config --list --global

การใช้งาน TypeScript บน Stiduo Code

ติดตั้ง TypeScript CLI

npm install -g typescript

เช็คเวอร์ชั่น

tsc -v

ติดตั้ง ts-node

npm install -g ts-node

เช็ค ts-node

ts-node -v
Exit mobile version