Skill 76 · Instrument Error Tracking
Subchapter 76.27
references/svelte.mdMarkdown5 KBView on GitHub
AI agents: this is one page from PostHog’s docs. Full index of Markdown docs for LLMs: https://posthog.com/llms.txt (opens in a new tab)
1
Required
Install the PostHog JavaScript library using your package manager:
npm install posthog-jsyarn add posthog-jspnpm add posthog-jsbun add posthog-js2
Required
If you haven’t created a root layout already, create a new file called +layout.js in your src/routes folder. Check the environment is the browser, and initialize PostHog if so:
src/routes/+layout.js
import posthog from 'posthog-js'
import { browser } from '$app/environment';
import { onMount } from 'svelte';
export const load
3
Optional
Install posthog-node using your package manager:
npm install posthog-node --save4
Click around and view a couple pages to generate some events. PostHog automatically captures pageviews, clicks, and other interactions for you.
If you’d like, you can also manually capture custom events:
JavaScript
posthog.capture('my_custom_event', { property: 'value' })5
Required
SvelteKit Hooks (opens in a new tab) can be used to capture exceptions in the client and server-side.
Capture exceptions in the handleError callback in your client-side hooks file:
src/hooks.client.js
import posthog from 'posthog-js';
import type { HandleClientError } from '@sveltejs/kit';
6
Required
To capture exceptions on the server-side, you will also need to implement the handleError callback:
src/hooks.server.ts
import type { HandleServerError } from '@sveltejs/kit';
import { PostHog } from 'posthog-node';
const client = new PostHog(
Recommended
Confirm events are being sent to PostHog
Before proceeding, let’s make sure exception events are being captured and sent to PostHog. You should see events appear in the activity feed.

7
Required
Great, you’re capturing exceptions! If you serve minified bundles, the next step is to upload source maps to generate accurate stack traces.
Let’s continue to the next section.
Ask PostHog AI
HelpfulCould be better
SvelteKit layout
Learn more about SvelteKit layouts (opens in a new tab) in the official documentation.
yarn add posthog-nodepnpm add posthog-nodebun add posthog-nodeThen, initialize the PostHog Node client where you’d like to use it on the server side. For example, in a load function:
routes/+page.server.js
import { PostHog } from 'posthog-node';
export async function load() {
const posthog = new PostHog('<ph_project_token>', { host: 'https://us.i.posthog.com' });
posthog.capture({
distinctId: 'distinct_id_of_the_user',
event: 'event_name',
})
await posthog.shutdown()
}Note
Make sure to always call posthog.shutdown() after capturing events from the server-side. PostHog queues events into larger batches, and this call forces all batched events to be flushed immediately.