🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

zoro-to-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoro-to-api

API wrapper for zoro.to

1.0.2
latest
Source
npm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Zoro.to API

A simple wrapper for the Zoro.to API

Documentation

Installation

# npm
npm install zoro-to-api

# yarn
yarn add zoro-to-api

Basic Usage

Javascript

const Zoro = require('zoro-to-api');

// Change Horimiya to whatever you want to search for
let zoroResults = await Zoro.zoroSearch("Horimiya")  

// Get the first result
let horimiya = zoroResults[0] 

// Get the info for the first result
let info = Zoro.getAnimeInfoByName(horimiya.eng_title); 

// Get the episodes for the first result
let eps = Zoro.getEpList(horimiya.eng_title); 

// Get the first episode
let firstEpisode = eps.episodes[0];

// Get the servers for the first episode
let servers = Zoro.getEpisodeServers(firstEpisode.epId); 

// Choose out of 4 servers
let subbed = servers.serversSub[0] 

// Get the stream server
let streamServer = Zoro.getStreamsById(subbed.serverId); 

// Your iframe link
console.log(streamServer.link) 

//* ⚠ Make sure you read the docs for the functions you use

Typescript

import Zoro from 'zoro-to-api';

...

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Make sure to update tests as appropriate.

License

MIT

FAQs

Package last updated on 26 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts