0.0.5 • Published 4 years ago

incremental-dom-string v0.0.5

Weekly downloads
617
License
BSD-3-Clause
Repository
-
Last release
4 years ago

Incremental DOM string

npm.io

Setup

npm install --save incremental-dom-string

Usage

The string to be rendered is described with the incremental node functions, elementOpen, elementClose and text. For example, the following function:

var IncrementalDOM = require('incremental-dom-string');

const output = IncrementalDOM.renderToString(() => {
  IncrementalDOM.elementOpen('div');
    IncrementalDOM.text('Hello world');
  IncrementalDOM.elementClose('div');
});

console.log(output);

where output would correspond to

<div>Hello world</div>