Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

frieren-scraper

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frieren-scraper

Frieren-scraper.

  • 0.0.1
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Swiper no Swiping

Note.

For all swiper.

This repository project is a learning exercise, and as such it utilizes references from other open source repositories. No commercial use is intended, and all efforts have been made to ensure proper attribution has been given to any referenced libraries and code.

Challenge

  • Scrape only using
    • Axios
    • Cheerio

and results must be JSON Object.

Target

You decide, you can open issues what website/app and data to be scrapped.

  • Website
    • Doujindesu
    • Otakudesu
    • Youtube
    • Anoboy
    • Komiku.id
  • App
    • Status Video Wa Indonesia
    • Unsplash
    • Downloader for tiktok
      • App use rapid Api.

Progress.

  • Anime
    • Doujindesu
      • latest
      • search
      • detail
    • Otakudesu
      • latest
      • search
      • detail
    • Anoboy
      • latest
      • search
      • detail
    • Komiku.id
      • latest
      • search
      • detail
  • Downloader
    • Youtube
      • search
        • videos
      • dowload
    • Status Video Wa Indonesia
      • popular
      • search
    • Instagram
    • Tiktok
      • v1
  • Searching
    • Unsplash
      • search

Usage

Test build

Install packages.
yarn add github:xct007/frieren-scraper

Social Media.

Youtube
import { youtube } from "frieren-scraper";

// searching videos
const ArrObj = await youtube.search("rose gone mv");
console.log(ArrObj);

// fetch download url;
const ArrObj = await youtube.download("https://www.youtube.com/watch?v=xxx");
console.log(ArrObj);
Tiktok
import { tiktok } from "frieren-scraper";

// v1
const ArrObj = await tiktok.v1("https://TIKTOK_URL");
console.log(ArrObj);

// others version will added soon.
Instagram
import { instagram } from "frieren-scraper";

// v1
const ArrObj = await instagram.v1("https://instagram_URL");
console.log(ArrObj);

// others version will added soon.
  • Story WhatsApp Videos.
import { storyWa } from "frieren-scraper";

// fetch popular videos
const ArrObj = await storyWa.popular()'
console.log(ArrObj)

// search videos by query
const ArrObj = await storyWa.search("query")'
console.log(ArrObj)

Anime/comic.

Komiku.id.
import { komikuId } from "frieren-scraper";

// fetch latest comic
const ArrObj = await komikuId.latest()
console.log(ArrObj)

// search comic by query
const ArrObj = await komikuId.search("query")'
console.log(ArrObj)

// fetch comic/chapter detail by url.
const ArrObj = await komikuId.search("https://KOMIKUID_URL")'
console.log(ArrObj)

Otakudesu.
import { otakudesu } from "frieren-scraper";

// fetch latest anime
const ArrObj = await otakudesu.latest()
console.log(ArrObj)

// search anime by query
const ArrObj = await otakudesu.search("query")'
console.log(ArrObj)

// fetch anime detail by url
const ArrObj = await otakudesu.search("https://OTAKUDESU_URL")'
console.log(ArrObj)

Anoboy.
import { anoboy } from "frieren-scraper";

// fetch latest anime
const ArrObj = await anoboy.latest()
console.log(ArrObj)

// search anime by query
const ArrObj = await anoboy.search("query")'
console.log(ArrObj)

// fetch anime detail by url
const ArrObj = await anoboy.search("https://ANOBOY_URL")'
console.log(ArrObj)

Searching?

Unsplash.
import { unsplash } from "frieren-scraper";

// Search images by query
const ArrObj = await unsplash.search("query");

Keywords

FAQs

Package last updated on 25 Feb 2023

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