codeur66 / hapi-project

Sample Project of Node.js with HapiJS and Boostrap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sample Project of Node.js with Hapi and Boostrap

What is Hapi JS ?

Its a Node.JS Framework. Read more about Hapi

Whats Included ?

We're using :

  • Handlebars template Engine
  • MongoDB or MySQL ? coming up next.....
  • Sample of Layouting
  • Module as Hapi Plugins
  • Good (plugins) for Logging
  • Have it your way...

Motivation

There's no special motivation. Its because I was asked to test the Hapi Node Framework for a Project so I created this sample.

Picture

Code Snippets

Running Server

var Hapi = require('hapi');
var server = new Hapi.Server();
var Good = require('good');
var Path = require('path');

/**
 * Lets the server run on this Host and Port
 */
server.connection({host:'127.0.0.1',port:3000});

//others code will be here.....

/**
 * running Http Node Server with Good Plugins for Logging  
 */
server.register({
	
	register : Good,
	options : {
		
		reporters : [{
			reporter : require('good-console'),
			events : {
				
				response : '*',
				log:'*'
			}
		}]
	}
	
}, function(error) {
	
	if(error) {
		
		throw error;
	}
	
	/**
	 * Starting Server
	 */
	server.start(function(){
	
		console.log("Server running on", server.info.uri);
	});
	
});

Handling Static files

/**
 * Routing Static Pages [JS, Css, Images, etc]
 */
server.register(require('inert'), function(err) {
	
	if (err) {
		
		throw err;
	}
	
	server.route({
		method : 'GET', path : '/public/{path*}', handler : {
			directory : {
				path : './public',
				listing : false,
				index : false
			}
		}
	});
	
});

Hapi Basic Route

/**
* Default route
*/
server.route({
	
    method: 'GET',
    path: '/',
    handler: function (request, reply) {
		
        reply('Hello, world!');
    }
});

Installation

Just Clone it to your local machine and get inside the Project root

Install Dependecy modules

npm install

node server.js

Open in your browser

http://127.0.0.1:3000

Tutorial

Sample Project of Node.js with Hapi and Boostrap

About

Sample Project of Node.js with HapiJS and Boostrap


Languages

Language:CSS 94.3%Language:HTML 3.2%Language:JavaScript 2.4%