Ability to render Incremental DOM virtual elements into strings on the server and the client.
npm install incremental-dom-string
```
npm install --save incremental-dom-string
The string to be rendered is described with the incremental node functions, elementOpen, elementClose and text. For example, the following function:
`js
var IncrementalDOM = require('incremental-dom-string');
const output = IncrementalDOM.renderToString(() => {
IncrementalDOM.elementOpen('div');
IncrementalDOM.text('Hello world');
IncrementalDOM.elementClose('div');
});
console.log(output);
`output
where would correspond to
`html``Hello world