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

使用Node.js原生代码实现静态服务器

时间:2019-08-15 09:43:40      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:div   模块   响应头   结束   server   set   xxxx   编码   require   

const http=require (‘http‘);  //导入模块

const PORT=3000; //设置端口号3000(3000 5000 6000  9000)

const HOSTNAME=‘localhost‘; //或"127.0.0.1"

 

http.createServer((req,res)=>{ 

  res.writeHead(‘Content-type:text/html,charset:utf-8‘);

  res.writeHead( 200, { //设置响应头 状态码!!!!!!!!!!!
  ‘Content-Type‘: ‘text/html;charset=utf8‘  //字符编码 ‘Content-type’:‘text/html;charset:utf-8‘ ;
  })

  res.write(‘xxxxxxxx‘);

  res.end(‘结束xxx‘)

      

}).listen(PORT,HOSTNAME,()=>{

console.log(`The Server is running at: http://${ HOSTNAME }:${PORT}`)

  })

 

使用Node.js原生代码实现静态服务器

标签:div   模块   响应头   结束   server   set   xxxx   编码   require   

原文地址:https://www.cnblogs.com/zhangzhouy/p/11355753.html

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