typescriptlibs / tsl-apple-cloudkit

TypeScript Library for Apple CloudKit JS
https://typescriptlibs.org/tsl-apple-cloudkit/
MIT License
23 stars 4 forks source link
apple cloudkit typescript

Apple CloudKit TypeScript Library

TypeScript library with type declarations of Apple CloudKit JS v2. It downloads the CloudKit JS file automatically from the Apple CDN during NPM installation.

CodeQL Node.js npm license

Changes

Please note, that starting with v0.2.7 some elements break with the documentation by Apple. The following changes have been made:

Requirements

This package is officially compatible with

Earlier versions might work as well, but do not receive updates anymore.

Installation & Update

npm i https://typescriptlibs.org/npm/tsl-apple-cloudkit.tgz

Configuration

On client side you can configure RequireJS to find the client handler, that has to be moved outside the NodeJS package:

require.config({
    paths: {
        'tsl-apple-cloudkit': 'lib/tsl-apple-cloudkit',
    }
});

Please note: If you do not create a bundle containing tsl-apple-cloudkit, the handler requires a static reference to CloudKit JS in the HTML head like this:

<script src="https://cdn.apple-cloudkit.com/ck/2/cloudkit.js"></script>

There are reports that CloudKit JS might not be compatible with the bundler of Angular v13 and later.

Usage

You can use the CloudKit JS library simply as a regular module:

import * as CloudKit from 'tsl-apple-cloudkit';

Or you reference the CloudKit JS declarations directly, when you use no modules:

/// <reference path="node_modules/tsl-apple-cloudkit/index.d.ts" />

Documentation

Further information can be found in the Apple CloudKit JS Documentation, Apple CloudKit JS Video, and Apple iCloud Development.

Use Apple CKTool JS and Apple CKTool JS Reference to manage CloudKit containers and databases.

Legal Notes

The downloaded index.js is licensed only for use to Apple developers in providing CloudKit Web Services, or any part thereof, and is subject to the iCloud Terms and Conditions and the Apple Developer Program License Agreement. You may not port this file to another platform inconsistent with the iCloud Terms and Conditions, the Apple Developer Program License Agreement, or the accompanying Documentation without Apple's written consent.

Acknowledgements: https://cdn.apple-cloudkit.com/ck/2/acknowledgements.txt