Social Media Downloader by AbroDevTeam








---
bash
npm install ab-downloader
`$3
---
π¨ 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
$3
`javascript
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
$3
`javascript
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));
`
View Sample Response
`json
[
{
developer: 'AbroCodes',
contactme: 'Telegram: abrocodes',
thumbnail: '...',
url: '...'
resolution: undefined,
shouldRender: undefined
}
]
`
$3
`javascript
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));
`
View Sample Response
`json
[
{
developer: 'AbroCodes',
contactme: 'Telegram: abrocodes',
title: ...,
title_audio: ...,
thumbnail: ...,
videoοΌοΌ»],
audio: []
}
]
`
$3
`javascript
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));
`
View Sample Response
`json
[
{
developer: 'AbroCodes',
contactme: 'Telegram: abrocodes',
Normal_video: ...,
HD: ...
}
]
`
$3
`javascript
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));
`
View Sample Response
`json
{
developer: 'AbroCodes',
contactme: 'Telegram: abrocodes',
title: '...',
url: [
{
hd: '...'
},
{
sd: '...'
}
]
}
`
$3
`javascript
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));
`
View Sample Response
`json
CHECK IT OUT YOURSELF β€οΈ
`
$3
`javascript
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));
`
View Sample Response
`json
CHECK IT OUT YOURSELF β€οΈ
`
$3
`javascript
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));
`
View Sample Response
`json
CHECK IT OUT YOURSELF β€οΈ
`
$3
`javascript
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));
`
View Sample Response
`json
CHECK IT OUT YOURSELF β€οΈ
`
$3
`javascript
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));
`
View Sample Response
`json
CHECK IT OUT YOURSELF β€οΈ
``---
Detailed guides, examples, and API references
---
> ### π 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.
---
---
AB-Downloader is licensed under the MIT License
Feel free to use, modify, and distribute this software
---

---
Made with β€οΈ by AbroCodes