
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.
@anansi/core
Advanced tools
The itsy bitsy spider crawled up the water spout. Down came the rain, and washed the spider out. Out came the sun, and dried up all the rain, and the itsy bitsy spider went up the spout again
yarn start-anansi./src/index.tsx
This script uses two entry points for client/server.
import { useController } from '@data-client/react';
import {
laySpouts,
documentSpout,
dataClientSpout,
prefetchSpout,
routerSpout,
JSONSpout,
appSpout,
} from '@anansi/core/server';
import app from 'app';
import { createRouter } from './routing';
const spouts = prefetchSpout('controller')(
documentSpout({ title: 'anansi' })(
JSONSpout()(
dataClientSpout()(
routerSpout({ useResolveWith: useController, createRouter })(
appSpout(app),
),
),
),
),
);
export default laySpouts(spouts);
import { useController } from '@data-client/react';
import {
floodSpouts,
documentSpout,
dataClientSpout,
routerSpout,
JSONSpout,
appSpout,
} from '@anansi/core';
import app from 'app';
import { createRouter } from './routing';
const appSpout = () => Promise.resolve({ app });
const spouts = documentSpout({ title: 'anansi' })(
JSONSpout()(
dataClientSpout()(
routerSpout({ useResolveWith: useController, createRouter })(
appSpout(app),
),
),
),
);
floodSpouts(spouts);
Anansi can quickly traverse spouts setup by a user.
The server lays the spouts for anansi to travel in. Once delivered to the client, the spouts can be flooded (hydration).
In both cases, we need the route and application data.
import { serve } from '@anansi/core/scripts';
serve('./dist-server/App.js');
Serves static assets. This is typically useful when validating server builds locally; but you typically want to use a dedicated HTTP server for static assets in production.
Proxy requested based on webpack config devConfig. Useful for validating server builds locally. In production it is much more performant to use a separate reverse proxy.
FAQs
React 19 Framework
The npm package @anansi/core receives a total of 272 weekly downloads. As such, @anansi/core popularity was classified as not popular.
We found that @anansi/core 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
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.