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:

Basic Setup

  1. Initialize your project:
  1. Configure your settings:
app.configure({
  theme: "light",
  language: "en",
  debug: true,
});
  1. Start using the features:
// Your first API call
const result = await app.getData();
console.log(result);

Verification

To verify everything is working correctly:

You 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.

Edit on GitHub
Was this helpful?