Software Development Kits
Official SDKs for integrating Bleu.js into your applications
JavaScript SDK
Node.js & Browser
Official JavaScript SDK for integrating Bleu.js into your web applications. Supports both Node.js and browser environments with full TypeScript support.
v1.1.6
View Documentation →
Python SDK
Python 3.8+
Official Python SDK for integrating Bleu.js into your Python applications. Supports both synchronous and asynchronous operations with comprehensive error handling.
v1.1.6
View Documentation →
Coming Soon
Go SDK
High-performance Go client
Rust SDK
Memory-safe Rust client
C# SDK
.NET integration
Installation
JavaScript
npm install @bleujs/sdk
Python
pip install bleujs
Quick Start
JavaScript
import { BleuClient } from '@bleujs/sdk';
const client = new BleuClient({ apiKey: 'your-key' });
Python
from bleujs import BleuClient
client = BleuClient(api_key="your-key")