hapi
Version:
HTTP Server framework
38 lines (23 loc) • 1.03 kB
JavaScript
// The following initializes a socket.io server.
// The socket.io client JavaScript is located at http://localhost:8080/socket.io/socket.io.js
// To create a new socket.io handshake make a POST request to http://localhost:8080/socket.io/1
// use the resulting session ID for subsequent requests (see https://github.com/LearnBoost/socket.io-spec)
// For example, in the chrome debug console you can create a new WebSocket with the following URI
// 'ws://localhost:8080/socket.io/1/websocket/Ww4ULq6wOTUZYD62v3yu'
// where Ww4ULq6wOTUZYD62v3yu is the session ID
// Load modules
var Hapi = require('../');
var SocketIO = require('socket.io');
// Declare internals
var internals = {};
internals.startServer = function () {
var server = new Hapi.Server(8000);
var helloHandler = function () {
this.reply('Hello');
};
server.route({ method: 'GET', path: '/', handler: helloHandler });
server.start(function () {
var io = SocketIO.listen(server.listener);
});
};
internals.startServer();