npm
$ node -v
# 安裝套件包
$ npm install 套件包名稱
# 所有的 package 套件包都是小寫
$ npm install jquery
# install 可以縮寫成 i
$ npm i react
$ npm i vue
# 安裝套件包 devDependencies
# 會被寫到 package.json 裡的 devDependencies
$ npm install 套件包名稱 -D
# 指定套件包版本
# 查尋套件包可用的所有版本
$ npm view webpack versions
# 加個@x.x.x 就可以指定版本
$ npm install webpack@5.4.0
# 當專案沒有 node_modeuls 資料幾,可以使用以下指令重新安裝
$ npm install
# Development Command line
# build for developemnt
$ npm run start
# Production Command line
# 打包 production 用
# build for production with minification
$ npm run build
Familiarity with Rakuten Travel QA Workflow (Hands-On Experience)
Dec 4, 2024A compilation of essential vocabulary gathered during my internship at Rakuten, with a sum of 94.
Mar 21, 2024在 Ruby 裡,幾乎什麼東西都是物件
Mar 1, 2024create web applications in Ruby
Mar 1, 2024or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up