I use React for my front end but I still use Blaze to handle my SEO and email templates. My question is, since Blaze is getting deprecated how will I be able to handle SEO and email with React? From my understanding it is possible to render react templates on the server but I’ve heard that React is much more CPU intensive on the server compared to Blaze.
I just want to hear thoughts people may have that know more about the subject than I do.
I’d suggest using a service like prerender to handle server side rendering for SEO, because then the CPU is on their servers, not yours :] http://guide.meteor.com/deployment.html#seo
Server-side email
It seems like email templates wouldn’t be a big issue for CPU, since it’s very predictable when you generate them, and they probably aren’t terribly complicated (maybe?). Do you think this would be a problem?