2ch-fetcher
TypeScript icon, indicating that this package has built-in type declarations

2.3.0 • Public • Published

2ch-fetcher

FOSSA Status

2ch fetcher

Install

npm install 2ch-fetcher

Usage

import { BBSMenu, Thread } from "./";
 
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.board("河川・ダム等").fetchThreads();
    console.log(threads.titles);
    console.log(threads.searchThreads(/なんとか/).map((thread) => thread.title));
    const posts = await threads.thread("なんとかスレ").fetchPosts();
    const post = posts.post(1); // 1 origin
    if (post) { // あぼーん post is undefined
        console.log(post.name);
    }
    console.log(posts.range(1, 2));
}
 
async function single() {
    const thread = new Thread("http://example.com/foobar/dat/123456789.dat", "title", 42);
    const posts = await thread.fetchPosts();
    console.log(posts.post(1));
}
 
hierarchal().then(single);

License

This is released under MIT License

FOSSA Status

Readme

Keywords

none

Package Sidebar

Install

npm i 2ch-fetcher

Weekly Downloads

4

Version

2.3.0

License

MIT

Unpacked Size

26.9 kB

Total Files

29

Last publish

Collaborators

  • narazaka