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.5.1
@date 2016-07-26
@stability 2 - Unstable
DOM lite –

A small DOM implementation where most of DOM attributes and methods from document 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.innerHTML;
// hello world
el.innerHTML = "<b>hello world</b>"
el.outerHTML;
// <h1 id="123" class="large"><b>hello world</b></h1>
el.querySelectorAll("b");
// [ "<b>hello world</b>" ]
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
External links
Licence
Copyright (c) 2014-2016 Lauri Rooden <lauri@rooden.ee>
The MIT License