0.2.0 • Published 5 years ago

dommo v0.2.0

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

view on npm npm module downloads Build Status Dependency Status js-standard-style

dommo

An isomorphic, load-anywhere function to convert an HTML string to a DOM tree.

import dommo from './node_modules/dommo/index.mjs'

/* passing in HTML with a single root returns an element */
const el = dommo('<some-element>something</some-element>')
document.body.appendChild(el)

/* passing in HTML with multiple root elements returns a DocumentFragment */
const frag = dommo('<some-element>something</some-element><some-element>something</some-element>')
document.body.appendChild(frag)

Load anywhere

This library can be loaded anywhere, natively without transpilation.

Node.js:

const dommo = require('dommo')

Within Node.js with ECMAScript Module support enabled:

import dommo from 'dommo'

Within a modern browser ECMAScript Module:

import dommo from './node_modules/dommo/index.mjs'

Old browser (adds window.dommo):

<script nomodule src="./node_modules/dommo/dist/index.js"></script>

© 2018-19 Lloyd Brookes \75pound@gmail.com\.