Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
get-selector
Advanced tools
Generates a unique CSS selector that will match only the passed element.
Browser-based utility to generate a unique selector for a given element. There are more comprehensive (and therefore often slower) solutions out there that will retrieve the smallest selector possible, but that comes at the price of complexity and usually accuracy.
This one prioritizes speed and accuracy.
If you have an invalid DOM, results will vary.
If you have duplicate or invalid id
attributes, results will really vary.
Check if the element has an id
attribute
id
...Traverse the element's ancestry
id
attribute.id
is found...Build the selector to <html>
nth-child
sub-selectors.Install via npm.
$ npm i get-selector --save
Require and call when needed. The function will return false if the passed element is not valid. Otherwise it will return the selector as a string.
var getSelector = require('get-selector');
console.log(getSelector(someElement));
// Outputs something like:
// #list-item-two > a:nth-child(1)
Build jsdoc-based documentation:
$ npm run docs
Run tests and coverage:
$ npm test
$ npm run coverage
FAQs
Generates a unique CSS selector that will match only the passed element.
The npm package get-selector receives a total of 0 weekly downloads. As such, get-selector popularity was classified as not popular.
We found that get-selector 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.