Created
July 11, 2015 20:22
-
-
Save jstrimpel/3b2770558b2b397f616f to your computer and use it in GitHub Desktop.
hapi hello world
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Hapi = require('hapi'); | |
// Create a server with a host and port | |
var server = new Hapi.Server(); | |
server.connection({ | |
host: 'localhost', | |
port: 8000 | |
}); | |
// Add the route | |
server.route({ | |
method: 'GET', | |
path:'/hello', | |
handler: function (request, reply) { | |
reply('hello world'); | |
} | |
}); | |
// Start the server | |
server.start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment