Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

formation-js

flow and stack layout library

readme

Formation

A flow and stack layout library. Pairs well with Laconic.

Formation can be used via CommonJS (Browserify):

var form = require('formation-js');
form.stack(...);
form.flow(...);

or by simply including the script, in which case it exposes its functions under $.el. In this case, you must also include Laconic, which is a dependency:

<script src="laconic.js"></script>
<script src="formation.js"></script>
<script>
  $.el.stack(...);
</script>

The NPM package name is formation-js because formation was taken. The initials refer to Formation's author, Joe Stelmach.