├── .gitignore ├── Procfile ├── README.md ├── api.js ├── index.js ├── package.json └── scrapers ├── app.js └── search.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/README.md -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/api.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/package.json -------------------------------------------------------------------------------- /scrapers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/scrapers/app.js -------------------------------------------------------------------------------- /scrapers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basiclines/GooglePlay-JSAPI/HEAD/scrapers/search.js --------------------------------------------------------------------------------