nvm

nodejs 环境安装与问题解决

扶醉桌前 提交于 2019-12-02 19:53:56
快速搭建 Node.js 开发环境以及加速 npm 在公交车上刷微博,还是有很多同学在咨询: 如何快速搭建 node 开发环境 npm 超慢 github 无法打开的问题 于是我觉得应该写一篇文章解答所有这些起步问题,让新同学也能顺顺利利入门。 快速搭建 Node.js 开发环境 如果你想长期做 node 开发, 或者想快速更新 node 版本, 或者想快速切换 node 版本, 那么在 非 Windows(如 osx, linux) 环境下, 请使用 nvm 来安装你的 node 开发环境, 保持系统的干净. 如果你使用 Windows 做开发, 那么你可以使用 nvmw 来替代 nvm osx, linux 环境 如果你是 windows 环境开发, 请跳过这里, 直接查看下一章. git clone nvm 直接从 github clone nvm 到本地, 这里假设大家都使用~/git目录存放 git 项目: $ cd ~ /git $ git clone https:/ / github . com / creationix / nvm . git 配置终端启动时自动执行source ~/git/nvm/nvm.sh, 在~/.bashrc,~/.bash_profile,~/.profile, 或者~/.zshrc文件添加以下命令: source ~ /git/ nvm

How to properly upgrade node using nvm

梦想与她 提交于 2019-12-02 13:47:29
Is it possible to upgrade node right in place, instead of manually installing the latest stable version? I have installed node.js version 5.0 with nvm , but now I want to update it to 5.4 . I'm trying to avoid having to manually reinstall all of my global packages ( e.g. by running npm install -g grunt-cli bower yo yoman-angular-generator blabla blablablabla ...). gabrielperales This may work: nvm install NEW_VERSION --reinstall-packages-from=OLD_VERSION For example: nvm install 6.7 --reinstall-packages-from=6.4 then, if you want, you can delete your previous version with: nvm uninstall OLD

使用NVM管理NodeJS版本

痴心易碎 提交于 2019-12-02 03:05:11
近期去逛VUE官网发现一个神奇的工具--NVM(Node Version Management). 以下便来讲讲这个工具的安装、使用及过程中可能遇到的issues. NVM的安装 首先确保你的网络畅通,如果需要翻墙,请看: https://github.com/getlantern/lantern 下载 nvm 包 地址: https://github.com/coreybutler/nvm-windows/releases ,我们选择第一个:nvm-noinstall.zip 下载完成后解压到一个地方,比如: E:\NVM\nvm 里面的文件列表是这样的: elevate.cmd 、 elevate.vbs 、 install.cmd 、 LICENSE 、 nvm.exe 双击 install.cmd 然后会让你输入”压缩文件解压或拷贝到的一个绝对路径” 先不用管它,直接回车,成功后,会在 E:\NVM\nvm 目录生成一个settings.txt的文本文件,然后我们把它的内容修改成如下,node_mirror表示node的淘宝镜像,npm_mirror表示npm的淘宝镜像: root: E:\NVM\nvm path: C:\dev\nodejs arch: 64 proxy: none node_mirror: http://npm.taobao.org/mirrors

如何在windows下切换node版本

女生的网名这么多〃 提交于 2019-12-01 19:39:41
安装nvm 最近的项目中,一个是用vue项目开发,一个是使用react开发,但是ant design pro使用了umi框架,所需要的node版本>10.0.0,vue那个项目中又不兼容node的最新版本, 解决办法:1.用到某个版本对node重新卸载,安装对应的版本      2.使用nvm 很明显,第一种方法虽然也能解决node版本问题,但是太多麻烦,接下来介绍下nvm的安装使用 第一步:下载nvm并安装 (推荐使用nvm-setup.zip) https://github.com/coreybutler/nvm-windows/releases 第二步:使用nvm命令切换node版本 nvm // 会提示nvw下的相关命令 nvm ls // 查看已安装node版本 nvm install vXX // 安装对应vXX版本的node nvm uninstall vXX // 卸载对应vXX版本的node nvm use xxx // 选择使用XXX版本 无需配置环境变量,亲测成功 来源: https://www.cnblogs.com/zjknb/p/11715007.html

安装node

心已入冬 提交于 2019-12-01 17:28:30
nvm安装(windows下): https://github.com/coreybutler/nvm-windows nvm安装完直接cmd输入nvm回车会有指令提示 配置淘宝镜像: nvm node_mirror https://npm.taobao.org/mirrors/node/ nvm npm_mirror https://npm.taobao.org/mirrors/npm/ 安装node nvm install latest安装最新的node(安装特定版本直接接版本号:nvm install v11.6.0),安装node同时会安装npm,输入node -v / npm -v回车可以检测是否安装成功 配置淘宝镜像: npm config set registry https://registry.npm.taobao.org npm config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass 安装nrm npm install -g nrm 使用:nrm ls ,nrm test ,nrm use ,nrm help 来源: https://www.cnblogs.com/goingforward/p/11695813.html

NVM 安装(window/mac/linux)

喜你入骨 提交于 2019-12-01 17:20:32
一、window版 1.nvm-windows下载   [下载地址](https://github.com/coreybutler/nvm-windows/releases),下载 nvm-setup.zip 2.安装nvm   (1)首先把nvm-setup.zip解压到比如D:/nvm中(其它盘也可以);   (2)然后以管理员的身份运行nvm-setup.exe    选择nvm安装目录为D:\nvm;    选择node安装目录为 D:\nvm\nodejs; 3.修改settings.txt的内容为: root: D:\nvm path: D:\nvm\nodejs arch: 64 proxy: none node_mirror: http://npm.taobao.org/mirrors/node/ npm_mirror: https://npm.taobao.org/mirrors/npm/ 4.通过nvm安装node: nvm -v // 查看nvm版本 nvm install v12.11.1 // 下载指定版本 nvm install latest安装最新版本 nvm use v12.11.1 // 使用指定版本 nvm ls // 查看已经安装的nodejs版本 node -v // 查看nodejs版本 5.安装全局npm:

Set node version with NVM or install if not available.

主宰稳场 提交于 2019-12-01 12:14:47
I'm trying to add to my bash profile something that will set my node version to a specific version, and if the node version is not installed then install it. What I have so far is: . /usr/local/opt/nvm/nvm.sh if [[ $(nvm use v6.9.1) == "" ]]; then nvm install v6.9.1 fi However, the problem is that the $(nvm use v6.9.1) is run in a subshell and my node version doesn't get switched. a) Is there any way to have $(nvm use v6.9.1) run in the current shell? b) Is there a better way of doing this? Previously I was just running nvm install v6.9.1 but this was kinda slow which was an issue as it runs

Set node version with NVM or install if not available.

偶尔善良 提交于 2019-12-01 10:55:36
问题 I'm trying to add to my bash profile something that will set my node version to a specific version, and if the node version is not installed then install it. What I have so far is: . /usr/local/opt/nvm/nvm.sh if [[ $(nvm use v6.9.1) == "" ]]; then nvm install v6.9.1 fi However, the problem is that the $(nvm use v6.9.1) is run in a subshell and my node version doesn't get switched. a) Is there any way to have $(nvm use v6.9.1) run in the current shell? b) Is there a better way of doing this?

分不清npm cnpm npx nvm ?

浪子不回头ぞ 提交于 2019-12-01 07:23:41
npm npm 的全称是 Node Package Manager 是 JavaScript 世界的包管理工具,并且是 Node.js 平台的默认包管理工具,在安装的 nodejs 的时候,npm 会跟着一起安装。通过 npm 可以安装、共享、分发代码,管理项目依赖关系。 常用命令 : ``` npm -v 显示版本,检查npm 是否正确安装 npm help 可查看某条命令的详细帮助,例如npm help install npm list -g 查看已经安装的模块 npm show express 查看已经安装的模块的详情 npm cache clean --force 清除npm本地缓存 npm init 初始化 npm install xxx 下载包 npm uninstall xxx 卸载包 npm update xxx 更新包 npm outdated -g --depth=0 要找出需要更新的软件包 ``` 发布一个 npm 包: 注册 && 查询: https://www.npmjs.com 登录: npm login 查询确认成功: npm whoami 上传包: npm publish 验证邮箱: npm adduser 换源: npm config set registry http://registry.npmjs.org 更新:修改 version 后

nvm安装和配置详细教程

笑着哭i 提交于 2019-12-01 06:45:19
最新的安装教程在这里 http://www.cnblogs.com/yesyes/p/7403184.html,更简单 以下此教程已过时 nvm是nodejs的版本管理工具,为什么要用nvm,你能百度到这篇文章相比是遇到不得不用的原因了,我们知道nodejs官方更新的速度非常快,有时候业务需要需要用某某版本,如果用的是msi安装,虽然安装的时候挺简单,但是后面就麻烦了,这里是我倒腾了一天总结下来的教程,只要按照这个去配置,绝对没有问题,大家不要嫌麻烦,学会了以后能省去很过时间。 我用的win32系统,先安装nvm,接着nodejs,最后npm nvm下载地址 nvm详细安装步骤: 一:以管理员身份运行install.cmd文件,设置文件路径 root: C:\nvm path: C:\nodejs arch: 32 proxy: none 确保目录下有一个setting.txt文件(图片是我配置好后的截图,默认没有那些文件夹) cmd 命令行输入nvm回车看到nvm的版本号表示nvm安装成功 下载需要的 nodejs 版本,解压后改名(如v6.9.1)放到nvm目录,注意里面如果有嵌套文件夹就把文件拿到外层 二:环境变量配置:点击我的电脑》属性》高级设置》环境变量》 1.删除系统自带的nvm变量:NVM_HOME和NVM_SYMLINK 2.打开path:删除nvm自动添加的变量C