Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best practices approach to multiple views in meteor?

Tags:

meteor

Every tutorial/example i can find for meteor shows a single view application. I would like to build something a little more complex. I'm unclear how to approach multiple views...preferably in a way that's somewhat scalable?

like image 792
Brian Avatar asked Jun 11 '12 15:06

Brian


1 Answers

The iron-router package lets you access different views (layouts) by nice, REST-ful human-friendly clean URLs. It supports parameters in the URL, "loading" templates, waiting for subscriptions to finish loading, before and after hooks etc.

like image 172
kenyee Avatar answered Oct 19 '22 23:10

kenyee