nodejs--helloworld入门

推荐一首特别好听得歌《清平调》,邓丽君和王菲的那一版,特别好听。
https://music.163.com/song?id=31917312&userid=411200993

最近在学习node.js.

1.windows 上64位安装

下载:64 位安装包下载地址 : https://nodejs.org/dist/v4.4.3/node-v4.4.3-x64.msi
安装完成后,创建应用。

2.创建第一个应用

创建步骤:
1.引入required模块:可以使用require指令来载入Node.js模块
2.创建服务器:服务器可以监听客户端的请求,类似于Apache、Nginx等http服务器。
3.接受请求与响应请求:服务器很容易创建,客户端可以使用浏览器或终端发送http请求,服务器接受请求后返回响应数据。

helloworld.js

//引入required模块
var http = require("http");
//创建服务器
http.createServer(function(request,response){
	//发送头部
	response.writeHead(200,{'Content-Type':'text/plain'});
	//发送响应数据
	response.end('hello , world\n');
}).listen(8888);

//终端打印以下信息
console.log('Serve running at http://127.0.01:8888/');

第一个node.js应用创建完成后,在控制台运行,该helloworld.js文件要放到nodejs的安装目录下。

//输入命令运行
node helloworld.js
//回车打印出语句
Server running at http://127.0.0.1:8888/

运行成功后,在浏览器访问http://127.0.0.1:8888,看到一个hello ,world的网页。
第一个nodejs应用创建成功。

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