Installation
Install the package using your preferred package manager:
Basic Setup
- Initialize your project:
- 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:
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.