
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@neeter/server
Advanced tools
Hono server toolkit for building chat UIs on top of the Claude Agent SDK
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 });
Send images alongside text via the messages endpoint:
// POST /api/sessions/:id/messages
{
"content": [
{ "type": "text", "text": "Describe this image" },
{
"type": "image",
"source": {
"type": "base64",
"media_type": "image/png",
"data": "<base64>"
}
}
]
}
Plain { "text": "..." } payloads continue to work as before. See the Server Guide for details.
| Example | Description |
|---|---|
| basic-chat | Minimal server + client setup |
| code-workbench | Per-session sandboxes, persistence, file checkpointing, custom events |
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 41 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.
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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.