1
dotnil 2016-05-15 09:18:50 +08:00
cnpm update ?指定新版本 install 也可以把, cnpm install xxx@v
|
2
InFaNg OP @dotnil cnpm update 貌似失效了,不知道和 npm update 到一半电脑没电了有没有关系。跟麻烦的是我一部分是用 npm 装的,一部分是用 cnpm 装的。
|
4
1990andy 2016-05-30 22:31:45 +08:00
建议还是宁可翻墙用 npm 。。。。
|
5
m31271n 2016-06-01 12:57:31 +08:00 1
推荐使用通过 alias 的方式使用 cnpm : npm list --depth 0 列出所有明确安装的包并记录下来。然后删除 node_modules ,
|
6
m31271n 2016-06-01 12:58:56 +08:00 1
推荐使用通过 alias 的方式使用 cnpm :
``` alias cnpm="npm --registry=https://registry.npm.taobao.org \ --cache=$HOME/.npm/.cache/cnpm \ --disturl=https://npm.taobao.org/dist \ --userconfig=$HOME/.cnpmrc" ``` npm list --depth 0 列出所有明确安装的包并记录下来,然后删除 node_modules 。 使用 cnpm 重新安装所有包。 |