Start in minutes
Install the SDK, get your API key, and manage configurations across all environments.
Installation
# Install the official SDK
npm install @appconfig/sdk
Usage Example
import { Config } from '@appconfig/sdk';
const config = new Config({
apiKey: 'ac_live_...',
env: 'production'
});
// Get value with fallback
const dbHost = await config.get('db.host', 'localhost');
// Subscribe to changes
config.on('change', (key, value) => {
console.log(`Updated: ${key}`);
});
Create Workspace
Free forever for small teams. No credit card required.
or continue with email
By signing up, you agree to our Terms of Service and Privacy Policy. Your data is encrypted with AES-256.
Already have an account? Sign In