
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
storm-check-all
Advanced tools
Checkbox group state management.
Check and uncheck a group of checkboxes, update the toggle button/input label, and dispatch a change event on each checkbox.
<label for="check-all">Check all</label>
<input class="js-check__all" type="checkbox" id="check-all" data-group="group-1">
<label>
<input data-group-name="group-1" name="..." id="..." value="1">
</label>
<label>
<input data-group-name="group-1" name="..." id="..." value="2">
</label>
JS either using es6 import
import CheckAll from 'storm-check-all';
CheckAll.init('.js-check__all');
aynchronous browser loading (use the .standalone version in the /dist folder)
import Load from 'storm-load';
Load('/content/js/async/storm-check-all.standalone.js')
.then(() => {
StormCheckAll.init('.js-check__all');
});
Options
{
defaultLabel: 'Check all' //this should match the label in the DOM
activeLabel: 'Uncheck all',
}
This is module has both es6 and es5 distributions. The es6 version should be used in a workflow that transpiles.
The es5 version depends upon Object.assign so all evergreen browsers are supported out of the box, ie9+ is supported with polyfills. ie8+ will work with even more polyfils for Array functions and eventListeners.
None
MIT
FAQs
Checkbox group state management
We found that storm-check-all 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.