node和npm的开发环境配置使用(个人)

node的使用

 1.下载安装(长期支持版本)

https://nodejs.org/zh-cn/download/

打开cmd输入node -v检测是否安装成功

(node版本太低可能导致开发不畅)

注意:一旦安装了node,则会自动一并安装npm,node建议使用稳定版

 

npm的使用(node package manager )

尽量使用cmd终端,powershell经常出现不知名问题

1.初始化项目

//初始化时手动配置
npm init

//初始化时自动配置
npm init -y

2.下载包命令

npm install 包名

//简化
npm i 包名@指定版本号

3.安装并使用nrm

 建议切换为淘宝镜像

//全局安装nrm
npm install -g nrm

//查看可用的镜像源
nrm ls

//切换镜像源
nrm use 镜像源的名称
$ nrm ls
// * 代码当前源
* npm -----  https://registry.npmjs.org/
  yarn ----- https://registry.yarnpkg.com
  cnpm ----  http://r.cnpmjs.org/
  taobao --  https://registry.npm.taobao.org/
  nj ------  https://registry.nodejitsu.com/
  skimdb -- https://skimdb.npmjs.com/registry
$ nrm use cnpm  // 切换到cnpm

    Registry has been set to: http://r.cnpmjs.org/

国内下载国外包慢的问题, 除了指向淘宝镜像外, 还可以加上使用下面的命令加速

可以使用一下命令代替npm install

npm install --node-sqlite3_binary_host_mirror=https://npm.taobao.org/mirrors/

 

你可能感兴趣的:(前端,node.js,npm)