
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This is the anything library, it does anything.
bun add aywitb
Add the plugin to your bunfig.toml so generic types can be resolved at runtime:
preload = ["aywitb/plugin"]
import { aywitb } from "aywitb";
type WebSocketServer = {
startServer({ port }: { port: number }): void;
on(eventName: "verbose-log", handler: (event: unknown) => void): void;
}
const server = await aywitb<WebSocketServer>(`
a websocket server that works with url-based rooms
join by connecting to ws://.../room/{string[6]}
rooms are upserted and messages fan to all clients in the room
`, { verbose: true });
server.on("verbose-log", console.log);
server.startServer({ port: 3000 });
It takes the prompt you provide to the aywitb function, and runs it through a small, naïve and improvised pseudo-harness instructing the LLM to build the implementation.
Implementation is cached locally, if you change the prompt or generic - it will cache miss.
With Bun, as a plugin component exists that pulls and resolves the generic type you pass into the aywitb function so inference can be ran with the type signature in the context.
You shouldn't.
No. If you do play with it, sandbox it.
I think I have an addiction to making things.
FAQs
This is the anything library, it does anything.
We found that aywitb 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.