💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 修改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 ```