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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ab-downloader

v1.0.1

Published

Social Media Downloader by AbroDevTeam

Readme

🚀 AB-DOWNLOADER

Typing SVG AB-Downloader Logo

🎯 Universal Media Downloader

Download content from Instagram, TikTok, Facebook, YouTube, and more! npm version downloads license GitHub stars


📦 Installation

Node.js

npm install ab-downloader

Python

pip install ab-downloader

📚 Python Documentation: Complete Python Setup Guide


🎨 Features

| Platform | Status | Features | |----------|--------|----------| | 📸 Instagram | ✅ Active | Posts, Stories, Reels | | 🎵 TikTok | ✅ Active | Videos, No Watermark | | 📘 Facebook | ✅ Active | Videos, Posts | | 🐦 Twitter | ✅ Active | Videos, Images | | 🎬 YouTube | ✅ Active | Videos, Audio | | 📁 MediaFire | ✅ Active | Direct Downloads | | 🎬 CapCut | ✅ Active | Templates | | 💾 Google Drive | ✅ Active | Public Files | | 📌 Pinterest | ✅ Active | Images, Search | | 🔄 AIO | 🔧 Maintenance | Universal Downloader |


🚀 Quick Start

🌟 AIO - All in One (Under Maintenance)

const { aio } = require('ab-downloader');

const url = 'https://www.instagram.com/p/ByxKbUSnubS/';
aio(url)
  .then(data => console.log(data))
  .catch(err => console.error(err));

📱 Platform Examples

📸 Instagram

const { igdl } = require('ab-downloader');

const url = 'https://www.instagram.com/p/ByxKbUSnubS/';
igdl(url)
  .then(data => {
    console.log('✅ Instagram content downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

🎵 TikTok

const { ttdl } = require('ab-downloader');

const url = 'https://www.tiktok.com/@username/video/1234567890';
ttdl(url)
  .then(data => {
    console.log('✅ TikTok video downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

📘 Facebook

const { fbdown } = require('ab-downloader');

const url = 'https://www.facebook.com/watch/?v=1393572814172251';
fbdown(url)
  .then(data => {
    console.log('✅ Facebook video downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

🐦 Twitter

const { twitter } = require('ab-downloader');

const url = 'https://twitter.com/username/status/1229369819511709697';
twitter(url)
  .then(data => {
    console.log('✅ Twitter media downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

🎬 YouTube

const { youtube } = require('ab-downloader');

const url = 'https://youtube.com/watch?v=C8mJ8943X80';
youtube(url)
  .then(data => {
    console.log('✅ YouTube video downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

📁 MediaFire

const { mediafire } = require('ab-downloader');

const url = 'https://www.mediafire.com/file/941xczxhn27qbby/file.apk/file';
mediafire(url)
  .then(data => {
    console.log('✅ MediaFire file downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

🎬 CapCut

const { capcut } = require('ab-downloader');

const url = 'https://www.capcut.com/template-detail/7299286607478181121';
capcut(url)
  .then(data => {
    console.log('✅ CapCut template downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

💾 Google Drive

const { gdrive } = require('ab-downloader');

const url = 'https://drive.google.com/file/d/1thDYWcS5p5FFhzTpTev7RUv0VFnNQyZ4/view';
gdrive(url)
  .then(data => {
    console.log('✅ Google Drive file downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

📌 Pinterest

const { pinterest } = require('ab-downloader');

// Download by URL
const url = 'https://pin.it/4CVodSq';
pinterest(url)
  .then(data => {
    console.log('✅ Pinterest image downloaded!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

// Search Pinterest
pinterest('Nature Photography')
  .then(data => {
    console.log('✅ Pinterest search results!');
    console.log(data);
  })
  .catch(err => console.error('❌ Error:', err));

📖 Documentation

🔗 Complete API Documentation

Detailed guides, examples, and API references


⚠️ Important Notes

🔒 Legal & Ethical Use

  • ✅ Only download public or accessible content
  • ✅ Ensure you have permission or copyright to download media
  • ✅ Respect platform terms of service
  • ❌ This application is not affiliated with any social media platform

🛡️ Disclaimer

Users are responsible for complying with applicable laws and platform policies when using this downloader.


🤝 Contributing

We welcome contributions! 🎉

GitHub Issues GitHub Pull Requests

🐛 Found a Bug?

  1. Check existing issues
  2. Create a new issue with detailed description
  3. Include error logs and reproduction steps

💡 Want to Contribute?

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📄 License

AB-Downloader is licensed under the MIT License

Feel free to use, modify, and distribute this software


🌟 Star this repo if you found it helpful!

GitHub stars


Made with ❤️ by AbroTech