/** * @file * * * User: marand * Date: 04/09/15 S * Time: 08:57 */ /** * @param IncomingMessages req * @param ServerResponse res * @param function next */ WebApp.connectHandlers.use('/hello', function (req, res, next) { res.writeHead(200); res.end("Hello from Meteor " + Meteor.release); PushFeed.insert({"timestamp": new Date()}); });