
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@ssivov/finder
Advanced tools

CSS Selector Generator
npm install @medv/finder
Finder can be used via modules:
<script type="module">
import {finder} from 'https://medv.io/finder/finder.js'
</script>
import {finder} from '@medv/finder'
document.addEventListener('click', event => {
const selector = finder(event.target)
console.log(selector)
})
Example of generated selector:
.blog > article:nth-child(3) .add-comment
finder takes configuration object as second parameters. Here is example of all params with default values:
const selector = finder(event.target, {
root: document.body,
idName: (name) => true,
className: (name) => true,
tagName: (name) => true,
attr: (name, value) => false,
seedMinLength: 1,
optimizedMinLength: 2,
threshold: 1000,
maxNumberOfTries: 10_000,
})
root: ElementRoot of search, defaults to document.body.
idName: (name: string) => booleanCheck if this ID can be used. For example you can restrict using framework specific IDs:
const selector = finder(event.target, {
idName: name => !name.startsWith('ember')
})
className: (name: string) => booleanCheck if this class name can be used. For example you can restrict using is-* class names:
const selector = finder(event.target, {
className: name => !name.startsWith('is-')
})
tagName: (name: string) => booleanCheck if tag name can be used, same as className.
attr: (name: string, value: string) => booleanCheck if attr name can be used.
seedMinLength: numberMinimum length of levels in fining selector. Starts from 1.
For more robust selectors give this param value around 4-5 depending on depth of you DOM tree.
If finder hits root this param is ignored.
optimizedMinLength: numberMinimum length for optimising selector. Starts from 2.
For example selector body > div > div > p can be optimized to body p.
threshold: numberMax number of selectors to check before falling into nth-child usage.
Checking for uniqueness of selector is very costs operation, if you have DOM tree depth of 5, with 5 classes on each level,
that gives you more than 3k selectors to check.
finder uses two step approach so it's reaching this threshold in some cases twice.
Default 1000 is good enough in most cases.
maxNumberOfTries: numberMax number of tries when we do the optimization. It is a trade-off between optimization and efficiency.
Default 10_000 is good enough in most cases.

Generate the unique selectors in your browser by using Chrome Extension
FAQs
CSS Selector Generator [Forked from @medv/finder]
We found that @ssivov/finder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.