UNPKG

@balderdash/sails-edge

Version:

API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)

14 lines (10 loc) 248 B
/** * Squirt the firehose. */ module.exports = function (sails) { return function publishToFirehose ( data ) { if (sails.config.environment == 'development') { sails.sockets.broadcast('sails_firehose', 'firehose', data); } }; };