
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
app-store-top-apps
Advanced tools
App Store' Top Apps, by countries, pricing and genres. The data auto-updates every day.
const { isAppTop, getAppPositions } = require("app-store-top-apps");
console.log(isAppTop("com.alertus.zenly"));
// true
console.log(getAppPositions("com.alertus.zenly"));
// […, {country_code: 'fr', pricing: 'free', genre: 'social_networking', index: 13, total: 100}, …]
The raw sets of top apps, as returned by Apple iTunes API, are made accessible:
// All top apps in France
const { fr } = require("app-store-top-apps");
// All top free apps in France
const { fr_free } = require("app-store-top-apps");
// All top paid entertainment apps in France
const { fr_paid_entertainment } = require("app-store-top-apps");
// OR
const appStore = require("app-store-top-apps");
// All top apps in France
console.log(appStore.data.fr);
// All top free apps in France
console.log(appStore.data.fr_free);
// All top paid entertainment apps in France
console.log(appStore.data.fr_paid_entertainment);
isAppTop(bundleId, countryCode, pricing, genre) returns whether an app is top or not:
bundleId the app's bundle identifiercountryCode the country code (optional)pricing can be either free or paid (optional)genre the app's genre (optional)const { isAppTop } = require("app-store-top-apps");
console.log(isAppTop("com.alertus.zenly"));
// true
console.log(isAppTop("com.alertus.zenly"), "fr");
// true
console.log(isAppTop("com.alertus.zenly", "fr", "paid"));
// false
getAppPositions(bundleId, countryCode, pricing, genre) returns the app top position(s):
bundleId the app's bundle identifiercountryCode the country code (optional)pricing can be either free or paid (optional)genre the app's genre (optional)const { getAppPositions } = require("app-store-top-apps");
console.log(getAppPositions("com.alertus.zenly"));
// […, {country_code: 'fr', pricing: 'free', genre: 'social_networking', index: 13, total: 100}, …]
console.log(getAppPositions("com.alertus.zenly", "fr"));
// [{country_code: 'fr', pricing: 'free', genre: 'social_networking', index: 13, total: 100}]
app-store-top-apps is released under the MIT License. See the bundled LICENSE file for details.
FAQs
App Store' Top Apps
The npm package app-store-top-apps receives a total of 7 weekly downloads. As such, app-store-top-apps popularity was classified as not popular.
We found that app-store-top-apps demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.