
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.

Tiny router with browser-first API for React apps.
yarn add woozie
// App.tsx
import * as React from "react";
import { LocationProvider } from "woozie";
import PageRouter from "./PageRouter";
const App: React.FC = () => (
<LocationProvider>
<PageRouter />
</LocationProvider>
);
export default App;
// PageRouter.tsx
import * as React from "react";
import { Router, Redirect, Link, useLocation, HistoryAction } from "woozie";
const ROUTE_MAP = Router.createMap([
["/", () => <Link to="/kek">To Kek</Link>],
["/kek", () => <div>Kek</div>],
["*", () => <Redirect to="/" />],
]);
const PageRouter: React.FC = () => {
const { trigger, pathname } = useLocation();
// Scroll to top after new location pushed.
React.useLayoutEffect(() => {
if (trigger === HistoryAction.Push) {
window.scrollTo(0, 0);
}
}, [trigger, pathname]);
return React.useMemo(() => Router.resolve(ROUTE_MAP, pathname, null), [
pathname,
]);
};
export default PageRouter;
TSDX scaffolds your new library inside /src, and also sets up a Parcel-based playground for it inside /example.
The recommended workflow is to run TSDX in one terminal:
npm start # or yarn start
This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
Then run the example inside another:
cd example
npm i # or yarn to install dependencies
npm start # or yarn start
The default example imports and live reloads whatever is in /dist, so if you are seeing an out of date component, make sure TSDX is running in watch mode like we recommend above. No symlinking required, we use Parcel's aliasing.
To do a one-off build, use npm run build or yarn build.
To run tests, use npm test or yarn test.
Licensed under MIT license.
From GTA Wiki:
Wu Zi Mu (Chinese: 吴梓穆, Pinyin: wú zì mù, known to his friends as "Woozie") is a character in the Grand Theft Auto series who appears as a main character in Grand Theft Auto: San Andreas.
FAQs
Modern, explicit and browser-first routing for React
The npm package woozie receives a total of 4 weekly downloads. As such, woozie popularity was classified as not popular.
We found that woozie 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.