apkpure-scrapper

Simple library for simple needs.

Usage no npm install needed!

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

README

apkpure-scrapper

Simple library for simple needs.

Installation

# with yarn
yarn add apkpure-scrapper

# or with npm
npm install apkpure-scrapper

Example

import scrape from "apkpure-scrapper";

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

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

getInstagramDetails();

Tests

Tests are run using Jest

# with yarn
yarn test

# or with npm
npm run test