How Lonryo Works
From installation to insights in under 30 minutes. Here's how Lonryo transforms your analytics workflow.
Install SDK
Add Lonryo to your Next.js app in under 5 minutes with our zero-config setup.
Our SDK auto-instruments page views, navigations, and key UI components with no manual tracking required.
Auto-Generated Funnels
We automatically create opinionated funnels: Signup → Aha! → Repeat Value → Pay.
These funnels are refined as your product evolves, giving you actionable insights without setup overhead.
AI Insight Cards
Get prescriptive insights with estimated impact and one-click actions to Jira, Slack, or your CRM.
Our AI analyzes user behavior patterns and provides specific recommendations with measurable outcomes.
Installation
Get started with a single npm install and two lines of code.
1. Install the package
npm install @Lonryo/next-telemetry2. Add to your Next.js app
// app/layout.tsx
import { TelemetryProvider } from '@Lonryo/next-telemetry';
export default function RootLayout({ children }) {
return (
<html>
<body>
<TelemetryProvider publishableKey={process.env.NEXT_PUBLIC_Lonryo_KEY}>
{children}
</TelemetryProvider>
</body>
</html>
);
}
// components/CheckoutButton.tsx
import { useTrack } from '@Lonryo/next-telemetry';
export function CheckoutButton() {
const track = useTrack();
const handleClick = () => {
track('checkout_initiated', {
plan: 'growth',
value: 199
});
};
return (
<button onClick={handleClick}>
Start Growth Plan
</button>
);
}Opinionated Funnels
We automatically generate and refine funnels based on your product's key moments.
Signup
User creates account
Aha!
First value moment
Repeat
Continued engagement
Pay
Conversion to paid
AI Insight Cards
Get actionable recommendations with estimated impact and one-click integrations.
Drop at onboarding step 2
Est. +12% signups70% of users abandon the onboarding form at email verification.
Suggest: shorten form, simplify verification flow