Coder Social home page Coder Social logo

hapi's Introduction

A rich framework for building restful API services. hapi is a configuration-centric framework in which authentication requirements, input validation, data caching and pre-fetching, developer documentation, and other essential facilities are provided out-of-the-box and enabled using simple JSON configuration objects. hapi enables developers to focus on writing reusable business logic instead of spending time with everything else.

For the latest updates and release information follow @hapijs on twitter.

Current version: 0.14.1

Build Status

Getting started

To demonstrate a basic example we will be creating a "hello world" service with a single API endpoint.

Hello World Server

Start by creating a package.json by running

npm init

Now install hapi and have it saved to your package.json dependencies by running

npm install hapi --save

Next create an 'index.js' file and add the following contents to it:

var Hapi = require('hapi');

// Create a server with a host and port
var server = new Hapi.Server('localhost', 8000);

// Define the route
var hello = {
    handler: function (request) {
    
        request.reply({ greeting: 'hello world' });
    }
};

// Add the route
server.route({
    method: 'GET',
    path: '/hello',
    config: hello
});

// Start the server
server.start();

Start the server with node . and navigate to the website at 'http://localhost:8000/hello' in a browser and you will see the following output:

{"greeting":"hello world"}

Hello World Server + Validation

To demonstrate one of the more powerful features in hapi we will change the 'hello' route to only respond whenever a 'name' is present on the querystring. Change the 'index.js' so that the 'hello' config object looks like the following:

var hello = {
    handler: function (request) {
    
        request.reply({ greeting: 'hello ' + request.query.name });
    },
    validate: { 
        query: {
            name: Hapi.Types.String().required()
        }
    }
};

When you start the server with node . and navigate to 'http://localhost:8000/hello' you will get a 400 response with an error explaining that 'name' is required. When the 'name' is omitted from the querystring the handler will not be called. However, if you do provide a 'name' it will be echoed out in the response. If you request 'http://localhost:8000/hello?name=John' then you will get the following response:

{"greeting":"hello John"}

To learn more about the various validation options you can read the validation section in the reference.

Hello Static Server

The hapi route handler can be used to easily serve files, directories, render templates, and even proxy requests. In this example the 'directory' handler will be used to create a static site serving files in the 'public' folder. Remove the hello variable and make the server.route command look like the following:

server.route({
    method: 'GET',
	path: '/{path*}',
	handler: {
		directory: { path: './public', listing: false, index: true }
	}
});

Create a folder named 'public' and add a 'index.html' file in the folder with the following contents:

<html>
    	<head><title>Hello Static</title></head>
	<body>
		Hello Static
	</body>
</html>

Now when you request 'http://localhost:8000' you will see the html page rendered. You can add other files in this folder and they will be served. This is a good solution for serving static assets like images and css files.

Hello Templates Server

To demonstrate how to use hapi to render templates we will be creating a template and rendering it using the handlebars engine. Begin by installing handlebars by running the following npm command:

npm install handlebars

Next create a directory named 'templates' that will contain the template files. In this directory create a 'index.html' with the following contents:

<html>
	<head><title>{{greeting}}</title></head>
	<body>
		{{greeting}}
	</body>
</html>

The next step is going to be to tell the hapi server to use templates and the handlebars engine. After this, the route handler will be updated to render the template using an object that contains a 'greeting' property we want displayed. Change the 'index.js' file so that it looks like the following:

var Hapi = require('hapi');

var options = {
    views: {
        path: './templates',
        engine: {
            module: 'handlebars'
        }
    }
};

// Create a server with a host, port, and options
var server = new Hapi.Server('localhost', 8000, options);

// Define the route
var hello = {
    handler: function (request) {
    
    	// Render the view with the custom greeting
        request.reply.view('index.html', { greeting: 'hello world' }).send();
    }
};

// Add the route
server.route({
    method: 'GET',
    path: '/',
    config: hello
});

// Start the server
server.start();

When you run the server with node . and view the homepage you will see the custom greeting message rendered. More information on using templates with hapi can be found in the views section of the API Reference.

hapi's People

Contributors

ajoslin avatar bmille29 avatar dalmaer avatar dpedley avatar fmarier avatar geek avatar joaojeronimo avatar maoyang avatar mikeal avatar nvcexploder avatar pborreli avatar thegoleffect avatar thesillyhippo avatar wolfeidau avatar zaach avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.