nodejs web framework

nodejs web framework

java 里面有spring, springboot
python 里面web server 有falsk, django
nodejs对应有很多web server framework

1. nodejs 自带http模块

https://nodejs.org/zh-cn/docs/guides/anatomy-of-an-http-transaction/

const http = require('http');

const requestListener = function (req, res) {
  res.writeHead(200);
  res.end('Hello, World!');
}

const server = http.createServer(requestListener);
server.listen(8080);
curl localhost:8080

2. 一些推荐的web framework

从网络上获取的信息。参考维度:github star 大佬站台 google排名 awesome-nodejs
express
koa
egg

你可能感兴趣的:(nodejs)