
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.
@kitest/kitest
Advanced tools
An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.
kitest is a fast, minimalist test runner for TypeScript and JavaScript, with a small, easy-to-learn API that lets you focus on your tests — not your tooling.
Fast, minimal, precise, safe, atomic, and easy to use.
🚀 Fast & Reliable
😀 Easy to Use
🛡 Defensive
🔒 Out-of-the-box Typescript support
import {test} from '@kitest/kitest';
// Basic test
function greet(name: string): string {
return `hello, ${name}`;
}
test('greet()', (assert) => {
assert.equal(hello('world'), 'hello, world');
});
// Error handling
function throwError(): never {
throw new Error('oops');
}
test('throwError()', (assert) => {
assert.throws(() => throwError(), /oops/);
});
// Async test
async function fetchData(): Promise<string> {
return Promise.resolve('data');
}
test('fetchData()', async (assert) => {
const data = await fetchData();
assert.equal(data, 'data');
});
To install and get started with kitest, see our Getting Started guide.
See the examples and src folders for more examples.
main and request review. Make sure all tests pass and coverage is good.Aeroview is a lightning-fast, developer-friendly, AI-powered logging IDE. Get started for free at https://aeroview.io.
Want to sponsor this project? Reach out.
FAQs
An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.
We found that @kitest/kitest 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.