Default Nyora SDK client — a thin cloud client.
const client = new Nyora();const source = await client.sources.find("mangadex");const page = await client.manga.popular(source.id);const details = await client.manga.details(source.id, page.entries[0].url); Copy
const client = new Nyora();const source = await client.sources.find("mangadex");const page = await client.manga.popular(source.id);const details = await client.manga.details(source.id, page.entries[0].url);
Readonly
The underlying cloud transport.
Service for listing and finding sources.
Service for browsing, search, and details.
No-op: kept for API compatibility (fetch needs no teardown).
Default Nyora SDK client — a thin cloud client.
Example