ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 修改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 ```