
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.
checkbox-list
Advanced tools
<checkbox-list>
A web component for listed checkboxes and optionally a "check all" checkbox
Install using npm or Bower
npm install checkbox-list
bower install checkbox-list
Use HTML Import
In your <head>
:
<link rel="import" href="checkbox-list/dist/index.html">
Use CheckboxListElement
element in HTML or programmability
HTML
<checkbox-list>
<label><input checkbox-list-all="true" type="checkbox">All</label>
<label><input type="checkbox">Checking</label>
<label><input type="checkbox">Saving</label>
</checkbox-list>
JavaScript
var list = document.createElement('input', 'checkbox-list');
var all = document.createElement('input');
all.setAttribute('type', 'checkbox');
all.setAttribute('checkbox-list-all', 'true');
var checking = document.createElement('input');
checking.setAttribute('type', 'checkbox');
var saving = document.createElement('input');
saving.setAttribute('type', 'checkbox');
list.appendChild(all);
list.appendChild(checking);
list.appendChild(saving);
document.body.appendChild(list);
Make sure you have npm and Gulp installed. Following commands are available:
gulp
Make a new build
gulp serve
Starts a server and watches for changes to reload the browser.
MIT
FAQs
checkbox list
The npm package checkbox-list receives a total of 0 weekly downloads. As such, checkbox-list popularity was classified as not popular.
We found that checkbox-list 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.