3.4.3 • Published 9 years ago

query-dom v3.4.3

Weekly downloads
711
License
MIT
Repository
github
Last release
9 years ago

query-dom Build Status

query-focused & somewhat standards compliant subset of the DOM

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install query-dom --save

Usage

import {parse, parseFragment} from 'query-dom';

const document = parse('<div><foo style="font-size: 12px" class="bar"></foo></div>');
const child = document.getElementsByTagName('foo')[0];

console.log(child.style.fontSize);
console.log(child.classList.contains('bar'), child.classList.contains('bas'));
console.log(child.innerHTML);

const fragment = parseFragment('<div><foo style="font-size: 12px" class="bar"></foo><foo class="bar">bas</bar></div>');
const children = fragment.querySelectorAll('.bar');

console.log('children', children);

Tests

npm install
npm test

Dependencies

  • camelcase-css: Convert a dash-separated CSS property to a camelCased DOM property.
  • cssauron: create matching selectors from css for your very own nested object hierarchy
  • object-assign: ES2015 Object.assign() ponyfill
  • parse5: WHATWG HTML5 specification-compliant, fast and ready for production HTML parsing/serialization toolset for Node.js
  • to-fast-properties: Force V8 to use fast properties for an object

Dev Dependencies

  • ava: Futuristic test runner 🚀
  • babel-cli: Babel command line.
  • babel-core: Babel compiler core.
  • babel-preset-es2015: Babel preset for all es2015 plugins.
  • devtool: runs Node.js programs through Chromium DevTools
  • jsdom: A JavaScript implementation of the DOM and HTML standards
  • minidom: Small DOM level 1 implementation
  • npm-run-all: A CLI tool to run multiple npm-scripts in parallel or sequential.
  • nyc: the Istanbul command line interface
  • package-json-to-readme: Generate a README.md from package.json contents
  • semistandard: All the goodness of feross/standard with semicolons sprinkled on top.
  • snazzy: Format JavaScript Standard Style as Stylish (i.e. snazzy) output
  • tsml: ES6 template string tag for multi-line cleaning - squash multi-line strings into a single line

License

MIT

Generated by package-json-to-readme

3.4.3

9 years ago

3.4.2

9 years ago

3.4.1

9 years ago

3.4.0

9 years ago

3.3.0

9 years ago

3.2.0

9 years ago

3.1.2

9 years ago

3.1.1

9 years ago

3.1.0

9 years ago

3.0.8

9 years ago

3.0.7

9 years ago

3.0.6

9 years ago

3.0.5

9 years ago

3.0.4

9 years ago

3.0.3

9 years ago

3.0.2

9 years ago

3.0.1

10 years ago

3.0.0

10 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago