Socket
Socket
Sign inDemoInstall

ctk-anime-scraper

Package Overview
Dependencies
16
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ctk-anime-scraper

very easy to use package to scrap anime from gogoanime.sh


Version published
Maintainers
1
Created

Readme

Source

CTK ANIME SCRAPER

scraper to scrap anime from gogoanime

Search And Scrap

const Anime = require("ctk-anime-scraper");

Anime.search('demon slayer').then((data) => {
  if(!data.length) return console.log("No Anime with this name found")
	Anime.fetchAnime(data[0].link, { episode: 1 }).then(data => console.log(data))
});

Scrap in Mass

const Anime = require("ctk-anime-scraper");

Anime.search('naruto').then((data) => {
  if(!data.length) return console.log("No Anime with this name found")
	Anime.fetchAnime(data[0].link, { mass_episodes: 10 }).then(data => console.log(data))
});

Scrap Whole Data

const Anime = require("ctk-anime-scraper");

Anime.search('naruto').then((data) => {
  if(!data.length) return console.log("No Anime with this name found")
	Anime.fetchAnime(data[0].link).then(data => console.log(data))
});

Documents

Coming sooon.........................

JOIN US

https://withwin.in/dbd

Keywords

FAQs

Last updated on 04 Feb 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc