Docs/Getting Started/Quick Start
Quick Start Guide
Get up and running with Vela in under 5 minutes.
1. Install the SDK
Add the Vela client library to your project using your package manager of choice.
$ npm install @vela/client
2. Initialize the client
Import and configure the client with your API key from the dashboard.
import { Vela } from '@vela/client';
const vela = new Vela('sk_live_...');
const vela = new Vela('sk_live_...');
Keep your secret keys safe. Never commit them to version control.