endeavour1788
v0.0.2
Published
Endeavour1788 is a TypeScript NNTP client with Zod-validated APIs for common NNTP workflows such as group browsing, article retrieval, and posting.
Readme
Endeavour1788
Endeavour1788 is a TypeScript NNTP client with Zod-validated APIs for common NNTP workflows such as group browsing, article retrieval, and posting.
Quick Start
import { NntpClient } from "endeavour1788";
const client = new NntpClient();
await client.connect({ host: "news.example.com" });
const info = await client.group("alt.test");
console.log(info);
client.end();