Alright. I'm burdened by SEO reasons to amend an app done in expressjs/Ractive to support server-side rendering.
The front end side of things is packaged up using gulp and everything's organized into a clean nested component structure.
Is there any way to leverage most of what's in place to also render some of those components on the server? I've been hacking with ractive-render, but the documentation leaves so much to be desired and honestly I'm afraid it's gonna' leave me marooned in the end.
My components, for the most part, contain way too much template to slap inline on the component definition. They are organized in a folder hierarchy with the lowest level being an individual component folder containing an index.js component definition, and a template.html template file. I use ractivate for the gulp/browserify process to pull those .html template files in when building.
I'm looking for a solution that will allow me to package up the components to use both with browserify/gulp as well as with something like ractive-render to render them in express.
It's cool if it's not possible, but my research so far has been great at granting me headaches.