npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

potent-tools

v2.2.6

Published

A port, package and unit testing of Firebug's XPath parsing and processing tools.

Downloads

47

Readme

Potent Tools for XPath and CSS

Potent.js

Build Status Known Vulnerabilities npm version

Tools for working with the DOM, CSS selectors and XPath 1.0 expressions. All functionality in this repository is derived from Firebug, and has been modified for readability and to support pseudo-DOM, unit testing and ES6 standards.

This package solves four loosely related problems:

  • Evaluating XPath expressions on arbitrary documents (including pseudo-DOM)
  • Generating XPath expressions for paths in DOM structures
  • Converting CSS selectors to XPath expressions (for evaluation or otherwise)
  • Parsing CSS selectors for meaning (e.g. "body.thing" -> { element: body, class: thing }).

Installation

yarn add potent-tools

Usage

const {
  generators,
  evaluators,
  cssToXPath
} = require('potent-tools');

{ // generators: generate XPath queries from elements.
  /*
  * generators.getElementXPath(element)
  * Get the XPath string for a given DOM element.
  */
  const xPath = generators.getElementXPath(domElement);
  // /html/head/body/table/tr[2]/td/strong[@class='title']
  console.log(xPath); 


  /*
  * generators.getElementXPath(element, skipId)
  * Get the fully qualified XPath string for a DOM element 
  * that has an ID, ignoring ID.
  * e.g., `<html><body><div id='bob'></div></body></html>`
  */
  const xPath = generators.getElementXPath(
    bobElement,
    skipId = true
  );
  console.log(xPath); // /html/body/div[1]

  
  const xPath = generators.getElementXPath(
    bobElement,
    skipId = false
  );
  console.log(xPath); // //*[@id='bob']


  /*
  * generators.getElementAttributes(element)
  * Get all the HTML attributes on an element. 
  * This is exposed, but it is a support method for the XPath
  * generator.
  */
  const attributes = generators.getElementAttributes(bobElement);
  console.log(bobElement); // { id: 'bob' }
}

{ // evaluators: run XPath queries or CSS selectors to find elements
  /*
   * evaluators.getElementsByXPath(document, xpathQuery)
   * Get elements by XPath query.
   */
  // element return type...
  const elements = evaluators.getElementsByXPath(
    document, 
    '/html/body/div'
  );
  console.log(elements); // [ DOMElement ]

  // string return type...
  const elements = evaluators.getElementsByXPath(
    document, 
    '/html/body/div/text()'
  );
  console.log(elements); // [ "Hello world" ]

  /*
   * getElementsBySelector(document, rule)
   * Get elements by CSS selector.
   */
  const elements = evaluators
    .getElementsBySelector(
      document,
      'html > body > div#id'
    );
  console.log(elements); // [ DOMElement ]

  /*
   * evaluators.evaluateXPath(doc, xpath, contextNode, resultType)
   * Execute a query on a document.
   * e.g., <html><body><div id='bob'>Hello world</div></body></html>
   */
  const stringResult = evaluators.evaluateXPath(
    document,
    '/html/body/div',
    document, // optional, defaults to the document
    XPathResult.STRING_TYPE, // optional, defaults to ANY_TYPE.
  );
  console.log(stringResult); // "Hello world"
}

{ // cssToXPath: convert CSS queries to XPath queries
  console.log(cssToXPath('html > body')); // //html>body
}

We have some tests that document this functionality as well. It should be possible to use our builds on the web as well, as they simply ignore the polyfills if they're already present.

License

As the code in this repository is derived from the Firebug source code, its BSD 3-clause license applies.

Development

I will accept pull requests which do not deviate from the intent of the original Firebug code, as the intent of this repository is simply to cleanup, standardize and package the Firebug XPath library for reuse.

  • In general, readability will be preferred to conciseness.
  • Please ensure all unit tests pass (yarn test).
  • Please ensure new code has sufficient coverage (yarn run coverage).
  • Please ensure code has been linted to meet the formatting standards (I use eslint-config-strawhouse and Prettier).

To build a web distribution, yarn run build should update the files in dist/.