一.Node安装地址:
二.Node第一个应用实例
启动webnode.js应用:
node webnode.js
webnode.js代码:
var http = require('http'); http.createServer(function (request, response) { // 发送 HTTP 头部 // HTTP 状态值: 200 : OK // 内容类型: text/plain response.writeHead(200, {'Content-Type': 'text/plain'}); // 发送响应数据 response.end('Pcbren welcome your first node application '); }).listen(8881); // 终端打印如下信息 console.log('Server running at http://127.0.0.1:8881/');
三.Node运行后效果
四.小结
也是对新技术的一个尝试吧,就目前而言nodejs对目前工作上应用的技术目前用不上,
每种语言都有它适合的领域, 后续不断探索,挖掘出可以有施展的项目上加应用。