yoYoify is a Browserify transform that optimizes nanohtml template strings. It parses your code and converts tagged template literals (using nanohtml, choo/html, or bel) into highly efficient DOM creation code, reducing the overhead of parsing HTML strings at runtime.
To use it, add it to your Browserify build pipeline. It automatically detects supported view imports and handles transpiled code from Babel or Buble.
Note: The transform works by replacing template literals with a specialized closure that uses append-child.js and set-attribute.js for performance.
// Example Browserify usage (conceptual)
// browserify js/app.js -t yoYoify > bundle.js