Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 332 Bytes

js-module.md

File metadata and controls

27 lines (19 loc) · 332 Bytes

第三方套件管理

JavaScript 套件管理工具

  • npm
  • yarn

新增套件到專案

# yarn
$ yarn add <Package_Name>@<Version>
ex: yarn add [email protected]

# npm
$ npm install <Package_Name>@<Version>

移除套件

# yarn
$ yarn remove <Package_Name>

# npm
$ npm uninstall <Package_Name>