Nodejs 学习(一)
1, hello world console. log ( 'hello world' ); 这是在后台打印hello world, 没什么意义, 以为nodejs主要应用于web 服务端, 所以可以使用下面的代码在浏览器上显示hello world. var http = require ( 'http' ); http.createServer( function (request, response) { response.writeHead( 200 ,{ 'Content-type' : 'text/html' }) response.write( 'Hello World' ); console.log( 'hehe' ) response.end( '' ) }).listen( 80 ); console.log( 'Server is running at 127.0.1.1:80' ) 其中 var http=requre('http') 引入http模块,类似python 中import。http.createServer函数时用来创建一个HTTP服务器, 并将requestListener作为reqeust事件的 监听函数 。 语法为 http .createServer ( [requestListener] ) 接收参数: requestListener