Socket
Socket
Sign inDemoInstall

optimal-select

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

optimal-select

Get efficient & robust CSS selectors for HTML elements


Version published
Weekly downloads
5.2K
decreased by-9.89%
Maintainers
1
Weekly downloads
 
Created
Source

js-standard-style

optimal select

A library which creates efficient and robust CSS selectors for HTML elements.

Features

  • support UMD (Browser + Node)
  • allow single and multiple element inputs
  • configurations allow to define custom ignore patterns
  • micro library (~ 5.5kb + no external dependency)
  • shortest path and fastest selection in comparison

How To Use

import { select } from 'optimal-select' // global: 'OptimalSelect'

document.addEventListener('click', (e) => {
  var selector = select(e.target)
  console.log(selector)  
})

By default following attributes are ignored for robustness towards changes:

  • style (inline styles often temporary and used for dynamic visualizations)
  • data-reactid (reacts element identifier which depends on the current DOM structure)
  • data-react-checksum (react string rendered markup which depends on the current DOM structure)

To define custom filters you can pass the 'ignore' property as a secondary optional parameter. You can then specify a validation function for the different types (id, class, attribute, tag).

var selector = select(element, {
  ignore: {
    class (className) {
      // disregard short classnames
      return className.length < 3
    },
    attribute (name, value, defaultPredicate) {
      // excluding HTML5 data attributes
      return (/data-*/).test(name) || defaultPredicate(name, value)
    }
  }
})

TODO

Development

To build your own version run npm run dev for development (incl. watch) or npm run build for production (minified).

Keywords

FAQs

Package last updated on 07 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc