介绍在Mac, Ubuntu,Centos以及Windows下安装Node.js

编程技术  /  houtizong 发布于 3年前   60
下载

源:http://mirrors.163.com/cygwin/


下面分别介绍在Mac, Ubuntu,Centos以及Windows下安装Node.js.

--------------------------------
Mac

在Mac下,如果你喜欢用homebrew,那么只用一行就可以装好:

brew install node

否则,只能考虑手工安装了,步骤如下:

        安装Xcode
        安装git
        运行下面的命令行编译node.js

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

--------------------------------

Ubuntu

        安装依赖包

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

        运行下面的命令行:

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


--------------------------------
Windows

用cygwin来安装node,步骤如下:

        安装cygwin
        在cygwin的目录下,运行setup.exe安装下面列表中的包
            devel → openssl
            devel → g++-gcc
            devel → make
            python → python
            devel → git
        运行cygwin
        运行下面的命令行:

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


--------------------------------
Centos

yum install gcc-c++ openssl-devel
wget --no-check-certificate https://github.com/ry/node/tarball/v0.3.3
tar -xzvf ry-node-v0.3.3-0-g57544ba.tar.gz
cd ry-node-v0.3.3-0-g57544bac1
./configure
make
make install

--  Hello Node.js!

写一段小程序例如hello_node.js来验证安装是否正确:

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

用node来运行这段代码

node hello_node.js
Server running at http://127.0.0.1:8124/

现在,用浏览器打开 http://127.0.0.1:8124/ , 应该能够看到一条好消息。
--------------------------------
参考文档

<a href="http://howtonode.org/how-to-install-nodejs">How to Install Node.js</a>
--------------------------------

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客