1.0.1-1 • Published 2 years ago

any-apk-dl v1.0.1-1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

any-apk-dl

A package to download apk based on package name from various sources

Vulnerabilities

INSTALL

npm i any-apk-dl

USAGE

const anyApkDl=require("any-apk-dl");
const provider=anyApkDl();

provider.download("com.whatsapp","./apks/").then(res=>{
    console.log(res);
})

On Successful download these information will be available

{
  download_status: 'success',
  file_name: 'com.whatsapp.apk',
  full_path: './apks/com.whatsapp.apk'
}