首页 > 编程 > JavaScript > 正文

Node.js 服务器端应用开发框架 -- Hapi.js

2019-11-20 14:18:57
字体:
来源:转载
供稿:网友

Hapi.js 是一个用来构建基于 Node.js 的应用和服务的富框架,使得开发者把重点放在便携可重用的应用逻辑而不是构建架构。内建输入验证、缓存、认证和其他 Web 应用开发常用的功能。

示例代码:

var Hapi = require('hapi');// Create a server with a host and portvar server = new Hapi.Server('localhost', 8000);// Add the routeserver.route({ method: 'GET', path: '/hello', handler: function (request, reply) { reply('hello world'); }});// Start the serverserver.start();

附上github地址 https://github.com/spumko/hapi

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表