whatwg-flora-tmpl
v1.0.3
Published
Streaming templates for node and Web using WhatWG streams. Based on flora-stream
Downloads
19
Readme
flora
whatwg-flora-tmpl on npm.
Streaming templates using WhatWG Streams based on the Flora Node Streams templating engine.
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. Whatwg-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.
This can be used in Node, in a Service Worker or even just the browser.
Install
yarn add whatwg-flora-tmpl
Usage
import template from 'whatwg-flora-tmpl';
const items = [1,2,3,4];
template`
<h1>${items.length} doubles</h1>
<ul>
${items.map(i => template`<li>${i * 2}</li>`)};
</ul>
`;
License
BSD 2 Clause