Getting Started
Installation
Learn how to install and set up Zinka in your project
Updated January 15, 2024
1 min read
Installation
Get started with Zinka by following this simple installation guide.
Prerequisites
Before installing Zinka, ensure you have the following:
- Node.js 18.0 or higher
- npm or yarn package manager
- A modern web browser
Install via npm
npm install zinka
Install via yarn
yarn add zinka
Quick Setup
After installation, you can quickly set up Zinka in your project:
import { Zinka } from 'zinka';
const zinka = new Zinka({
apiKey: 'your-api-key',
environment: 'production'
});
zinka.init();
Verify Installation
To verify that Zinka is installed correctly, run:
npx zinka --version