哈哈,还是Node.JS哦
现在我们来看看位Node.JS些的Express webkuangjia
一. 安装express
npm install express -g --save
npm install body-parser --save
npm install cookie-parser --save
npm install multer --save
二. 使用
//server.js
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World');
})
var server = app.listen(8080, function () {
var host = server.address().address
var port = server.address().port
console.log("Access http://%s:%s", host, port)
})
启动服务
node server.js
查看
浏览器中输入
http://192.168.40.131:8080/
结果
Finally:
看到了吧,就这么任性。
也叫复杂问题简单化了吧
其实,真正让你兴奋的应该是这句res.send('Hello World');,是吧?不用管其它的,你这就是在搞http响应呢。
哈哈哈
祝你愉快!