Socket
Socket
Sign inDemoInstall

apkmirror-client

Package Overview
Dependencies
96
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.1.2

example.js

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="0.1.2"></a>
## [0.1.2](https://github.com/mkg20001/apkmirror-client/compare/v0.1.1...v0.1.2) (2018-05-10)
### Features
* README, cleanup, updates and fixes ([fe4043e](https://github.com/mkg20001/apkmirror-client/commit/fe4043e))
<a name="0.1.1"></a>

@@ -2,0 +12,0 @@ ## [0.1.1](https://github.com/mkg20001/apkmirror-client/compare/v0.1.0...v0.1.1) (2017-12-09)

16

package.json
{
"name": "apkmirror-client",
"version": "0.1.1",
"description": "Client to download APKs from Apkmirror",
"version": "0.1.2",
"description": "Download APKs from APKMirror.com",
"main": "src/index.js",

@@ -9,5 +9,5 @@ "scripts": {

"lint": "aegir lint",
"build": "aegir build",
"build": "aegir build -t node",
"test:node": "aegir test -t node",
"release": "aegir release",
"release": "aegir release -t node",
"release-minor": "aegir release --type minor",

@@ -29,7 +29,7 @@ "release-major": "aegir release --type major",

"debug": "^3.1.0",
"jquery": "^3.2.1",
"jsdom": "^11.5.1"
"jquery": "^3.3.1",
"jsdom": "^11.10.0"
},
"devDependencies": {
"aegir": "^12.2.0",
"aegir": "^13.1.0",
"chai": "^4.1.2",

@@ -50,4 +50,4 @@ "dirty-chai": "^2.0.1"

"contributors": [
"mkg20001 <mkg20001@gmail.com>"
"Maciej Krüger <mkg20001@gmail.com>"
]
}

@@ -58,7 +58,4 @@ 'use strict'

downloadAPK: (url, cb) => {
get(url, {parser: 'appDownloadPage'}, (err, url) => {
if (err) return cb(err)
log('download apk from %s', url)
cb(null, request.get(url))
})
log('download apk from %s', url)
cb(null, request.get(url))
}

@@ -65,0 +62,0 @@ }

'use strict'
const debug = require('debug')
const log = debug('apkmirror-client:app:page')
const appRow = require('./appRow')

@@ -49,3 +52,5 @@ const appPageBasic = require('./appPageBasic')

})
log('got app page for %s', JSON.stringify(res.app.name))
cb(null, res)
}
'use strict'
const debug = require('debug')
const log = debug('apkmirror-client:app:release-page')
const appPageBasic = require('./appPageBasic')

@@ -36,3 +39,5 @@ const cleanText = s => s.replace(/\n/g, '').trim()

log('got release page for %s', JSON.stringify(res.app.name))
cb(null, res)
}
'use strict'
const debug = require('debug')
const log = debug('apkmirror-client:app:search')
const appRow = require('./appRow')

@@ -11,3 +14,6 @@

})
log('search found %s results', res.length)
cb(null, res)
}
'use strict'
const debug = require('debug')
const log = debug('apkmirror-client:app:variant-page')
const appPageBasic = require('./appPageBasic')

@@ -38,3 +41,5 @@ const cleanText = s => s.replace(/\n/g, '').trim()

log('got variant page for %s', JSON.stringify(res.app.name))
cb(null, res)
}

@@ -7,4 +7,3 @@ 'use strict'

appReleasePage: require('./appReleasePage'),
appVariantPage: require('./appVariantPage'),
appDownloadPage: require('./appDownloadPage')
appVariantPage: require('./appVariantPage')
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc