UNPKG

@boboiboyturuu_nih/kiryuu-scraper

Version:

Scraper API for Kiryuu manga site

17 lines (12 loc) 428 B
import { mangadetails } from 'kiryuu-scraper'; const mangaUrl = 'https://kiryuu.org/manga/some-manga'; async function fetchMangaDetails() { try { console.log('Fetching manga details...'); const details = await mangadetails(mangaUrl); console.log('Manga Details:', details); } catch (error) { console.error('Error fetching manga details:', error.message); } } fetchMangaDetails();