0.0.1-security • Published 10 years ago

virtual-html v0.0.1-security

Weekly downloads
67
License
ISC
Repository
github
Last release
10 years ago

virtual-html

Convert given HTML into Virtual DOM object

Install

$ npm install virtual-html

Usage

Async:

var html = '<div class="foo bar" style="color: red; background: yellow;" data-yo="123">yo</div>';

var virtual = require('virtual-html')

virtual(html, function (error, dom) {
  if (error) throw error

  dom.tagName
  // => 'div'

  dom.children[0].text
  // => 'yo'

  dom.properties.dataset.yo
  // => 123
})

Sync:

var html = '<div class="foo bar" style="color: red; background: yellow;" data-yo="123">yo</div>';

var virtual = require('virtual-html')

// synchronous interface
var dom = virtual(html)

dom.tagName
// => 'div'

dom.children[0].text
// => 'yo'

dom.properties.dataset.yo
// => 123
2.0.0

10 years ago

0.0.1-security

10 years ago

1.3.37

10 years ago

1.3.0

11 years ago

1.2.0

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago

0.0.1

12 years ago

0.0.0

12 years ago