JSPM

  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q10706F
  • License MIT

A small DOM implementation

Package Exports

  • dom-lite

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dom-lite) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@version    0.3.1
@date       2015-02-02
@stability  2 - Unstable

DOM lite – Build Coverage

A small DOM implementation where most of DOM attributes and methods are implemented.

Examples

var document = require("dom-lite").document;

var el = document.createElement("h1");
el.id = 123;
el.className = "large";

var fragment = document.createDocumentFragment();
var text1 = document.createTextNode("hello");
var text2 = document.createTextNode(" world");

fragment.appendChild(text1);
fragment.appendChild(text2);
el.appendChild(fragment);

el.toString();
// <h1 id="123" class="large">hello world</h1>
el.outerHTML;
// <h1 id="123" class="large">hello world</h1>
el.innerHTML;
// hello world

Implementation notes

  • innerHTML and outerHTML are read only
  • querySelector(), querySelectorAll(), closest() and matches() does not support CSS3 selectors

Coding Style Guidelines

  • Use tabs for indentation, align with spaces
  • Use lowerCamelCase for method and variable names
  • Use UpperCamelCase for constructor names
  • Commit files with Unix-style line endings
  • Do not use spaces in file and directory names Consider substituting a dash (-) where you would normally use spaces.
  • Rebase before pushing
  • Fix tests before push or pull request

Licence

Copyright (c) 2014-2015 Lauri Rooden <lauri@rooden.ee>
The MIT License