
Product
PHP and Composer Support Is Now in Beta
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.
@neeter/server
Advanced tools
A Hono server toolkit that puts a browser UI on the Claude Agent SDK. Manages multi-turn sessions, translates SDK messages into named SSE events, and handles tool-approval permissions — so your React client gets a clean event stream out of the box.
Part of the neeter toolkit.
pnpm add @neeter/server
Peer dependencies:
{
"@anthropic-ai/claude-agent-sdk": ">=0.2.0",
"hono": ">=4.0.0"
}
import { Hono } from "hono";
import { serve } from "@hono/node-server";
import {
createAgentRouter,
SessionManager,
MessageTranslator,
} from "@neeter/server";
const sessions = new SessionManager(() => ({
context: {},
model: "claude-sonnet-4-5-20250929",
systemPrompt: "You are a helpful assistant.",
maxTurns: 50,
}));
const translator = new MessageTranslator();
const app = new Hono();
app.route("/", createAgentRouter({ sessions, translator }));
serve({ fetch: app.fetch, port: 3000 });
| Example | Description |
|---|---|
| basic-chat | Minimal server + client setup |
| live-preview | Per-session sandboxes, custom events, abort |
MIT
FAQs
Hono server toolkit for building chat UIs on top of the Claude Agent SDK
The npm package @neeter/server receives a total of 35 weekly downloads. As such, @neeter/server popularity was classified as not popular.
We found that @neeter/server 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.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.