linux 下安装nodejs

1: 使用nvm安装nodejs
(1)Linux下安装nvm

$ wget -qO- https://raw.github.com/creationix/nvm/v0.4.0/install.sh | sh

(2)使用nvm安装想要安装的版本的nodejs

$ nvm install 6.9

(3)检验nodejs是否安装成功

node -v

(4)对于高版本的node,已经集成了npm,所以可以直接检测npm的存在,不用再独立安装

npm -v

(5)写个小程序跑一下,server.js

  var http = require("http");
  http.createServer(function(request, response) {  
      response.writeHead(200, {"Content-Type": "text/plain"});     
      response.write("Hello World"); 
      response.end();}).listen(8888);

(6)运行server.js

  node server.js
linux 下安装nodejs_第1张图片
运行结果图.png

你可能感兴趣的:(linux 下安装nodejs)