Socket
Socket
Sign inDemoInstall

optimal-select

Package Overview
Dependencies
0
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

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
4.9K
decreased by-7.31%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

[v2.0.1]

Jan 24, 2016

  • replace element validation to remove implicit dependency on global window

Readme

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 for excludes can be defined with filters
  • micro library (~ 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 excluded for robustness towards changes:

  • style (inline styles often 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)
// pass the attribute as additional parameters (extends defaults)
var selector = select(element, {
  excludes: {
    'href': '.*',
    'class': ['^example']
  }
})

TODO

  • extend documentation
  • add tests
  • check attributes in multi-select
  • check attributes for complex classname

Development

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

Keywords

FAQs

Last updated on 24 Jan 2016

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc