mediafire-dl
v1.1.0
Published
mediafire direct download link
Maintainers
Readme
mediafire-dl
A simple Node.js module to extract MediaFire direct download link and file size.detalls Give You This Module
✨ Features
- Get direct download URL
- Get file size
- Easy to use
- Promise based (async/await)
- fast
🛠️ Usage
const mf = require('mediafire-dl');
mf("https://www.mediafire.com/file/2i79lqfyntphq4m/BAT.apk/file").then((result) => {
console.log(result)
}).catch((error) => {
console.error('Promise Catch:', error);
})Sample result:-
{ status: 'true',
data: {
download: 'https://download2284.mediafire.com/nkvs7ouadgkgMBXBx1yovQ6yqL-kWX4OigWbpn38a8edX-vyIpb7qjbwXHwlvhdimTwM2OBgMJKXZ0tCj0PHa8ZZCzx3tS806yRxwy0i4gZaxe8ex5lu77D4_gYxJVewt0-rg9NlaHia6eivA88wI490_GpPnwp6WDmLkPZCuhYKXQE/2i79lqfyntphq4m/BAT.apk',
fileSize: '5.76MB',
uploadInfo: 'This file was uploaded from Sri Lanka on August 10, 2025 at 10:22 PM'
}
}📦 Installation
npm install mediafire-dl