惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
量子位
博客园 - 三生石上(FineUI控件)
I
InfoQ
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
D
Docker
美团技术团队
雷峰网
雷峰网
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - jankdc/bote: A fast, modern and low-memory appro...
jankdc · 2026-06-19 · via Hacker News: Show HN

A fast, modern and low-memory approach to processing a big JSON:

import { fileURLToPath } from 'node:url';
import { open, fromFile } from '@botejs/core';

// 181 MB GeoJSON:
// { type: "...", features: [{ properties: { STREET: "..." }}] }
const filePath = fileURLToPath(new URL('../citylots.json', import.meta.url));

await using cursor = await open(fromFile(filePath));

const byStreet = await cursor
  .iter('features', {
    select: ['properties', 'STREET'],
  })
  .reduce((tally, street) => {
    if (typeof street === 'string') {
      tally.set(street, (tally.get(street) ?? 0) + 1);
    }
    return tally;
  }, new Map());

console.log([...byStreet].sort((a, b) => b[1] - a[1]).slice(0, 10));

Given a seekable or forward source and a path, it retrieves values out of a JSON, without loading the whole thing in-memory.

Here's a run of snippet above (Apple M1 Pro 2021, default settings, RUNS=100):

method mean time (seconds) mean peak footprint (MB)
bote: v0.8 0.517 ± 0.018 s 40.3 ± 2.5
JSON.parse: v22 0.816 ± 0.031 s 648.9 ± 2.4
JSONStream: v1.3 4.452 ± 0.052 s 57.9 ± 3.9
@streamparser/json: v0.0.22 5.103 ± 0.084 s 47.9 ± 2.3
oboe.js: v2.1 8.566 ± 0.295 s 100.0 ± 4.6
stream-json: v3.4.0 13.346 ± 0.569 s 207.6 ± 8.4

For comparison notes, go here.

Features

  • Modern AsyncIterator API with helpers that emulate the tc39 ones
  • Validate with Standard Schema, avoiding those pesky unknowns
  • Supports multiple sources of data (e.g. file, network, stream) or write a custom one. (see sources.js for the built-in ones)
  • For forward-only sources, there's support for replaying/buffering, allowing navigation to previous values

Supported

  • Node.js >= 22.18.0
  • ESM-only
  • Platforms
    • macOS (Apple Silicon aarch64 and Intel x86_64)
    • Linux x64 (x86_64, glibc)
    • Windows x64 (x86_64, MSVC)
    • More if requested :)

API

  • open(source, options?): Cursor
  • fromFile(path, options?)
  • fromBuffer(bytes, options?)
  • fromHttpRange(url, options?)
  • fromHttpRequest(url, options?)
  • fromReadable(produce, options?)
  • cursor.get(...path, schema?)
  • cursor.has(...path, schema?)
  • cursor.hop(...path)
  • cursor.iter(...path, options?): IterStream
  • cursor.close()
  • IterStream
  • Errors

open(source, options?)

const cursor = await open(source: Source, options?: SeekableOpenOptions): Promise<RootCursor>;

Opens a cursor over a source. The returned RootCursor owns the underlying reader: close() (or letting an await using scope end) releases it exactly once. A seekable source supports the index cache and repeated, out-of-order queries; a forward source is a single pass and rejects the cache knobs.

import { open, fromFile } from '@botejs/core';

await using cursor = await open(fromFile('./users.json'));
console.log(await cursor.get('users', 0, 'name'));
Cache options (seekable sources only)

The cache remembers where members live as bote walks through the JSON. It caches structure, never source bytes. The defaults are good; reach for these only to bound memory tighter or to turn the cache off.

option default meaning
indexCacheEntries 1024 index entries kept in memory; 0 disables the cache
objectMemberCap unlimited keys indexed per object; 0 skips indexing object keys
arrayIndexInterval 16 index every Nth array position; 0 skips indexing array positions
await using cursor = await open(fromFile('./big.json'), {
  arrayIndexInterval: 8,
  indexCacheEntries: 4096,
  objectMemberCap: 256,
});

Passing any of these to a forward source throws a RangeError.

fromFile(path, options?)

const source = fromFile(path: string, options?: { chunkBytes?: number }): SeekableSource;

A seekable source over a local file. Opens a handle on open() and reads byte ranges on demand, so large files are never fully read, only the chunks a query touches. chunkBytes (a non-zero multiple of 64) overrides the read granularity.

await using cursor = await open(fromFile('./users.json', { chunkBytes: 128 * 1024 }));

fromBuffer(bytes, options?)

const source = fromBuffer(bytes: Uint8Array | ArrayBuffer, options?: { chunkBytes?: number }): SeekableSource;

A seekable source over JSON already resident in memory - data you fetched or built yourself rather than a file on disk.

await using cursor = await open(fromBuffer(new TextEncoder().encode('{"ok":true}')));
console.log(await cursor.get('ok')); // -> true

fromHttpRange(url, options?)

const source = fromHttpRange(url: string, options?: { chunkBytes?: number; init?: RequestInit }): SeekableSource;

A seekable source over a remote file using HTTP range requests. A HEAD discovers the length and confirms Accept-Ranges: bytes; each read then fetches only its byte window. init is merged into every request (headers, credentials, an AbortSignal).

await using cursor = await open(
  fromHttpRange('https://example.com/big.json', {
    init: { headers: { authorization: 'Bearer ...' } },
  }),
);
console.log(await cursor.get('users', 1000, 'name'));

fromReadable(produce, options?)

const source = fromReadable(produce: () => ReadableStream | NodeReadable, options?: ReadableOptions): ForwardSource;

A forward-only source backed by a re-openable readable stream. Pass a thunk that produces a fresh stream (a live Readable cannot be re-streamed), not the stream itself. Each cursor operation is an independent scan from the start, so a second query rewinds, which by default throws (see rewind).

import { createReadStream } from 'node:fs';

await using cursor = await open(fromReadable(() => createReadStream('./events.json')));
for await (const event of cursor.iter('events')) {
  console.log(event.type);
}
Forward options
option default meaning
size discovered known total length, if any; lets the engine skip rediscovering the end
decode none transform applied to each (re)acquired stream, e.g. to decompress
rewind 'forbid' what a query needing an earlier offset does (see below)
chunkBytes 262144 read granularity (non-zero multiple of 64)

rewind trades resident memory for re-read ability:

  • 'forbid' - a single forward pass; a rewind throws ForwardReplayError.
  • 'replay' - re-acquire the stream from the start. Safe only when the producer is idempotent (yields the same bytes each call). No extra memory.
  • 'buffer' - snapshot the whole stream into memory on first read, enabling random access at O(n) resident memory.
await using cursor = await open(
  fromReadable(() => createReadStream('./events.json.gz'), {
    decode: (raw) => raw.pipeThrough(new DecompressionStream('gzip')),
    rewind: 'replay',
  }),
);

fromHttpRequest(url, options?)

const source = fromHttpRequest(url: string, options?: HttpRequestOptions): ForwardSource;

A forward-only source over an HTTP response body, streamed in one pass (GET by default). The forward counterpart to fromHttpRange: prefer it when you scan once and the server has no range support. Takes the same decode/rewind options as fromReadable, plus init merged into every fetch.

await using cursor = await open(
  fromHttpRequest('https://example.com/events.json', {
    init: { headers: { authorization: 'Bearer ...' } },
    rewind: 'buffer',
  }),
);
console.log(await cursor.get('events', 0, 'type'));

cursor.get(...path, schema?)

const value = await cursor.get(...path: Segment[], schema?: StandardSchema): Promise<unknown>;

Reads and decodes the value at path, returning a real JS value, or undefined if the path is absent (distinct from a present JSON null). With no segments it decodes the whole document. Reading a whole container materializes all of it, so prefer iter for large arrays/objects.

const name = await cursor.get('users', 0, 'name'); // -> "Ada"
const missing = await cursor.get('users', 0, 'nope'); // -> undefined
const nulled = await cursor.get('users', 0, 'deletedAt'); // -> null (the member exists)
Validating with a schema

Pass a Standard Schema (zod, valibot, arktype, ...) as the trailing argument to validate and parse the value. The return type is inferred from the schema's output, and a validation miss throws a ValidationError.

import { z } from 'zod';

const age = await cursor.get('users', 0, 'age', z.number()); // typed as number

cursor.has(...path, schema?)

const exists = await cursor.has(...path: Segment[], schema?: StandardSchema): Promise<boolean>;

Reports whether a value exists at path without decoding it. A member explicitly set to JSON null still counts as present; an out-of-range array index is absent.

if (await cursor.has('users', 0, 'email')) {
  console.log(await cursor.get('users', 0, 'email'));
}
console.log(await cursor.has('users', 999)); // -> false on a shorter array
Validating with a schema

With a trailing schema, has also requires the value to validate. Unlike get, a parse or validation miss yields false instead of throwing.

import { z } from 'zod';

if (await cursor.has('users', 0, 'email', z.string().email())) {
  console.log('has a well-formed email');
}

cursor.hop(...path)

const child = await cursor.hop(...path: Segment[]): Promise<Cursor | null>;

Resolves path to a container and hands back a new cursor anchored there, so further get/has/iter/hop run relative to it. Returns null when nothing lives at the path. A child shares the root's source and lifetime. Closing the root closes it too, and there is nothing to close on the child itself.

const user = await cursor.hop('users', 0);
if (user) {
  console.log(await user.get('name'));
  const city = await (await user.hop('address'))?.get('city');
}

cursor.iter(...path, options?)

const stream = cursor.iter(...path: Segment[], options?: IterOptions | StandardSchema): IterStream;

Streams the members of the array or object at path one item at a time, so a million-element array never lands in memory all at once. An empty path iterates the root container; iterating an object yields its values (use withKey for the names). Returns an IterStream.

for await (const user of cursor.iter('users')) {
  console.log(user.name);
}
Options

A trailing Standard Schema is shorthand for { schema }. The full options object:

option default meaning
select none project each member: a segment/path picks a sub-value, a field map builds an object
schema none validate each item (after select)
withKey false yield [key, value] tuples (key = member name or array index)
onInvalid 'throw' policy for items failing schema; 'skip' drops them
maxBatchCount 1000 max items fetched across the native boundary per pull
maxBatchBytes 262144 max serialized bytes held per pull (caps peak memory for large items)
for await (const row of cursor.iter('users', {
  select: { id: 'id', email: ['contact', 'email'] },
  schema: z.object({ id: z.number(), email: z.string() }),
  onInvalid: 'skip',
})) {
  console.log(row.id, row.email);
}

cursor.close()

await cursor.close(): Promise<void>;

Releases the underlying source (file handle, fetch body, etc.). Idempotent, and only on the root cursor. Prefer await using so it runs automatically when the scope ends; call it directly when you cannot use that syntax.

const cursor = await open(fromFile('./users.json'));
try {
  console.log(await cursor.get('users', 0, 'name'));
} finally {
  await cursor.close();
}

IterStream

iter returns a lazy, single-pass pipeline that mirrors the TC39 async iterator helpers.

const firstFive = await cursor
  .iter('users', { select: 'name' })
  .filter((name) => name.startsWith('A'))
  .take(5)
  .toArray();

Supports map, filter, take, drop, toArray, forEach, reduce, find, some and every

Errors

Everything bote throws extends BoteError (catch that to catch anything; branch on .code for the kind). The concrete types are PathError, ValidationError, MalformedJsonError, SourceReadError, ForwardReplayError, and ClosedCursorError. Most carry the path where the fault occurred.

import { BoteError, ValidationError } from '@botejs/core';

try {
  await cursor.get('users', 0, 'age', z.number());
} catch (err) {
  if (err instanceof ValidationError) {
    console.error(err.issues);
  }
}

Status

Pre-1.0. Still in development and APIs may change based on feedback, bugs and holy divinations from the coding gods.

After a lot of chaos, I'm finally-kinda-sorta happy with the public API. Major breaking changes seems to be slowing down so feedback from the community and dogfooding on my end is what's next.

License

MIT.