flora-tmpl
v1.0.0
Published
Streaming templates for node
Downloads
61
Readme
flora
flora-tmpl on npm.
Streaming templates.
Why
HTML is a format that can be streamed. Meaning the browser can start parsing and showing parts of a web page before the full thing has been downloaded. Your application probably has things it needs to do that take some time; like make database requests.
Parts of your page depend on this data, but much of it does not. Flora allows you to write templates that get to the client as quickly as possible, because only the parts that need to wait, do wait.
Install
yarn add flora-tmpl
Usage
const { html, map } = require('flora-tmpl');
const streamArray = require('stream-array');
function template({items}) {
return html`
<h1>Todos</h1>
<ul>
${map(items, item => (
html`<li>Item ${item}</li>`
))}
</ul>
`;
}
template({
items: streamArray([1, 2, 3])
})
.pipe(...)
License
BSD 2 Clause