
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
A composition of small micro-libraries for interacting with the DOM.
A small shortcut to using querySelectorAll()
which also coerces NodeList to an Array.
import qsa from 'qsa';
qsa('p'); // returns an array of all matching `<p>` tags.
Lamda function factories for adding, removing, & toggling a CSS class on HTML Elements.
import qsa from 'qsa';
import classActs from 'class-acts';
qsa('p')
.map( classActs.add('my-class') )
.map( classActs.toggle('your-class') )
.map( classActs.remove('its-class') );
Lamds function factories for adding, removing, & toggling data attributes.
import qsa from 'qsa';
import toggleAttr from 'attr-boy/toggle';
qsa('p')
.map(toggleAttr('data-is-on'));
Emit custom events in the DOM. For modern browsers and IE9+. Polyfill included.
import qsa from 'qsa';
import emit from 'dom-emit';
emit('my-event-name');
emit.from(document.body, 'another-custom-event', {data: true});
qsa('p').map( emit.map('custom-event') );
FAQs
A collection of small micro-libraries for interacting with the DOM
We found that free-dom 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.