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 🙏

© 2024 – Pkg Stats / Ryan Hefner

aptoide-scraper

v1.0.1

Published

Search and get apk from aptoide.

Downloads

227,189

Readme

Search and get apk fron Aptoide


Example search

const { 
search
} = require('aptoide-scraper')

let search = await search('whatsapp')
console.log(search)

OutPut

[
  { name: 'WhatsApp Messenger', id: 'com.whatsapp' },
  { name: 'Whatsapp Status Saver', id: 'com.sas.statussaverapp' },
  { name: 'WhatsApp Direct Message', id: 'com.verox.whatsappdirect' },
  {
    name: 'CallApp: Caller ID, Call Blocker & Recording Calls',
    id: 'com.callapp.contacts'
  },
  {
    name: 'Status Downloader for Whatsapp',
    id: 'com.freeapps.statussaverforwa'
  },
  { name: 'Whatsapp Web Pro', id: 'com.sas.whatswebpro' },
  { name: 'WhatsApp Spy', id: 'net.oz.team.chat.lives' },
  { name: 'Call Recorder', id: 'polis.app.callrecorder' },
  { name: 'WhatsApp Business', id: 'com.whatsapp.w4b' },
  { name: 'Cleaner Fast for WhatsApp', id: 'catch_.me_.if_.you_.can_' },
  { name: 'Hide WhatsApp', id: 'com.nabiltitou.whatshide' },
  {
    name: 'JasminChat - Live Video Chat with Strangers',
    id: 'com.jasmin_video.live_chat'
  },
  { name: 'tonos.ringtones.whatsapp', id: 'tonos.ringtones.whatsapp' },
  { name: 'Whatsapp Swab', id: 'com.soon.whatapp' },
  {
    name: 'Whatsapp Cleaner',
    id: 'io.makeroid.soumik2001_SM.WhatsAppCleanr'
  },
  {
    name: 'Stickers For WhatsApp - STICKER MAKER',
    id: 'com.wastickers.wastickerapps'
  },
  { name: 'WhatsApp Wallpaper', id: 'com.whatsapp.wallpaper' },
  { name: 'Autoreply Whatsapp', id: 'com.chatautoreplyplus' },
  { name: 'Curiosidades WhatsApp', id: 'com.curiosidades.whatsapp' },
  { name: 'Schat whatsapp', id: 'com.edwinnmd.schatwhatsapp' },
  {
    name: 'Colors for WhatsApp',
    id: 'com.eightsoft.wallpaperwhatsappgradients'
  },
  { name: 'Beta Whatsapp updates Plus', id: 'com.elite.whatsapppro' },
  { name: 'Phone 2 Location - Caller Id', id: 'and.p2l' },
  {
    name: 'Videos de Risa WhatsApp',
    id: 'com.videos.de.risa.para.whatsapp'
  },
  { name: 'Beta Whatsapp Updates Lite', id: 'com.elite.whatsapp' },
  { name: 'Wallpaper Whatsapp HD', id: 'com.wkapp.fondospantalla' },
  { name: 'BIG Launcher', id: 'name.kunes.android.launcher.demo' },
  { name: 'Whatsapp News &Android Updates', id: 'com.kingstellw.a' },
  {
    name: 'Beta Updater for WhatsApp',
    id: 'com.javiersantos.whatsappbetaupdater'
  },
  {
    name: 'Free Ringtones whatsapp',
    id: 'com.wkapp.tonosnotificaciones'
  },
  {
    name: 'BIG Phone for Seniors',
    id: 'name.kunes.android.launcher.bigphone'
  },
  {
    name: 'Create Stickers for WhatsApp',
    id: 'com.didi.createstickers'
  }
]

Example dl

const { 
download
} = require('aptoide-scraper')

let data = await download('com.whatsapp')
console.log(data)

OutPut

{
  name: 'WhatsApp Messenger',
  lastup: '2023-03-30 09:05:47',
  package: 'com.whatsapp',
  size: '78.36 MB',
  icon: 'https://pool.img.aptoide.com/mark8/1227f7edc0704ff99f73e0425d85ab5d_icon.png',
  dllink: 'https://pool.apk.aptoide.com/mark8/com-whatsapp-230717004-64686734-67cc547bc25d933b1b1434544048f5bd.apk'
}