Node.js 服务器端框架:Hapi.js
jopen
10年前
Hapi.js 是一个用来构建基于 Node.js 的应用和服务的Rich框架,让开发者把精力放在编写可复用的应用逻辑而不是构建架构。内建输入验证、缓存、认证和其他 Web 应用开发常用的功能。
示例代码:
var Hapi = require('hapi'); // Create a server with a host and port var server = new Hapi.Server('localhost', 8000); // Add the route server.route({ method: 'GET', path: '/hello', handler: function (request, reply) { reply('hello world'); } }); // Start the server server.start();