Last time I checked, Meteor didn't support server side rendering. What's the scenario now? Are there companies that are building universal JavaScript apps with Meteor?
You might find this useful: meteorhacks.com/server-side-rendering
It needs you to write client side template for server and render them using helpers. This is based on Blaze and doesn't provide a completely viable solution.
Also have a look at server side rendering with FlowRouter and React: kadira.io/blog/meteor/meteor-ssr-support-using-fl…
Stephan de Vries
Full stack developer, enthusiastic about new technologies.
Server side rendering is on the Meteor roadmap, but is probably not going to be implemented soon. Kadira wrote a blogpost about it here in which he managed to get SSR working with FlowRouter (React only). This means that it's technically possible to build Isomorphic apps.
As you may have guessed: Kadira is now using SSR to create isomorphic apps. You can see it in action at kadira.io. Other than that I am not aware of other companies using Meteor to build Isomorphic apps with.