I am new to web design and was shocked by the demo on the Meteor website and would like to use it. So far I have been using the Google App Engine and handling a dynamic URL in the main class, I would write something like this:
app = webapp2.WSGIApplication([('/[0-9]', HandlePost)], debug=True)
This would match any URL with numbers from 0 to 9 at the end of a handler class that would load an HTML page with the appropriate data for the page using a template engine such as steering wheels.
How do I do something like this in Meteor?
source
share