温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Linux(centos6.0)下安装Node.js以及使用

发布时间:2020-07-02 04:07:18 来源:网络 阅读:470 作者:chenshengang 栏目:web开发

Linux下(centos6.0)安装Node.js

1.wget http://nodejs.org/dist/node-v0.6.9.tar.gz

  tar  zxvf node-v0.6.9.tar.gz

  cd node-v0.6.9

  ./configure --prefix=/usr/local/node

----------安装提示-------------

Checking for program g++ or c++          : not found

Checking for program icpc                : not found

Checking for program c++                 : not found

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

yum install gcc-c++   可以解决

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

  make

  make install

Linux(centos6.0)下安装Node.js以及使用

2.测试

  创建test.js文件,内容如下:

var http = require('http');

http.createServer(function (req, res) {

res.writeHead(200, {'Content-Type': 'text/plain'});

res.end('Hello World\n');

}).listen(1337, "127.0.0.1");

console.log('Server running at http://127.0.0.1:1337/');

执行:node test.js

# /usr/local/node/bin/node  /www/test.js

Linux(centos6.0)下安装Node.js以及使用

在浏览器里输入 http://127.0.0.1:1337/,可以看到 "Hello World"字样,即表示安装成功!注意后面不能加文件名.

Linux(centos6.0)下安装Node.js以及使用

注意事项:

1.客户端只能通过端口访问,不能指定js文件名.

2.监听IP地址可以省略,这样任何地方都可以访问.如果指定了127.0.0.1,则只能在本机才可以访问!

如果要局域网其他机器或者互联网访问

那么自然你需要修改你的侦听ip已经端口,次端口在防火墙要开启

例如80端口,如果此端口被占用你要启用其他端口

var http = require('http');

http.createServer(function (req, res) {

res.writeHead(200, {'Content-Type': 'text/plain'});

res.end('Hello World\n');

}).listen(80, "192.168.1.100");

console.log('Server running at http://192.168.1.100:80/');

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

注意,如果你想要要输出 html 代码到浏览器,请设置 content-type 为 text/html ,如果设置为 text/plain 将只输出文本

response.writeHead(200, {"Content-Type": "text/html;chartset:utf-8"});

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

参考:

http://www.cnblogs.com/rubylouvre/archive/2010/07/15/1778403.html

http://www.cnodejs.org/

http://club.cnodejs.org/topic/4f16442ccae1f4aa27001071

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI