Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@expo/apple-utils

Package Overview
Dependencies
Maintainers
27
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/apple-utils

An unstable library for performing Apple API tasks with the unofficial iTunes APIs.

  • 2.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
142K
increased by6.3%
Maintainers
27
Weekly downloads
 
Created

What is @expo/apple-utils?

@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.

What are @expo/apple-utils's main functionalities?

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();

Other packages similar to @expo/apple-utils

FAQs

Package last updated on 05 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc