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

node.js服务器搭建

时间:2018-12-31 22:40:13      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:fun   ext   char   搭建   header   har   htm   func   解决   

//1.导入http 核心模块
const http = require("http");
//2.调用http.createServer 方法,创建一个web 服务器对象
const server = http.createServer();
//3.server 服务器 绑定 监听函数,通过on 方法,绑定request 事件,来监听 客户端的请求
// req 表示 客户端 相关的参数 
//res 表示 和 服务器相关的参数 和方法
server.on("request",function(req,res){
    //解决中文乱码
    res.writeHeader(200,{
        "Content-Type":"text/html; charset=utf8"
    });
    if(req.url === "/about.html"){
        res.end("你好,这是哔哩哔哩");
    }else if(req.url === "/movie.html"){
        res.end("233333333333")
    }else{
        res.end("没有此页面")
    };
    res.end("hello world")
});
//4.server.listen 来启动服务器
server.listen(3000,function(){
    console.log(‘server running at http:/127.0.0.1:3000‘);
    
});

 

node.js服务器搭建

标签:fun   ext   char   搭建   header   har   htm   func   解决   

原文地址:https://www.cnblogs.com/tuziling/p/10203421.html

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