码迷,mamicode.com
首页 > Web开发 > 详细

NodeJS学习第一季-HelloWorld

时间:2015-07-12 14:25:23      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

在node-demo 的目录中创建一个index.js

//导入需要的包
var http = require("http");
//创建HTTP服务
http.createServer(function (request, response) {

	// Send the HTTP header 
	// HTTP Status: 200 : OK
	// Content Type: text/plain
	response.writeHead(200, {‘Content-Type‘: ‘text/plain‘});

	// Send the response body as "Hello World"
	response.end(‘Hello World\n‘);
}).listen(8081);

// Console will print the message
// 访问地址
console.log(‘Server running at http://127.0.0.1:8081/‘);

在 命令行工具中 输入 node index.js 回车

系统会打印 

Server running at http://127.0.0.1:8081/

这是在浏览器访问 此地址。页面中会显示 Hello World 程序运行成功!

NodeJS学习第一季-HelloWorld

标签:

原文地址:http://my.oschina.net/xiax/blog/477533

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!