//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程序请求
相关文章
- 08-25备忘 - HTTP 请求状态码
- 08-25webapi使用System.Web.Http.Cors配置跨域访问的两种方式
- 08-25EBS 开发中如何动态启用和禁止请求(Current Request)的参数
- 08-25golang http请求时设置代理ip
- 08-25http请求连接
- 08-25IE的F12开发人员工具不显示 转载自:http://blog.csdn.net/longyulu/article/details/8749705
- 08-25eladmin后台管理系统(后端)——登录请求的实现
- 08-25http跨域时的options请求
- 08-25常见的请求头和响应头
- 08-25XMLHttpRequest HTTP请求的返回码为0 http status = 0