
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
multiple-select-js
Advanced tools
A simple javascript library for multiple select component that supports Bootstrap 4 natively.
You can install multiple-select-js in 3 options:
npm i multiple-select-js
And then, simply import it using es6 syntax.
import MultipleSelect from 'multiple-select-js'
<!-- Bootstrap 4 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Multiple Select JS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/multiple-select-js/dist/css/multiple-select.css">
<script src="https://cdn.jsdelivr.net/npm/multiple-select-js/dist/js/multiple-select.js"></script>
<link href="/dist/css/multiple-select.css" rel="stylesheet">
<script src="/dist/js/multiple-select.js"></script>
For single select.
<div class="form-group">
<label for="select-language">Single Select</label>
<select id="select-language">
<option value="php">PHP</option>
<option value="javascript">Javascript</option>
<option value="python">Python</option>
<option value="java">Java</option>
</select>
</div>
new MultipleSelect('#select-language', {
placeholder: 'Select Language'
})
For Multiple select you can simply add multiple attribute to the select tag.
<div class="form-group">
<label for="select-language">Multiple Select</label>
<select id="select-multiple-language" multiple>
<option value="php">PHP</option>
<option value="javascript">Javascript</option>
<option value="python">Python</option>
<option value="java">Java</option>
</select>
</div>
new MultipleSelect('#select-multiple-language', {
placeholder: 'Select Language'
})
Go to this link for the complete documentation.
The Multiple Select Js library is open-source software licensed under the MIT license.
FAQs
Simple js library for html5 multiple select
We found that multiple-select-js 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.