Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apkmirror-client

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apkmirror-client

Download APKs from APKMirror.com

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-70%
Maintainers
1
Weekly downloads
 
Created
Source

apkmirror-client

Download APKs from APKMirror.com

Example

Download Whatsapp

'use strict'

const apk = require('apkmirror-client')
const fs = require('fs')

apk.searchForApps('whatsapp', (err, res) => { // search for whatsapp
  if (err) throw err
  let whatsapp = res.filter(r => r.app.name === 'WhatsApp Messenger')[0] // this makes sure we don't get any "whatsapp gold" stuff
  apk.getAppPage(whatsapp, (err, page) => { // now download details
    if (err) throw err
    console.log(page)

    page.versions.filter(v => !v.beta)[0].loadRelease((err, release) => { // now get latest non-beta release
      if (err) throw err
      console.log(release)

      release.estimateBestCandidate('arm64').loadVariant((err, download) => { // now get the arm64 release
        if (err) throw err
        console.log(res)
        download.downloadAPK((err, apk) => { // and finally download the apk
          if (err) throw err
          apk.pipe(fs.createWriteStream('./whatsapp.apk')).on('close', () => { // ...into this file
            console.log('Saved as whatsapp.apk!')
          })
        })
      })
    })
  })
})

Keywords

FAQs

Package last updated on 10 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc