Hacker News
此示例介绍了如何使用 Cheerio 从 Hacker News 网站加载数据。每个页面将创建一个文档。
设置
- npm
- Yarn
- pnpm
npm install cheerio
yarn add cheerio
pnpm add cheerio
用法
import { HNLoader } from "@langchain/community/document_loaders/web/hn";
const loader = new HNLoader("https://news.ycombinator.com/item?id=34817881");
const docs = await loader.load();