🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 修改registry 注册地址 (yarn同理) ```bash npm config set registry https://registry.npmjs.org ``` ### 添加淘宝镜像 ```bash npm install -g cnpm --registry=https://registry.npm.taobao.org ``` ### 查看注册地址 ```bash npm config get registry 或 npm info express ``` ### 查看依赖版本(例如:express) ```bash npm list express ``` ### 升级依赖版本(例如:express) ```bash npm update express ``` ### 搜索依赖版本(例如:express) ```bash npm search express ``` ### 升级npm(linux使用sudo) ```bash npm install npm -g ``` ### npm注册账户 ```bash npm adduser ``` ### npm发布模块 ```bash npm publish ```