npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@xct007/frieren-scraper

v0.0.2

Published

Scrape module

Downloads

23,059

Readme

Table of Contents

Target

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

  • [x] Doujindesu
  • [x] Otakudesu
  • [x] Youtube
  • [x] Anoboy
  • [x] Komiku.id
  • [x] Danbooru
  • [x] Apkmody.io
  • [x] PhotoFunia
  • [ ] Hentai.tv
  • [x] bokepsin

Progress

  • [x] Doujindesu
    • [x] latest
    • [x] search
    • [x] detail
  • [x] Otakudesu
    • [x] latest
    • [x] search
    • [x] detail
  • [x] Anoboy
    • [x] latest
    • [x] search
    • [x] detail
  • [x] Komiku.id
    • [x] latest
    • [x] search
    • [x] detail
  • [ ] Hentai.tv
    • [ ] etc.
  • [x] Youtube
    • [x] search
      • [x] videos
    • [x] dowload
  • [x] Status Video Wa Indonesia
    • [x] popular
    • [x] search
  • [x] Instagram
  • [x] Tiktok
  • [x] Facebook
  • [ ] ZippyShare. reference
    • [x] download
  • [x] Pinterest
  • [ ] Searching
  • [x] Unsplash
    • [x] search
  • [x] Danbooru
    • [x] search
  • [x] Music
    • [x] search
  • [x] Apkmody
    • [x] search
    • [x] detail
  • [x] PhotoFunia
    • [x] text
      • [x] 1 param.
      • [ ] 2 param
    • [x] image
      • [x] Buffer
  • [x] Image Diffusion.
    • [x] stable
    • [ ] anime
  • [x] h5.tu.qq.com
    • [x] From image url
  • [x] Bokepsin
    • [x] latest
    • [x] search
    • [x] detail

Usage

Installations.

Using GitHub version to test latest fix/update.

npm install github:xct007/frieren-scraper

Notice.

Package name changed to @xct007/frieren-scraper

Example use

Downloader

Youtube

import { youtube } from "@xct007/frieren-scraper";

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

// fetch download url;
const Obj = await youtube.download("https://www.youtube.com/watch?v=xxx");
console.log(Obj);

Tiktok

import { tiktok } from "@xct007/frieren-scraper";

// v1. fetch detail/download url
const Obj = await tiktok.v1("https://TIKTOK_URL");
console.log(Obj);

// others version will added soon.

Instagram

import { instagram } from "@xct007/frieren-scraper";

// v1. fetch direct download url
const Obj = await instagram.v1("https://instagram_URL");
console.log(Obj);

// others version will added soon.

Facebook.

import { facebook } from "@xct007/frieren-scraper";

// v1. fetch direct download url
const Obj = await facebook.v1("https://FACEBOOK_URL");
console.log(Obj);

// others version will added soon.

Story WhatsApp Videos.

import { storyWa } from "@xct007/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);

ZippyShare. (Not working)

import { zippyshare } from "@xct007/frieren-scraper";

// fetch direct download url
const Obj = await zippyshare.download("https://ZIPPYSHARE_URL");
console.log(Obj);

Pinterest.

import { pinterest } from "@xct007/frieren-scraper";

// v1. fetch direct download url
const Obj = await pinterest.v1("https://PINTEREST_URL");
console.log(Obj);

// others version will added soon.

Anime/comic.

Komiku.id.

import { komikuId } from "@xct007/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 Obj = await komikuId.detail("https://KOMIKUID_URL");
console.log(Obj);

Otakudesu.

import { otakudesu } from "@xct007/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 Obj = await otakudesu.detail("https://OTAKUDESU_URL");
console.log(Obj);

Anoboy.

import { anoboy } from "@xct007/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 Obj = await anoboy.search("https://ANOBOY_URL");
console.log(Obj);

Doujindesu.

import { doujindesu } from "@xct007/frieren-scraper";

// fetch latest doujin
const ArrObj = await doujindesu.latest();
console.log(ArrObj);

// search doujin by query
const ArrObj = await doujindesu.search("query");
console.log(ArrObj);

// fetch doujin detail by url
const Obj = await doujindesu.detail("https://DOUJINDESU_URL");
console.log(Obj);

Searching

Unsplash.

import { unsplash } from "@xct007/frieren-scraper";

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

Danbooru.

import { danbooru } from "@xct007/frieren-scraper";

// Search images by query
const ArrObj = await danbooru.search("query");
console.log(ArrObj);

Music.

import { music } from "@xct007/frieren-scraper";

// Search music and audio url by query.
// more short query, more results found.
const ArrObj = await music.search("query");
console.log(ArrObj);

Apkmody.

import { apkmody } from "@xct007/frieren-scraper";

// search apps/games
const ArrObj = await apkmody.search("query");
console.log(ArrObj);

// fetch direct download url
// High memory usage. LOL
const Obj = await apkmody.download("https://APKMODY_URL");
console.log(Obj);

Maker.

PhotoFunia.

import { photofunia } from "@xct007/frieren-scraper";

// get list all effects key.
const ArrObj = await photofunia.listEffects();
console.log(ArrObj);

// Generate text on image by key
const key = "balloon".
const Obj = await photofunia.create(key, {
  type: "text", // pass type as text.
  input: "Text should generate"
});
console.log(Obj);

// Image filter
const key = "the-frame".
const Obj = await photofunia.create(key, {
  type: "image", // pass type as image.
  // input only accept Buffer
  input: fs.readFileSync("./path_image.jpg") // LOL af
});
console.log(Obj);

Image Diffusion.

import { diffusion } from "@xct007/frieren-scraper";
import { writeFileSync } from "fs";

// stable diffusion.
const prompt = "1girl, blush, looking to viewer, warm smile,";
const seed = 123456789; // (optional). default random.

const Obj = await diffusion.stable(prompt, seed);
console.log(Obj);
/*
  {
    process_time: Number,
    seed: "String",
    ext: "String",
    mimetype: "String",
    base64Img: "String" // encodedBase64
  }
*/

// example save to disk
const saveFilename = `./image.${Obj.ext}`;

const buffer = Buffer.from(Obj.base64Img, "base64");

writeFileSync(saveFilename, buffer);

// Anime diffusion will be added
// if this repo star reach >= 50.

type

type StableDiffusionResult = {
  process_time: number;
  seed: string;
  ext: string;
  mimetype: string;
  base64Img: string;
};

h5.tu.qq

import { h5tuqq } from "@xct007/frieren-scraper";

// full path image url.
const imageUrl = "https://itsrose.my.id/rose.jpeg"

const data = await h5tuqq(imageUrl);

// if no error
if (!data.error) {
  console.log(data);
  /**
    {
      "image": "https://...singleLink",
      "images": [
        "https://...link-1",
        "https://...link-2",
        ...
      ]
    }
  */

} else {
  console.log(data.message)
}

Nsfw

Bokepsin

import { bokepsin } from "@xct007/frieren-scraper";

// Get latest
const ArrObj = await bokepsin.latest();
console.log(ArrObj);

// search
const ArrObj = await bokepsin.search("query");
console.log(ArrObj);

// detail
const Obj = await bokepsin.latest("URL");
console.log(ArrObj);

type

type BokepSinLatestSearchResults = {
  title: string;
  views: string;
  duration: string;
  url: string;
  thumbnail: string;
}[];

type BokepSinDetail = {
  title: string;
  views: string;
  duration: string;
  thumbnail: string;
  embed: string;
};

Error Handling

There is probably no need to use statement try/catch, it is already handle.

import { youtube } from "@xct007/frieren-scraper";

youtube.download("YOUTUBE_URL").then((Obj) => {
  if (Obj.error) {
    // Error
    console.log(Obj.);
    /*
      {
        "error": true,
        "message": ""
      }
    */
  } else {
    // ...Your code
    console.log(Obj);
  }
});

// Promise
const Obj = await youtube.download("YOUTUBE_URL");

if (Obj.error) {
  // Error
  console.log(Obj);
  /*
    {
      "error": true,
      "message": ""
    }
  */
} else {
  // ...Your code.
  console.log(Obj);
}

Note.

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.