
Getting Started Guide
How to Use Zipy
A practical guide to get you up and running with Zipy. Written by Delv Editorial, Delv Team.
Getting started with Zipy
In this guide, you'll learn how to set up Zipy for error tracking, enabling you to capture user sessions and diagnose issues effectively. You'll be ready to track down bugs in your applications within minutes.Step 1: Sign up and set up
- Go to Zipy’s website.
- Click on the “Get Started” button on the homepage.
- Fill in your details to create an account. You can use your email or sign up via Google.
- Once registered, log in to your new account.
- Follow the on-screen instructions to add your application. You’ll receive a unique project key for integration.
Step 2: Your first error tracking session
- Install the Zipy SDK in your application. Depending on your tech stack, follow the provided integration guide.
- For JavaScript, run the following command in your terminal:
npm install @zipy/sdk
- In your application’s main file, import and initialise Zipy:
import Zipy from '@zipy/sdk';
Zipy.init('YOUR_PROJECT_KEY');
- Trigger an error in your application (e.g., throw a new Error in your code).
- Go back to your Zipy dashboard. Click on the “Errors” tab on the left menu. You should see the error you triggered along with session details.
Step 3: Get better results
- Use the filters in the “Errors” tab to sort by severity or frequency to focus on critical issues.
- Click on an error to view the session replay. This will show you the user actions leading to the error.
- Take advantage of the “Logs” section to see detailed error messages and stack traces that can help in debugging.
- Set up notifications for critical errors by going to “Settings” > “Notifications” and selecting your preferred method (email, Slack, etc.).