Skip to content

Commit

Permalink
re-doing makemehapi for v.0.2.2 check
Browse files Browse the repository at this point in the history
  • Loading branch information
nkamc committed Jul 1, 2014
1 parent 0e46f27 commit b7ab823
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,6 @@ By chosing Hapi you are opting for the jet-engine.
Make up your own mind on whether you feel that using code written for Walmart
goes against your ethics. <br />
If you find a *better* open-source Node.js stack that fits your needs,
please [tell me](https://twitter.com/nelsonic) about it!
*please* ***[tell me](https://twitter.com/nelsonic)*** about it!

http://www.brainyquote.com/quotes/topics/topic_happiness.html
12 changes: 12 additions & 0 deletions makemehapi/01-HELLO_HAPI.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var Hapi = require('hapi');
var server = Hapi.createServer('localhost', Number(process.argv[2] || 8080));

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

server.start();
5 changes: 5 additions & 0 deletions makemehapi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Observations While Doing `makemehapi` v.0.2.2

Lack of clarification as to what Hapi ***is*** in the README.
(sure, there's a link but a one-line intro would be beneficial)

0 comments on commit b7ab823

Please sign in to comment.