
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.
@netlify/classnames-template-literals
Advanced tools
Small utility to format long classnames with template literals
Utility originally created to deal with long Tailwind classnames.
To make our code more readable, we extract our Tailwind classes into variables, for example:
const twClasses = `
tw-sr-only
focus:tw-not-sr-only
tw-bg-teal-darker
tw-text-white
tw-block
tw-text-sm
tw-l-0
`;
The issue with writing classes this way is that they are rendered as-is in the DOM.
Example:
<p
class="
tw-sr-only
focus:tw-not-sr-only
tw-bg-teal-darker
tw-text-white
tw-block
tw-text-sm
tw-l-0"
>
Hello world
</p>
Using the ctl util formats classnames so they are rendered in a more standard way in the DOM.
Example:
<p class="tw-sr-only focus:tw-not-sr-only tw-bg-teal-darker tw-text-white tw-block tw-text-sm tw-l-0">
Hello world
</p>
npm install @netlify/classnames-template-literals
Wrap your classnames inside ctl.
import ctl from "@netlify/classnames-template-literals";
const buttonClasses = ctl(`
bg-black
text-white
p-1
rounded-sm
`);
You can also use conditional classes:
import ctl from "@netlify/classnames-template-literals";
const buttonClasses = ctl(`
bg-black
text-white
p-1
rounded-sm
${someState && "bg-pink"}
`);
FAQs
Small utility to format long classnames with template literals
The npm package @netlify/classnames-template-literals receives a total of 2,322 weekly downloads. As such, @netlify/classnames-template-literals popularity was classified as popular.
We found that @netlify/classnames-template-literals demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 19 open source maintainers 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.