
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
@expo/apple-utils
Advanced tools
An unstable library for performing Apple API tasks with the unofficial iTunes APIs.
@expo/apple-utils is a utility library designed to interact with Apple's App Store Connect and other Apple services. It provides a set of tools to manage various aspects of iOS app development and distribution, such as managing app metadata, handling provisioning profiles, and more.
Manage App Metadata
This feature allows you to fetch and manage metadata for your iOS apps. The code sample demonstrates how to retrieve app metadata using the App.findAsync method.
const { App } = require('@expo/apple-utils');
async function getAppMetadata(appId) {
const app = await App.findAsync(appId);
console.log(app.attributes);
}
getAppMetadata('your-app-id');
Handle Provisioning Profiles
This feature enables you to manage provisioning profiles. The code sample shows how to list all provisioning profiles using the Profile.getAllAsync method.
const { Profile } = require('@expo/apple-utils');
async function listProvisioningProfiles() {
const profiles = await Profile.getAllAsync();
profiles.forEach(profile => console.log(profile.attributes));
}
listProvisioningProfiles();
Manage Certificates
This feature allows you to manage certificates. The code sample demonstrates how to list all certificates using the Certificate.getAllAsync method.
const { Certificate } = require('@expo/apple-utils');
async function listCertificates() {
const certificates = await Certificate.getAllAsync();
certificates.forEach(cert => console.log(cert.attributes));
}
listCertificates();
Fastlane is a popular open-source tool aimed at simplifying Android and iOS deployment. It offers a wide range of functionalities similar to @expo/apple-utils, such as managing app metadata, handling provisioning profiles, and automating the release process. Fastlane is more comprehensive and supports both iOS and Android platforms.
An unstable library for performing Apple API tasks with the unofficial iTunes APIs.
FAQs
An unstable library for performing Apple API tasks with the unofficial iTunes APIs.
The npm package @expo/apple-utils receives a total of 153,997 weekly downloads. As such, @expo/apple-utils popularity was classified as popular.
We found that @expo/apple-utils demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.