# npm_learning **Repository Path**: colinxu91/npm_learning ## Basic Information - **Project Name**: npm_learning - **Description**: npm 学习代码 - **Primary Language**: NodeJS - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-09-13 - **Last Updated**: 2020-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # npm_learning #### 介绍 npm 学习代码 #### npm_first_learning 1. 如何初始化 ``` npm init --scope=colinxu91 ``` 2. 如何发布npm库 ``` npm publish --access public ``` npm私有库需要付费 3. 如何更新版本 ``` npm version patch ``` 4. 如何打标签 ``` npm publish --tag beta ``` 5. 如何给一个特定的版本打标签 ``` npm dist-tag add example-package@1.4.0 stable ```