Server-side rendering for DoneJS applications
npm install done-server-side-render

Server-side rendering for users of StealJS and CanJS.
``js
var render = require("done-server-side-render")({
config: __dirname + "/public/package.json!npm",
main: "index.stache!"
});
render("/orders").then(function(html){
// Do something with html`
});
A module used to register assets:
`js
var register = require("asset-register");
register("module/name", "css", function(){
return HTMLElement;
});
`
#### register(moduleName, type, assetMaker)
Register takes the moduleName to register, a type associated with it, and a function that when called returns an HTMLElement.
#### register(type, assetMaker)
If registering an asset not associated with a particular module, supply only the type and a function that when called returns an HTMLElement.
When rendering in Node, a special asset helper is included. This is used to append assets within your template:
`handlebars
{{asset "css"}}
...
`
In this example, all CSS (either