Comment on page
Install Zipy
How can I install Zipy on my product?
Getting started is easy. Go to the Install page in the Zipy application after Signing In.

You can use either of the following methods:
- 1.Install Zipy via SDK script
You can achieve this by simply including a two-line JavaScript SDK provided by Zipy in the head section of the html page of your web application.
Sample SDK script:
<script src="https://cdn.zipy.ai/sdk/v1.0/zipy.min.umd.js" crossorigin="anonymous"></script>
<script> window.zipy && window.zipy.init('YOUR_PROJECT_SDK_KEY');</script>
2. Install Zipy via npm
Following are the steps for installation:
- Install zipy module in the app project:
npm i zipyai
- Then import zipy module and initialize in your _app.js or any other source file:
import zipy from 'zipyai';
zipy.init('YOUR_PROJECT_SDK_KEY');