
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
Classwrap is a (320B) JavaScript function for conditionally concatenating classNames.
function HelloButton(props) {
const name = classwrap([
"btn",
"btn-large",
{
"btn-pressed": props.isPressed
}
])
return <button class={name}>{props.label}</button>
}
Install with npm / Yarn.
npm i classwrap
Then with a module bundler like rollup or webpack, use as you would anything else.
import wrap from "classwrap"
Or download the minified library from the CDN.
<script src="https://unpkg.com/classwrap"></script>
You can find the library on window.classwrap.
Classwrap joins all elements of an array or keys of an object into a string. If the value associated with a given key is falsy, that key will be ignored.
classwrap([
"btn",
{
"btn-active": true,
"btn-large": false
}
]) // => btn btn-active
Nested arrays or objects are supported too. This feature can be useful to create classes with a similar prefix.
classwrap([
"tab",
{
tab: {
"--success": true,
"--error": false,
"--pending": false
}
}
]) // => tab tab--success
Classwrap was inspired by JedWatson/classnames with support for nested objects and improved performance.
Classwrap is MIT licensed. See LICENSE.
FAQs
This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name.
The npm package classwrap receives a total of 6 weekly downloads. As such, classwrap popularity was classified as not popular.
We found that classwrap 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.