-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
BLUECARBONS Digital Agency edited this page Jul 3, 2026
·
1 revision
| Requirement | Minimum | Notes |
|---|---|---|
| Node.js | 22.5.0 | Required for node:sqlite built-in |
| Node.js (with custom storage) | 18.x | Use createMemoryStorage() or better-sqlite3 adapter |
| npm / pnpm / yarn | any | pnpm recommended |
Node 18 / 20 users: the default
createStorage()usesnode:sqlite, which is only available from Node 22.5.0. Supplyconfig.storage = createMemoryStorage()(or abetter-sqlite3-backed adapter) and the rest of the package works on any Node ≥ 18. See Storage Adapters.
# npm
npm install agentic-rss-parser
# pnpm
pnpm add agentic-rss-parser
# yarn
yarn add agentic-rss-parsergit clone https://github.com/bluecarbons/agentic-rss-parser.git
cd agentic-rss-parser
pnpm install
pnpm test # run the test suiteTypeScript declarations ship with the package at src/index.d.ts — no @types/ package needed:
import { createParser, runAgenticParser } from 'agentic-rss-parser';
// Full IntelliSense works out of the boxnpx agentic-rss https://feeds.feedburner.com/TechCrunchYou should see a JSON array of { item, analysis } objects printed to stdout.