node 基本框架2

Posted 煮一杯开水

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node 基本框架2相关的知识,希望对你有一定的参考价值。

//创建一个HTTP服务器
var http = require(‘http‘);
//创建一个服务
var server = http.createServer(function(request,response){
//处理请求和相应
//第一个参数代表客户 第二个代表服务器
//返回request客户端
console.log(request.url);
response.writeHeader(200,{
‘content-Type‘:‘text/html‘,//告诉客户端我给你的是什么格式
‘key1‘:‘value1‘
});
//向响应体内放数据
response.write(‘<h1>lala</h1>‘);
//请求完了滚吧
response.end();
});
//启动服务
server.listen(8888,function(){
console.log(‘成功监听8888端口‘);
});

以上是关于node 基本框架2的主要内容,如果未能解决你的问题,请参考以下文章

node基本框架

Node.jsExpress框架的基本使用

node基础3--express框架

express框架的基本使用

Node.js-Koa2框架生态实战-从零模拟新浪微博 完整教程

node.js中 koa 框架的基本使用方法