
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
capacitor-cloudkit-api
Advanced tools
Plugin for using Apple CloudKit Key-Value API in your Capacitor Apps.
npm install capacitor-cloudkit-api
npx cap sync
Add capability in Signing & Capabilities in Xcode project settings called iCloud:

Next, enable Key-value storage and CloudKit settings, and create any container by clicking on + button:

import {CapacitorCloudkitAPI} from 'capacitor-cloudkit-api';
const saveData = async (key: string, value: string): Promise<{
key: string;
value: string;
}> => {
const result = await CapacitorCloudkitAPI.saveKeyValue({
key,
value,
});
return result
}
const getData = async (key: string): Promise<{
key: string;
value: string;
}> => {
const result = await CapacitorCloudkitAPI.getKeyValue({
key
});
return result
}
saveKeyValue(options: { key: string; value: string; }) => Promise<{ key: string; value: string; }>
| Param | Type |
|---|---|
options | { key: string; value: string; } |
Returns: Promise<{ key: string; value: string; }>
getKeyValue(options: { key: string; }) => Promise<{ key: string; value: string; }>
| Param | Type |
|---|---|
options | { key: string; } |
Returns: Promise<{ key: string; value: string; }>
FAQs
Plugin for using CloudKit Key-Value API in Capacitor Apps
The npm package capacitor-cloudkit-api receives a total of 0 weekly downloads. As such, capacitor-cloudkit-api popularity was classified as not popular.
We found that capacitor-cloudkit-api 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.