0.3.3 • Published 5 years ago

nano-dom v0.3.3

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

nano-dom

A light DOM implementation that can be used to test DOM modification on the server-side. This package contains a simple HTML parser to convert the HTML source code to a DOM structure. It provides only the most basic DOM API to be still useful.

Installation

$ npm i nano-dom -D

Usage

import Document from 'nano-dom';

const document = new Document('<div class="greeting">Hello world!</div>');

console.log(document.querySelector('.greeting').innerHTML); // Hello world!

Support for custom tags

You can configure which custom tags are allowed to be self-closing ones. If not configured, you may have to close them explicitly.

import { options }, Document from 'nano-dom';

options.customSelfClosingTags = ['chicken', 'run'];

const document = new Document(`
    <div class="yard">
        <chicken name="Prillan"/>
        <my-non-self-closing>text content</my-non-self-closing>
        <run speed="fast"/>
    </div>
`);

Supported DOM API

  • DOMText
  • DOMElement
    • childNodes
    • children
    • nodeName
    • nodeType
    • tagName
    • className
    • classList
    • firstElementChild
    • innerHTML
    • outerHTML
    • appendChild()
    • replaceChild()
    • removeChild()
    • remove()
    • setAttribute()
    • removeAttribute()
    • getAttribute()
    • addEventListener()
    • removeEventListener()
    • dispatchEvent()
    • getElementByTagName()
    • getElementByClassName()
    • getElementById()
    • querySelectorAll()
    • querySelector()
    • click()
    • focus()
    • blur()
  • Document
    • documentElement
    • childNodes
    • children
    • nodeType
    • body
    • head
    • createElement()
    • createTextNode()
    • getElementById()
    • getElementsByTagName()
    • getElementsByClassName()
    • querySelectorAll()
    • querySelector()
    • addEventListener()
    • removeEventListener()
0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago