Quick Start Guide
Get up and running in just a few minutes with this quick start guide.
Last updated: July 1, 2025
Installation
Install the package using your preferred package manager:
npm install our-packageyarn add our-packagepnpm add our-packageBasic Setup
- Initialize your project:
import { initialize } from "our-package";
const app = initialize({
apiKey: "your-api-key",
environment: "development",
});const { initialize } = require("our-package");
const app = initialize({
apiKey: "your-api-key",
environment: "development",
});- Configure your settings:
app.configure({
theme: "light",
language: "en",
debug: true,
});
- Start using the features:
// Your first API call
const result = await app.getData();
console.log(result);
Verification
To verify everything is working correctly:
npm testyarn testpnpm testYou should see output similar to:
✅ All tests passed
✅ Configuration valid
✅ Ready to use!
Next Steps
Now that you’re set up, explore these topics:
Common Issues
Problem: “API key not found”
Solution: Make sure you’ve set your API key in the configuration.
Problem: “Module not found”
Solution: Ensure you’ve installed all dependencies with your package manager.