apkpure-scraper
v1.1.0
Published
Simple library for simple needs.
Downloads
5
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