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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gxaym1/savetube

v1.0.0

Published

Orx Scraper — save-tube.com scraper: mp4plus and aflamp4 download link extraction.

Readme

@gxaym1/savetube

Orx Scraper — save-tube.com download link extractor for mp4plus and aflamp4.
Pure ESM, plain JavaScript, no build step.

Install

npm install @gxaym1/savetube

Usage

import SaveTube from "@gxaym1/savetube";

// mp4plus
const mp4 = await SaveTube.mp4plus.getLinks("https://mp4plus.net/video/abc");
console.log(mp4.downloadLinks);
// [{ quality:"720p", format:"mp4", url:"...", type:"mp4plus" }, ...]

// aflamp4
const aflam = await SaveTube.aflamp4.getLinks("https://aflamp4.com/movie/xyz");
console.log(aflam.downloadLinks);
// [{ quality:"1080p", format:"mp4", url:"...", type:"aflamp4" }, ...]
// also includes HLS: { quality:"HLS", format:"m3u8", url:"...", type:"aflamp4" }

Named imports

import { mp4plusGetLinks, mp4plusResolve, aflamP4GetLinks, aflamP4Resolve } from "@gxaym1/savetube";

Sub-path imports

import { getLinks, resolve } from "@gxaym1/savetube/mp4plus";
import { getLinks, resolve } from "@gxaym1/savetube/aflamp4";

API

mp4plus

mp4plus.getLinks(pageUrl, options?)

Scrape all download links from an mp4plus page.

Returns:

{
  videoUrl: string,
  title?:   string,
  thumbnail?: string,
  downloadLinks: DownloadLink[]
}

mp4plus.resolve(embedUrl, options?)

Same as getLinks but returns only DownloadLink[]. Never throws — returns [] on error.

mp4plus.isUrl(url)

Returns true if the URL belongs to an mp4plus domain.


aflamp4

aflamp4.getLinks(pageUrl, options?)

Scrape all download links (mp4 + HLS m3u8) from an aflamp4 page.

Returns:

{
  videoUrl: string,
  title?:   string,
  thumbnail?: string,
  downloadLinks: DownloadLink[]
}

aflamp4.resolve(embedUrl, options?)

Same as getLinks but returns only DownloadLink[]. Never throws — returns [] on error.

aflamp4.isUrl(url)

Returns true if the URL belongs to an aflamp4 domain.


Options (all functions)

| Option | Type | Default | Description | |---|---|---|---| | timeout | number | 30000 | Request timeout (ms) | | headers | object | — | Extra HTTP headers | | proxy | string | — | Proxy URL (http://host:port) |

Data shapes

// DownloadLink
{
  quality:  "1080p",    // "4K" | "1080p" | "720p" | "480p" | "360p" | "HLS" | "CAM" | "auto"
  format:   "mp4",      // "mp4" | "m3u8" | "mkv" | ...
  url:      "https://...",
  size?:    "800MB",
  type:     "mp4plus"   // "mp4plus" | "aflamp4"
}

License

MIT © gxaym1