node的http请求

 //node的http服务

 'use strict'
var http = require('http')
var server = http.createServer(function (request,response) {
response.writeHead(200,{'Content-Type':'text/html'});
response.end('<h1>我的第一个node Http程序请求</h1>')
})
server.listen(8080);
console.log('Server is running at http://127.0.0.1:8080/') // 运行结果:
// $ node hello.js
// Server is running at http://127.0.0.1:8080/
// 不关闭命令提示符,打开浏览器:localhsot:8080得到服务器响应内容:我的第一个node Http程序请求
上一篇:Hive中知识点


下一篇:阿里云短信验证使用(PHP)