欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

npm 使用

程序员文章站 2022-05-31 11:14:20
...

如何生成package.json?

$ npm init

npm 安装模块,补充到package.json 中。

$ npm install xxx -save

自定义源来进行安装

$ npm install -g  yo --registry=http://registry.npmjs.org

npm使用自定义的源:

npm config set registry http://registry.cnpmjs.org

npm config set registry https://registry.npm.taobao.org 



如果速度还是慢,强制使用 http, 不使用 https:

npm config set strict-ssl false 

扩展阅读:
NodeJs安装npm包失败的解决办法
http://jingyan.baidu.com/article/1709ad809c7e8d4634c4f0a7.html
简介:
介绍了几个国内的源。