Node.js学习4~搭建web服务的2种常见方式,附上代码和运行效果

Posted 秋9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js学习4~搭建web服务的2种常见方式,附上代码和运行效果相关的知识,希望对你有一定的参考价值。

目 录

1.使用http搭建web服务

2.使用express搭建web服务


1.使用http搭建web服务

var http = require('http');
http.createServer(function (request, response) 
 response.writeHead(200, 'Content-Type': 'text/html; charset=utf-8');
response.write('Hello World');
 response.end();//不写则没有http协议尾
).listen(8080);
console.log('Server running at http://localhost:8080/');

运行结果如下:

 

2.使用express搭建web服务

express需要提前安装一下,安装命令如下:

D:\\work\\nodejs\\2mysql>npm install express

added 50 packages in 2s

代码如下:

//引用express
var express = require("express");
//express定义为app
var app = express();
//app的get传输方法,当网站为localhost: 8080/页面相应 express Hello World!!!!!
app.get("/",function(req,res)
    res.send("express Hello World");
);
//设置端口为8080,加载web服务器启动
app.listen(8080,function()
    console.log("Server running at http://localhost:8080/")
)

运行结果如下:

 

 

以上是关于Node.js学习4~搭建web服务的2种常见方式,附上代码和运行效果的主要内容,如果未能解决你的问题,请参考以下文章

如何用nodejs搭建web服务器

学习 node.js 搭建web服务器

利用node.js搭建简单web服务器的方法教程

node.js搭建简单服务器,用于前端测试websocket链接方法和性能测试

web学习-Node.js入门学习

慕课网学习node.js