您现在的位置是:网站首页> NodeJS

nodejs开发笔记

  • NodeJS
  • 2023-03-19
  • 830人已阅读
摘要

nodejs开发笔记

nodejs下载

使用n模块进行管理

首先需要先安装n模块

npm install -g n

然后执行以下命令,即可将npm升级至最新版本

n latest npm

然后执行以下命令,即可将node.js升级至最新版本

n latest


当用正常安装出错时如:

npm install @types/lodash


解决办法

方式一、临时使用其他仓库进行下载安装

npm --registry https://registry.npm.taobao.org/  install @types/lodash


方式二、切换仓库进行下载安装

如何更换npm仓库

你可以使用以下命令来切换npm仓库:

npm config set registry <仓库地址>


方式三、通过cnpm来安装

安装cnpm

npm intsall -g cnpm -- registry=https://registry.npm.taobao.org/

查看版本

cnpm -v


npm仓库有哪些

使用下面指令可以查看镜像源:

npm config get registry

 官方仓库 - https://registry.npmjs.org/

 官方镜像仓库 - https://skimdb.npmjs.com/registry/

 淘宝镜像仓库(旧域名) - https://registry.npm.taobao.org/

 淘宝镜像仓库(新域名) - https://registry.npmmirror.com/

 腾讯仓库 - https://mirrors.cloud.tencent.com/npm/

 cnpm仓库 - https://r.cnpmjs.org/

 yarn仓库 - https://registry.yarnpkg.com/


Top