New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

google-play-scraper

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-play-scraper - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

5

lib/google-play-scraper.js

@@ -16,2 +16,3 @@ var Promise = require("promise");

app.url = url;
app.appId = id;
resolve(app);

@@ -44,3 +45,5 @@ })

description: $(".id-app-orig-desc").text(),
descriptionHTML: $(".id-app-orig-desc").html()
descriptionHTML: $(".id-app-orig-desc").html(),
developer: $("[itemprop='author'] [itemprop='name']").text(),
genre: $("[itemprop='genre']").text()
};

@@ -47,0 +50,0 @@ }

2

package.json
{
"name": "google-play-scraper",
"version": "0.0.1",
"version": "0.0.2",
"description": "scrapes basic app data from google play store",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,3 +9,3 @@ # google-play-scraper

```javascript
var GooglePlay = require('google-play-scrapper');
var GooglePlay = require("google-play-scrapper");

@@ -25,2 +25,3 @@ GooglePlay("com.dxco.pandavszombies")

{
appId: "com.dxco.pandavszombies",
title: "Panda vs Zombie: Elvis rage",

@@ -34,4 +35,6 @@ url: "https://play.google.com/store/apps/details?id=com.dxco.pandavszombies&hl=en",

description: "Everyone in town has gone zombie.",
descriptionHTML: "Everyone in town has gone <b>zombie</b>."
descriptionHTML: "Everyone in town has gone <b>zombie</b>.",
developer: "DxCo Games",
genre: "Action"
}
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc