2ch-fetcher-with-proxy 中文文档教程

发布于 4年前 浏览 20 更新于 3年前

2ch-fetcher-with-proxy

a fork of 2ch fetcher.

Install

npm install 2ch-fetcher-with-proxy

Usage

import { BBSMenu, Thread } from "2ch-fetcher-with-proxy";

async function hierarchal() {
    const menu = new BBSMenu(); // default url is bbsmenu of 2ch.sc
    const boards = await menu.fetchBoards();
    console.log(boards.names);
    const threads = await boards.name("河川・ダム等").fetchThreads();
    console.log(threads.titles);
    console.log(threads.searchByTitle(/なんとか/).map((thread) => thread.title));
    const posts = await threads.title("なんとかスレ").fetchPosts();
    const post = posts.index(1); // 1 origin
    if (post) { // あぼーん post is undefined
        console.log(post.name);
    }
    console.log(posts.indexRange(1, 2));
}

async function single() {
    const thread = new Thread("https://example.com/foobar/dat/123456789.dat", "title", 42);
    const posts = await thread.fetchPosts();
    console.log(posts.index(1));
}

hierarchal().then(single);

License

This is released under MIT License

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文