
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.
TypeScript SDK and CLI for Aizu — build reactive backends with WebAssembly.
This package serves two purposes:
npx aizu) — deploy pipeline: schema codegen, WASM build, uploadimport from "aizu") — React hooks for real-time queries, mutations, and authnpx aizu init
Creates an aizu.toml config and a starter Rust crate with schema definitions.
AIZU_DEPLOY_KEY=<key> npx aizu deploy
Runs the full pipeline:
schemas/*.tomlcargo build --target wasm32-wasip1)import { AizuProvider } from "aizu/react";
function App() {
return (
<AizuProvider url="https://myproject.aizu.sh">
<MyApp />
</AizuProvider>
);
}
import { useQuery } from "aizu/react";
function TodoList() {
const todos = useQuery("list_todos", { user_id: "123" });
if (todos === undefined) return <div>Loading...</div>;
return (
<ul>
{todos.map(todo => (
<li key={todo.id}>{todo.title}</li>
))}
</ul>
);
}
Queries automatically update when server data changes via WebSocket subscriptions.
import { useMutation } from "aizu/react";
function CreateTodo() {
const { mutate: createTodo, isPending } = useMutation("create_todo");
return (
<button
onClick={() => createTodo({ title: "New todo" })}
disabled={isPending}
>
{isPending ? "Creating..." : "Create"}
</button>
);
}
import { useCurrentUser, useAizuAuth } from "aizu/react";
function Profile() {
const user = useCurrentUser();
const auth = useAizuAuth();
if (!user) return <button onClick={() => auth.login(...)}>Sign in</button>;
return <div>Hello, {user.name}</div>;
}
aizu.toml[project]
name = "my-project"
url = "http://localhost:4000"
[functions]
path = "./aizu"
[schemas]
path = "schemas/"
output = "src/generated/"
ts_output = "src/generated/"
wasm32-wasip1 target (for building functions)We are not currently accepting external contributions. Feel free to open issues for bugs or feature requests.
MIT
FAQs
Aizu SDK and CLI — build reactive backends with WebAssembly
We found that aizu 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.