
Product
Introducing Supply Chain Attack Campaigns Tracking in the Socket Dashboard
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.
@ionic/pro-api-javascript-client
Advanced tools
A simple JasvaScript client for interacting with Ionic Pro
A simple JavaScript client for interacting with the Ionic Pro API.
Note: this is meant for API access, not end-user apps. For most users, the Pro Client is actually what you want.
This is still in active development, and is far from comprehensive at the moment.
npm install --save @ionic/pro-api-javascript-client
import { Environment, ProClient, User } from 'pro-client';
...
// Instantiate the client
let cfg: Environment = { debug: true }
let client: ProClient = new ProClient(cfg);
...
// Login to Ionic Pro
client.login("username@test.com", "myAwesomePassword123").then((user: User) => {
console.log("Logged in", user);
});
...
// List apps you have access to
client.resource.apps.list().then((res: any) => {
console.log("My apps:", res);
}, (err: any) => {
console.error("Error getting apps:", err);
});
...
// List native builds for an app
let appId: string = "abcd1234";
let filters = { platform: "iOS" }; // Optional
client.resource.package.list(appId, filters).then((res: any) => {
console.log("My native builds:", res);
}, (err: any) => {
console.error("Error getting builds:", err);
});
FAQs
A simple JasvaScript client for interacting with Ionic Pro
The npm package @ionic/pro-api-javascript-client receives a total of 8 weekly downloads. As such, @ionic/pro-api-javascript-client popularity was classified as not popular.
We found that @ionic/pro-api-javascript-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 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.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Security News
Node.js 25.4.0 makes require(esm) stable, formalizing CommonJS and ESM compatibility across supported Node versions.