How to use URL parameters using Meteorjs
How can I use URL parameters with meteor. The URL could look like this: http://my-meteor.example.com:3000?task_name=abcd1234 I want to use the 'task_name' (abcd1234) in the mongodb query in the meteor app. eg. Template.task_app.tasks = function () { return Tasks.find({task_name: task_name}); }; Thanks. You are probably going to want to use a router to take care of paths and rendering certain templates for different paths. The iron-router package is the best one available for that. If you aren't using it already I would highly recommend it. Once you are using iron-router, getting the query