apkpure-scraper

Simple library for simple needs.

Usage no npm install needed!

<script type="module">
  import apkpureScraper from 'https://cdn.skypack.dev/apkpure-scraper';
</script>

README

apkpure-scraper

Simple library for simple needs.

Installation

# with yarn
yarn add apkpure-scraper

# or with npm
npm install apkpure-scraper

Example

import scrape from "apkpure-scraper";

async function getInstagramDetails() {
  const { downloadLink, title, version, type } = await scrape(
    "com.instagram.android"
  );

  console.log(downloadLink, title, version, type);
}

getInstagramDetails();

Tests

Tests are run using Jest

# with yarn
yarn test

# or with npm
npm run test