Install either SDK, set your API key, and start routing requests in under two minutes.
pip install aurex-sdk
npm install aurex-sdk
The install-hook command patches provider modules before your app imports them. See auto-hook reference for provider coverage. Environment variables are documented on /docs/installation/env-vars.
# Install the hook into your site-packages aurex install-hook export AUREX_ENABLED=1 export AUREX_API_KEY=aux_dev_yourkey python your_app.py
npx aurex install-hook source .env.aurex export AUREX_API_KEY=aux_dev_yourkey node your_app.js
from aurex_sdk import AurexAuditor, AurexConfig
auditor = AurexAuditor(AurexConfig(
enable_loop_guard=True,
enable_compression=True
))
auditor.patch_all()import { AurexAuditor } from "aurex-sdk";
const auditor = AurexAuditor.getInstance({
enableLoopGuard: true,
enableCompression: true
});
auditor.patchAll();Full AUREX_* reference: /docs/installation/env-vars
Search for a command to run...