Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add hapi server boilerplate #7

Merged
merged 1 commit into from
Feb 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2016 John Whiles

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
40 changes: 40 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "hapi-boilerpalte",
"version": "1.0.0",
"description": "a basic hapi server",
"main": "index.js",
"dependencies": {
"handlebars": "^4.0.6",
"hapi": "^15.2.0",
"inert": "^4.0.2",
"joi": "^10.0.1",
"vision": "^4.1.0"
},
"engines": {
"node": "6.9.1"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"supertest": "^2.0.1",
"tape": "^4.6.3"
},
"scripts": {
"test": "node test/index.test.js",
"start": "node src/starter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jwhiles/hapi-boilerpalte.git"
},
"author": "John Whiles",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jwhiles/hapi-boilerpalte/issues"
},
"homepage": "https://github.com/Jwhiles/hapi-boilerpalte#readme"
}
3 changes: 3 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
h1 {
color: red;
}
11 changes: 11 additions & 0 deletions public/static.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Static Land</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<h1>This is a static file</h1>
</body>
</html>
16 changes: 16 additions & 0 deletions src/handlers/home.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const homeHandler = (request, reply) => {
return reply(
`<h1>Hello world</h1><a href="static.html">go to a static page</a>`
);
};

const homeRoute = {
method: 'GET',
path: '/',
handler: homeHandler
};

module.exports = {
homeRoute,
homeHandler
}
13 changes: 13 additions & 0 deletions src/handlers/static.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const staticRoute = {
method: 'GET',
path: '/{file*}',
handler: {
directory: {
path: '.'
}
}
};

module.exports = {
staticRoute
};
9 changes: 9 additions & 0 deletions src/routes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const { homeRoute } = require('./handlers/home.js');
const { staticRoute } = require('./handlers/static.js');

const routes = [
homeRoute,
staticRoute
];

module.exports = routes;
28 changes: 28 additions & 0 deletions src/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Require our modules
const Hapi = require('hapi'); // The server is built on Hapi
const Inert = require('inert'); // Inert allows us to server static files
const Path = require('path'); // Path is used for easily constructing file paths

const routes = require('./routes.js'); // Import our modularised routes

const server = new Hapi.Server();

server.connection({
port: process.env.PORT || 8000,
// Gets our Port, or defaults to locahost in development
host: process.env.IP || '0.0.0.0',
// Gets our IP, or defaults to 0 in development
routes: {
files: {
relativeTo: Path.join(__dirname, '../public')
// Where we want to server static files from
}
}
});

server.register([Inert], (err) => { // We register extra modules like inert here
if (err) { throw err; }
server.route(routes); // Plug the routes we imported earlier into the server
});

module.exports = server;
6 changes: 6 additions & 0 deletions src/starter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const server = require('./server.js');

server.start((err) => {
if (err) { throw err; }
console.log(`server started on ${server.info.uri}`);
});
14 changes: 14 additions & 0 deletions test/handlers/home.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const test = require('tape');
const { homeHandler } = require('../../src/handlers/home.js');

module.exports = () => {
test('Home handler replies with our homepage content', (t) => {
t.plan(1);
const request = (x) => x;
const response = data => data;

t.equal(homeHandler(request, response),
`<h1>Hello world</h1><a href="static.html">go to a static page</a>`,
`response recieved expected data`);
});
};
5 changes: 5 additions & 0 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const homeHandlerTest = require('./handlers/home.test.js');
const serverTest = require('./server.test.js');

homeHandlerTest();
serverTest();
50 changes: 50 additions & 0 deletions test/server.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
const test = require('tape');

const server = require('./../src/server.js');

module.exports = () => {
test(`Server responds sucessfuly to request for homepage`, (t) => {
const options = {
method: 'GET',
url: '/'
};

t.plan(2);

server.inject(options, (response) => {
t.equal(response.statusCode, 200, `should recieve 200 status, (ok)`);
t.equal(response.payload, `<h1>Hello world</h1><a href="static.html">go to a static page</a>`, `should recieve contents of index page`);
server.stop();
});
});

test(`Server sucessfully responds to requests for static files`, (t) => {
const options = {
method: 'GET',
url: '/static.html'
};
t.plan(3);
server.inject(options, (response) => {
t.equal(response.statusCode, 200, `should recieve 200 status, (ok)`);
t.equal(response.payload.length, 227, `should recieve content of static file`);
t.equal(response.headers['content-type'], `text/html; charset=utf-8`,
`content type should be text/html`);
server.stop();
});
});

test(`Server sucessfully responds to requests for css files`, (t) => {
const options = {
method: 'GET',
url: '/css/style.css'
};
t.plan(2);
server.inject(options, (response) => {
console.log(response.headers['content-type']);
t.equal(response.statusCode, 200, `should recieve 200 status, (ok)`);
t.equal(response.headers['content-type'], `text/css; charset=utf-8`,
`content type should be text/css`);
server.stop();
});
});
};