Socket
Socket
Sign inDemoInstall

ctk-anime-scraper

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

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
Weekly downloads
30
increased by233.33%
Maintainers
2
Weekly downloads
 
Created
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

Package last updated on 05 Feb 2021

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc