|
| 1 | +--- |
| 2 | +title: "SvelteKit" |
| 3 | +sidebarTitle: "SvelteKit" |
| 4 | +description: "Connect your SvelteKit app to Chrome DevTools using Subtrace" |
| 5 | +icon: "node-js" |
| 6 | +--- |
| 7 | + |
| 8 | +You can connect your SvelteKit app to Chrome DevTools with just one command |
| 9 | +to see the status, headers, payload, and latency of all API requests. |
| 10 | + |
| 11 | +For this guide, we'll use a simple SvelteKit app as an example. The app has one page (`+page.svelte`) and one API handler (`routes/api/hello/+server.ts`). |
| 12 | + |
| 13 | +```html |
| 14 | +<!-- +page.svelte --> |
| 15 | +<script> |
| 16 | + let message = ""; |
| 17 | +
|
| 18 | + async function getMessage() { |
| 19 | + const res = await fetch("/api/hello"); |
| 20 | + const data = await res.json(); |
| 21 | + message = data.message; |
| 22 | + } |
| 23 | +</script> |
| 24 | + |
| 25 | +<main> |
| 26 | + <h1>Trigger a GET request with the button.</h1> |
| 27 | + <button on:click="{getMessage}">Make API call</button> |
| 28 | + <h2>{message}</h2> |
| 29 | +</main> |
| 30 | +``` |
| 31 | + |
| 32 | +```ts |
| 33 | +// routes/api/hello/+server.ts |
| 34 | +let count = 0; |
| 35 | + |
| 36 | +export function GET(): Response { |
| 37 | + count++; |
| 38 | + return new Response( |
| 39 | + JSON.stringify({ |
| 40 | + message: `Called ${count} ${count === 1 ? "time" : "times"}.`, |
| 41 | + }), |
| 42 | + { headers: { "Content-Type": "application/json" } } |
| 43 | + ); |
| 44 | +} |
| 45 | +``` |
| 46 | + |
| 47 | +To get started, download the latest version of Subtrace using the following command: |
| 48 | + |
| 49 | +```bash |
| 50 | +curl -fsSLO "https://subtrace.dev/download/latest/$(uname -s)/$(uname -m)/subtrace" |
| 51 | +chmod +x ./subtrace |
| 52 | +``` |
| 53 | + |
| 54 | +Build and start your server using Subtrace: |
| 55 | + |
| 56 | +```bash |
| 57 | +npm install |
| 58 | +npm run build |
| 59 | +./subtrace run -- npm run dev |
| 60 | +``` |
| 61 | + |
| 62 | +Open the `subt.link` URL in your browser to get to the Subtrace dashboard. Go to `localhost:5173` |
| 63 | +and make some requests to the server to see them show up in realtime on the Subtrace dashboard! |
| 64 | + |
| 65 | +<Expandable title="example output"> |
| 66 | + <img className="rounded-xl" src="/sveltekit-link.png" /> |
| 67 | +</Expandable> |
| 68 | + |
| 69 | +You can find the complete source code for this example [here](https://github.com/subtrace/sveltekit-demo). |
0 commit comments