whatwg-flora-tmpl

1.0.3 • Public • Published

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>${* 2}</li>`)};
    </ul>
  `;

License

BSD 2 Clause

Readme

Keywords

Package Sidebar

Install

npm i whatwg-flora-tmpl

Weekly Downloads

22

Version

1.0.3

License

BSD-2-Clause

Unpacked Size

49.1 kB

Total Files

18

Last publish

Collaborators

  • kinlan