Skip to content

Commit b6eaaa0

Browse files
authored
Merge pull request #17 from subtrace/dev/sachin/sveltekit
sveltekit: add docs
2 parents dcbdc7e + bf68e3d commit b6eaaa0

5 files changed

+74
-0
lines changed

mint.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"pages": [
5151
"nodejs-express",
5252
"nextjs",
53+
"sveltekit",
5354
"python-fastapi",
5455
"python-gunicorn",
5556
"python-flask",

nextjs-link.png

65.5 KB
Loading

nextjs.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,8 @@ npm install
5757
Open the `subt.link` URL in your browser to get to the Subtrace dashboard. Go to `localhost:3000`
5858
and make some requests to the server to see them show up in realtime on the Subtrace dashboard!
5959

60+
<Expandable title="example output">
61+
<img className="rounded-xl" src="/nextjs-link.png" />
62+
</Expandable>
63+
6064
You can find the complete source code used in this demo [here](https://github.com/subtrace/nextjs-demo).

sveltekit-link.png

89.6 KB
Loading

sveltekit.mdx

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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

Comments
 (0)