
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.
thunderous
Advanced tools
Thunderous is a library for writing web components in a functional style, reducing the boilerplate, while signals make it better for managing and sharing state.
Thunderous is a library for writing web components in a functional style, reducing the boilerplate, while signals make it better for managing and sharing state.
Each component renders only once, then binds signals to DOM nodes for direct updates with thunderous efficiency.
Install Thunderous via npm:
npm install thunderous
Thunderous makes it easy to define smaller components with less noise.
import { customElement, html, css, createSignal } from 'thunderous';
const myStyleSheet = css`
:host {
display: block;
font-family: sans-serif;
}
`;
const MyElement = customElement(({ refs, adoptStyleSheet }) => {
const [count, setCount] = createSignal(0);
const increment = () => setCount(count() + 1);
adoptStyleSheet(myStyleSheet);
return html`
<button onclick="${increment}">Increment</button>
<output>${count}</output>
`;
});
MyElement.define('my-element');
Please consult the documentation to learn how to build web components with Thunderous.
To see it in action, start the demo server with:
npm run demo
The demo's package.json points to the parent directory with the file: prefix. To preview the updated library code, you must run npm run build at the top level.
Please open a corresponding issue for any pull request you'd like to raise.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
Thunderous is a library for writing web components in a functional style, reducing the boilerplate, while signals make it better for managing and sharing state.
We found that thunderous demonstrated a healthy version release cadence and project activity because the last version was released less than 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.