首頁  >  文章  >  web前端  >  Node.js 伺服器端應用程式開發框架 -- Hapi.js_node.js

Node.js 伺服器端應用程式開發框架 -- Hapi.js_node.js

WBOY
WBOY原創
2016-05-16 16:40:572048瀏覽

Hapi.js 是一個用來建構基於 Node.js 的應用程式和服務的富框架,讓開發者把重點放在便攜可重用的應用邏輯而不是建構架構。內建輸入驗證、快取、認證和其他 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();

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn