首页  >  文章  >  web前端  >  Node.js 初试啼声

Node.js 初试啼声

黄舟
黄舟原创
2017-01-17 15:32:031286浏览

查看 node 版本

[code]node -v

创建第一个 nodejs 程序

[code]helloWorld.js
console.log("Hello World");

运行时,文件名大小写不限

交互模式: 

在命令行输入:
node
[code]> console.log('hello');

创建第一个应用 

步骤: 

一、用require引入模块HTTP 

二、创建服务器 http.createServer() 

三、接受和响应请求

server.js
[code]var http = require('http');

http.createServer(function (request, response) {
    // 发送 HTTP 头部
    // 状态码 200
    // 内容类型 text/plain
    response.writeHead(200, { 'Content-Type' : 'text/plain'});

    // 发送响应数据---浏览器输出
    response.end('Hello World');
}).listen(8888);    // 监听8888端口
// 终端输出
console.log('服务器监听8888端口')

终端运行:

[code]node server.js

浏览器运行:

[code]http://localhost:8888/server.js

254.png

以上就是Node.js 初试啼声的内容,更多相关内容请关注PHP中文网(www.php.cn)!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn