zoukankan      html  css  js  c++  java
  • Ubuntu9.10 安装node.js

    1.安装依赖包

    sudo apt-get install g++ curl libssl-dev apache2-utils
    sudo apt-get install git-core

    在操作过程中出现无法找到libssl-dev 包。

    解决办法

    获取root权限,忘记了密码,修改root密码 

    sudo passwd root

    输入新密码。 

    su -
    apt-get -f install

     若有无法安装libssl则,无错误跳过。

      wget http://launchpadlibrarian.net/60293933/libssl-dev_0.9.8g-16ubuntu3.5_i386.deb
     sudo dpkg -i libssl-dev_0.9.8g-16ubuntu3.5_i386.deb

    安装node.js

    git clone git://github.com/joyent/node.git
    cd node
    ./configure
    make
    sudo make install

     验证:

    在任一路径下建文件hello.js

    var http = require('http');
    http.createServer(function (req, res) {
      res.writeHead(200, {'Content-Type': 'text/plain'});
      res.end('Hello Node.js\n');
    }).listen(8124, "127.0.0.1");
    console.log('Server running at http://127.0.0.1:8124/');

    在终端中输入

    node hello.js

    终端显示为

    Server running at http://127.0.0.1:8124/

    则生成成功可以在浏览器中输入地址http://127.0.0.1:8124/

  • 相关阅读:
    winform 与 html 交互 简单案例
    Winform窗口弹出位置控制
    c#预处理指令
    最简单的数据绑定
    Asp.Net细节性问题精萃
    AjaxUploader使用
    Log4net对文件的支持
    Log4net对数据库的支持
    Log4net使用
    Log4net介绍
  • 原文地址:https://www.cnblogs.com/lecone/p/2362015.html
Copyright © 2011-2022 走看看