Official JavaScript SDK for HealthCloud Marketplace API
One command to get started
Full type definitions included
Comprehensive examples & guides
// Install with npm npm install @healthcloud/sdk // Or with yarn yarn add @healthcloud/sdk
Initialize the SDK with your credentials
import { HealthCloudClient } from '@healthcloud/sdk';
// Initialize with API key
const client = new HealthCloudClient({
apiKey: 'your_api_key_here'
});
// Or use JWT token
const client = new HealthCloudClient({
token: 'your_jwt_token'
});