Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to serve HTTP requests over meteor

I am creating a live streaming application using meteor. Currently I have a need to create a live transcoding option, so I am trying to integrate this node.js module with our meteor application: https://github.com/mifi/hls-vod. However, the way it works is that you actually call the app.get(hls/) from your HTML5 video tag's src. I am wondering if there is a way to expect the call to this get using meteor. Since I can't integrate express with meteor I am having some trouble doing this. I am wondering if there is a way to have meteor receive HTTP requests and send back data as per the node module.

like image 935
user2009114 Avatar asked Feb 25 '13 02:02

user2009114


2 Answers

This post has been updated

To server http requests over meteor you need a router. I would recommend ironRouter. There was meteor router but Tom Coleman also built ironRouter.

You can use something like this:

Router.map(function () {


this.route('serverFile', {
    path: '/pathonserver',

    action: function () {
      console.log(this.params); //Contains params

      this.response.writeHead(200, {'Content-Type': 'text/html'});
      this.response.end('hello from server');
    }
  });
});

Hopefully that should get the route working similar to the express router.

like image 173
Tarang Avatar answered Oct 03 '22 16:10

Tarang


Meteor Router is now deprecated for Iron Router.

See here for Server Side Routing with Iron Router

like image 20
Arunoda Susiripala Avatar answered Oct 03 '22 16:10

Arunoda Susiripala