Package Exports
- samsung-app-store-scraper
- samsung-app-store-scraper/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (samsung-app-store-scraper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
samsung-app-store-scraper
Node.js module to scrape application data from the Samsung app store.
Related Projects
- amazon-app-store-scraper: a scraper with a similar interface for the Amazon App Store.
- roku-store-scraper: a scraper with a similar interface for the Roku App Store.
- galaxy-store-scraper: a scraper with a similar interface for the Galaxy Store.
Inspired by projects:
- app-store-scraper: a scraper with a similar interface for the iTunes app store.
- google-play-scraper: a scraper with a similar interface for the Google Play.
⚠️ Notes
This project is under development, thus a lot of things(most) are not implemented yet.
Feel free to contribute!
The API contract of this module adhered to the contract of the projects listed above.
Installation
npm install samsung-app-store-scraperUsage
Available methods:
- app: Retrieves the full detail of an application.
app
Retrieves the full detail of an application. Options:
appId: the package id of the application (the id route on the url).
Example:
import samsungStoreScraper from "samsung-app-store-scraper";
samsungStoreScraper.app({appId: 'com.vizorapps.klondike.am'})
.then(console.log, console.log);Results:
{
id: 'G00002687241',
title: 'Plex',
category: 'Videos',
description: 'The Plex application allows you to use your Samsung device to browse and play your videos using the Plex Media Server installed on your Mac, PC or Linux computer. Experience your media on a visually stunning, easy to use interface on your TV. Your media has never looked this good!YOU MUST HAVE THE PLEX MEDIA SERVER INSTALLED AND RUNNING ON YOUR NETWORK TO STREAM MEDIA, GET IT AT https://plex.tv/downloadsDoes this App work on my Samsung device?\n' +
' Check your deviceG15147002586SAMSUNG TV PLUS\n' +
' or\n' +
' See all compatible\n' +
' devices.G15147002586\n' +
' Find answers to common issues about Samsung Apps and how it works.Read More ArticlesSee More Videos'
}If app does not exist the following value will be resolved:
null