nvm

linux 安装nvm,通过nvm安装node

时光总嘲笑我的痴心妄想 提交于 2019-11-28 05:06:51
1,nvm git地址点击打开链接,安装命令 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash or Wget: wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash (推荐wget) 然后 source ~/.bashrc 2、通过命令 nvm --version 可查看版本,说明安装成功 3、通过 nvm ls-remote可查看node所有版本 4、通过 nvm install <version>(版本号) 例如:nvm install v10.6.0 5、安装后可通过node -v ,npm -v 查看版本,说明安装成功 1,nvm git地址点击打开链接,安装命令 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash or Wget: wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash (推荐wget)

nvm is not compatible with the npm config “prefix” option:

别等时光非礼了梦想. 提交于 2019-11-28 02:41:09
I am trying to run another NodeJS version with nvm but getting this error: $ nvm use v4.2.4 nvm is not compatible with the npm config "prefix" option: currently set to "/Users/z/.npm-global" Run `npm config delete prefix` or `nvm use --delete-prefix v4.2.4` to unset it. I have my prefix set on purpose to avoid sudo npm (see https://docs.npmjs.com/getting-started/fixing-npm-permissions ). Is there any way I can use nvm without losing my prefix for globally installed packages? Mick Delete and Reset the prefix $ npm config delete prefix $ npm config set prefix $NVM_DIR/versions/node/v6.11.1 Note:

配置开发环境

独自空忆成欢 提交于 2019-11-28 00:56:40
配置开发环境 安装依赖 参考: React Native中文网 安装Node、Watchman 和 React Native 命令行工具以及 Xcode 1.安装Homebrew 将以下命令粘贴至终端 参考: 简书 https://www.jianshu.com/p/17f917ffc474 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" > 进行安装,然后执行:brew update 显示已经是最新版本 问题: 命令粘贴之后,无如何效果 解决方案: 大概二次反复提出终端,再重新粘贴运行,便可 2.开始安装node、watchman 在终端使用以下命令 brew install node brew install watchman 进行安装 node 问题: 刚开始安装时,会在下载过程中报错,然后中断 解决方案: 重新编写安装命令,大概经过3/4次之后,下载恢复正常,安装成功。 测试:参考: 麦子网站 终端输入 node -v 显示 v12

nvm的安装与配置和基本使用(学习总结)

北慕城南 提交于 2019-11-27 21:45:27
nvm是来管理node的一个工具,为了方便使用不同版本的node.js运行环境,我们应该学习如何使用他 nvm安装方式 1.下载nvm,大家可以去github上下载,但因为github的CDN被墙,访问速度过慢,这里直接贴出一个nvm下载地址 : https://pan.baidu.com/s/1wW4fH8XnXRiachXHb1Pckw 密码:pn90 选用noinstall.zip安装包 2.在任意磁盘创建文件夹,在其中创建两个子文件夹,分别为nvm和node.js   把nvm解压进nvm目录中   在install.cmd文件右击回车,选用管理员身份运行(一般配置系统文件都需要),打开窗口后回车生成setting.txt文件   root为之前nvm文件夹的路劲 ,path为node.js文件夹的目录      3.配置nvm和node.js环境变量   NVM_HOME: D:\node.js\nvm\nvm (自己的nvm文件夹路径)   NVM_SYMLINK:D:\node.js\nvm\node.js (同上) 把配置好的两个环境变量两边加上百分号,用分号隔开然后加入到PATH中 如:;%NVM_HOME%;%NVM_SYMLINK%; 至此,安装配置完成,可以使用nvm安装和管理node了 NVM的基本使用命令  nvm list 查看当前安装的node

nvm 相关命令

孤者浪人 提交于 2019-11-27 17:32:09
nvm install 安装指定版本,可模糊安装,如:安装v10.4.0,既可nvm install v10.4.0,又可nvm install 4.4 nvm uninstall 删除已安装的指定版本,语法与install类似 nvm use 切换使用指定的版本node nvm ls 列出所有安装的版本 nvm ls-remote 列出所以远程服务器的版本(官方node version list) nvm current 显示当前的版本 nvm alias 给不同的版本号添加别名 nvm unalias 删除已定义的别名 nvm reinstall-packages 在当前版本node环境下,重新全局安装指定版本号的npm包 来源: https://www.cnblogs.com/sdlx/p/11937929.html

install nvm in docker

梦想的初衷 提交于 2019-11-27 17:04:28
I am in the process of building a new Docker image and I'm looking to get NVM installed so I can manage nodejs. Reading the docs on how to install NVM they mention that you need to source your .bashrc file in order to start using NVM. I've tried to set this up in a Dockerfile, but so far building fails with the error: "bash: nvm: command not found" Here are the relevant lines from my Dockerfile: ADD files/nvm_install.sh /root/ RUN chmod a+x /root/nvm_install.sh RUN bash -c "/root/nvm_install.sh" RUN bash -l -c "source /root/.bashrc" RUN cd /root RUN bash -l -c "nvm install 0.10.31" Here is the

Windows下安装及使用NVM安装node.js

筅森魡賤 提交于 2019-11-27 16:01:04
https://blog.csdn.net/qq_32682137/article/details/82684898 之前一直使用的是去node官网下载安装包的形式,但是这样有版本局限性问题,团队使用不太方便。 这几天发现可以使用nvm安装node.js,切换版本也更方便,所以,尝试了一下。 大家也可以参照这篇博主的 https://blog.csdn.net/qq_32682137/article/details/82684898 比较详细, 我安装的是 nvm-setup.zip 包, 来源: https://blog.csdn.net/weixin_42416812/article/details/99694816

nginx部署项目

廉价感情. 提交于 2019-11-27 10:23:50
nginx介绍 Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。 负载均衡、反向代理 安装nginx yum install -y nginx 设置开机启动 systemctl start nginx.service systemctl enable nginx.service nginx默认使用端口 80, ecs实例没有开启端口80,默认只有 22 和 3389 部署自己的web应用 将自己的vue项目 运行如下命令打包 cnpm / npm run build cd /usr/share/nginx/html 在服务器运行如下代码: cd /etc/nginx vi nginx.conf // 修改root选项 配置完成后需要重启服务器 命令 /sbin/nginx -s reload ecs服务器安装node 使用nvm安装多版本的node NVM(Node Version Manager)是Node.js的版本管理软件,使您可以轻松在Node.js各个版本间进行切换。适用于长期做 node 开发的人员或有快速更新node版本

Can't use NVM from root (or sudo)

荒凉一梦 提交于 2019-11-27 10:13:17
I've mentioned that my application uses different version of NodeJS when running from sudo . $ node -v v0.10.23 $ sudo node -v v0.11.8-pre This v0.11.8-pre caused me some problems, so I definitely don't want to use it, but I can't change it for root. $ sudo nvm use v0.10.23 sudo: nvm: command not found I've tried to install nvm from root user, but got error "NVM already installed", but still nvm not found when running from sudo . What is my problem? Venkat Selvan The below list of commands (source: digitalocean ) seems to fix the problem n=$(which node); \ n=${n%/bin/node}; \ chmod -R 755 $n

Node Version Manager install - nvm command not found

淺唱寂寞╮ 提交于 2019-11-27 09:57:37
I am trying to install NVM as per these instructions I typed in this command in terminal: $ curl https://raw.github.com/creationix/nvm/master/install.sh | sh After running the install, I restart the terminal and attempt to install Node.js with this command: $ nvm install 0.8 but I get the response: -bash: nvm: command not found I'm not sure what I am doing wrong here. Additional Info-- I've been looking around for solutions from other posts and forums. I found another solution using $ git clone git://github.com/creationix/nvm.git ~/.nvm but this times out every time I attempt that. Any help