Start your 14-day free trial today
No credit card required, cancel anytime
The fastest way to track events is with Waitlyst is to use the SDK. You can send as many events as you like, and it takes just a minute to set up.
npm install @indextrus/waitlyst.js --save
Or as a browser based tag:
<script src="https://cdn.waitlyst.com/sdk/waitlyst.js"></script>
To begin tracking events, you will need your Publishable Key and must have setup analytics on your Waitlyst account.
const waitlyst = new Waitlyst("PUBLISHABLE_KEY");
/* Track a page view */
waitlyst.page();
/* Track a signup event */
waitlyst.track('signup');
/* Track a signup clicked event with properties */
waitlyst.track('signup', {
userId: '123'
date: '2020-01-01',
source: 'google',
customerType: 'business',
plan: 'pro',
price: 100,
});
You can view all events in your Waitlyst dashboard. Simply setup a report for the event you want to track.
No credit card required, cancel anytime