美文网首页
linux 下安装nodejs

linux 下安装nodejs

作者: 艾石溪 | 来源:发表于2016-12-12 10:21 被阅读17次

    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
    
    运行结果图.png

    相关文章

      网友评论

          本文标题:linux 下安装nodejs

          本文链接:https://www.haomeiwen.com/subject/bplmmttx.html