
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@egodigital/appstore-connect
Advanced tools
A simplfied library for Node.js 10+ for accessing Apple's App Store Connect API, written in TypeScript.
The module is quite new, so issues and pull requests are very welcome :-)
Execute the following command from your project folder, where your package.json
file is stored:
npm install --save @egodigital/appstore-connect
import * as fs from 'fs';
import { Client as AppStoreConnectClient, DownloadSalesReportFrequency } from '@egodigital/appstore-connect';
const PRIVATE_KEY = fs.readFileSync(
'/path/to/your/p8/file' // downloaded from https://appstoreconnect.apple.com/access/api
);
const CLIENT = new AppStoreConnectClient({
apiKey: '<YOUR-API-KEY>', // s. https://appstoreconnect.apple.com/access/api
issuerId: '<YOUR-ISSUER-ID>', // s. https://appstoreconnect.apple.com/access/api
privateKey: PRIVATE_KEY,
});
const SUMMARY = await CLIENT.getAppDownloads({
frequency: DownloadSalesReportFrequency.Weekly,
vendorId: '<YOUR-VENDOR-ID>', // s. https://appstoreconnect.apple.com/itc/payments_and_financial_reports
});
console.log(
SUMMARY
);
The API documentation can be found here.
0.5.0
FAQs
API client for Apple App Store Connect API.
The npm package @egodigital/appstore-connect receives a total of 2 weekly downloads. As such, @egodigital/appstore-connect popularity was classified as not popular.
We found that @egodigital/appstore-connect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.