1.1.2 • Published 4 years ago

pug-vdom v1.1.2

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

pug-vdom

The pug-vdom can compile a pug template into a render function that can create a virtual dom tree by using a library such as virtual-dom

Install

  npm install pug-vdom

Usage

  var pugVDOM = require('pug-vdom')
  var ast = pugVDOM.ast('mytemplate.pug', './basedir')
  var compiler = new pugVDOM.Compiler(ast)
  var code = compiler.compile()

The code variable contain a render function with this signature:

 function render(context, h) {
  return Array(h(), h(), ...)
 }

The return value is a list of hyperscript node, the hyperscript function (https://github.com/hyperhype/hyperscript) is the one provided as the second parameter.

An convenient function can be used to compile your pug files into directly usable module

var vDom = require('./pug-vdom')
vDom.generateFile('input.pug', 'output.pug.js', './basedir')

Then typically you can use the resulting file like this

var render = require('./output.pug.js') // importing the render function of this template
var h = require('virtual-dom/h') // we use virtual hyperscript function
var diff = require('virtual-dom/diff')
var patch = require('virtual-dom/patch')
var createElement = require('virtual-dom/create-element')
//runtime library is required and puts 'pugVDOMRuntime' into the global scope.
require('pug-vdom/runtime')

var tree = render({variable: 1}, h)
var rootNode = createElement(tree[0]) // we expect only node at the root from our template
document.querySelector('main').appendChild(rootNode)

function liveRender () {
  var newTree = render({variable: 2}, h)
  var domDiff = diff(tree[0], newTree[0])
  patch(rootNode, domDiff)
  tree = newTree
}

If you are using Browserify, a transform is available https://github.com/gryphonmyers/pugvdomify

1.1.2

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

7 years ago