node.js hello world

1、在mac下安装,直接到http://nodejs.org/download/ 下载.pkg包

2、也可以使用git将node源码拉到本地 

git://github.com/ry/node.git      

./configure      

make        

make install


主要版本兼容问题,版本会出现一些莫名的问题

安装好之后查看版本:node -v

运行node.js文件:node ****.js


demo1:

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

浏览器打开:http://127.0.0.1:8808


demo2


你可能感兴趣的:(node.js hello world)