Build faster with officially maintained, type-safe client libraries for every major language. Access the full CloudNexus API without writing boilerplate.
$ curl -fsSL https://install.cloudnexus.dev/cli.sh | sh
$ cnx auth login
$ npm install @cloudnexus/sdk-js
$ pip install cloudnexus
$ go get github.com/cloudnexus/go-sdk
$ mvn dependency add com.cloudnexus:cloudnexus-java:2.4.0
Production-ready libraries with full API coverage, automatic retries, and first-class IDE support.
Asynchronous support, type hints, and seamless integration with Django, Flask, and FastAPI.
Promise-based API, full TypeScript definitions, and optimized for serverless environments.
Lightweight, goroutine-friendly, and designed for high-concurrency microservices.
Maven & Gradle compatible, reactive streams support, and Spring Boot auto-configuration.
Rails-friendly, thread-safe, and supports both synchronous and async operation modes.
Infrastructure as Code support for provisioning servers, networks, and security groups.
Engineered for reliability, security, and developer experience.
Exponential backoff and circuit breaker patterns built-in to handle transient failures gracefully.
Supports IAM roles, environment variables, and secret managers. Never hardcode keys.
Native support for SSE streams, event subscriptions, and webhook validation.
Full autocomplete, strict typing, and compile-time error checking across all supported languages.
Create, configure, and launch a production-ready instance in under 10 lines.
# Initialize the CloudNexus client
from cloudnexus import CloudNexus
client = CloudNexus(
api_key="cnx_live_sk_...",
region="us-east-1"
)
# Provision a high-performance VPS
server = client.compute.servers.create(
plan="professional-8x32",
image="ubuntu-22.04-lts",
labels={"env": "production", "app": "api-gateway"},
firewall_rules=[
{"action": "allow", "ports": "22,80,443", "source": "0.0.0.0/0"}
]
)
print(f"Server deployed: {server.id}")