1.1.0 • Published 3 years ago

apkpure-scraper v1.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

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