For example
server.route({
method: 'GET',
path: '/',
handler: function (request, reply) {
reply(Http.get('http://google.com'));
}
});
Will throw TypeError: Cannot read property 'objectMode' of undefined due to the fact that the http module has _readableState hidden behind a property. This also impacts request and wreck.