spb/tendril Public
Tendril — web ingestion platform (scrape/crawl/map/search) on macOS Apple Silicon: WebKit fidelity, authenticated pages, deterministic testable extraction. A self-hosted Firecrawl alternative.
JavaScript 82.6%
TypeScript 11.8%
HTML 5.3%
1// author: simon-pierre boucher <contact@spboucher.ai>2export { extract } from "./pipeline.js";3export { htmlToMarkdown, createTurndown, postProcess } from "./markdown.js";4export { harvestStructured } from "./structured.js";5export { extractMainContent, densityExtract } from "./boilerplate.js";6export { extractLinks, extractLinksFromHtml } from "./links.js";7export {8 PIPELINE_VERSION,9 type ExtractOptions,10 type ExtractResult,11 type PageMetadata,12 type StructuredData,13 type PageLink,14} from "./types.js";15