Advertisement · 728 × 90

Posts by Lukas Stracke

Still my favourite CLI library to use. Thanks for all the hard work!

1 month ago 1 0 0 0
Post image

It's one of these days...

2 months ago 2 0 0 0
Preview
Advent of Svelte 24 days of Svelte challenges to help you learn Svelte 5

Well if someone has observability powers that's Santa for sure l...but you can know when they are awake too with SvelteKit otel tools.

Learn how with today Advent of Svelte with Ben! 🧡

advent.sveltesociety.dev/2025/7

3 months ago 10 1 0 0

It's always a pleasure to host the @svelte.at meetup. Great talks, nice people and good vibes :)

For @sentry.io it also pays off: We often get direct feedback we'd miss otherwise. Like yesterday, about a Svelte 4 and 5 syntax mixup in our SDK setup wizard.

github.com/getsentry/se...

4 months ago 8 1 0 0
Post image

Last but not least we have a LT from @yuki-ishii.bsky.social, the man who put this fantastic event together!
Observability in remote functions with OpenTelemetry & @sentry.io in SvelteKit!
Great refresher on @stracke.tech's amazing talk at SvelteSummit

5 months ago 3 1 0 0
A bar chart showing CPU benchmarks. SvelteKit is showing a 7-10x speed up compared to Next.js.

A bar chart showing CPU benchmarks. SvelteKit is showing a 7-10x speed up compared to Next.js.

Oh... what's this, you ask? Just a benchmark that coincidentally shows how fast SvelteKit is compared to Next.js 🤷‍♂️

How fast, you ask? Just 7-10x. No biggie.

Svelte ❤️

5 months ago 52 8 3 1
Preview
2025/12 - Svelte Society Austria, Tue, Dec 2, 2025, 6:00 PM | Meetup ​​All current or future Sveltists are welcome! ​​​Come and enjoy interesting Svelte talks and discussions. **​​ 📢 Call for speakers is open** ​​Schedule: * ​Intro * Tal

www.meetup.com/svelte-socie...

See you in @sentry.io 👋

6 months ago 9 3 0 1
Advertisement

Great post! As a maintainer of a relatively complex library (Sentry SDKs), I feel like we have to handle a lot of edge cases and graceful degredation is super important. Last thing you want is your error monitoring library breaking your app. But this really resonates with me on an API design level.

6 months ago 3 0 0 0
Post image

I'm excited to release the Svelte 5 course aimed at new and existing Svelte developers! 🔥

Learn how to make blazing fast web apps with Svelte and understand how it works with hands-on experience.

youtu.be/B2MhkPtBWs4

6 months ago 97 25 5 5
Preview
SvelteKit observability just got 10x better, and we’re here for it SvelteKit now supports full observability and tracing, with Sentry SDK compatibility from v10.8.0. See how to set up server-side instrumentation.

It's finally out! SvelteKit users: update your Sentry SDK to 10.8.0 or later to get those nice traces. All courtesy of @ell.iott.dev and @svelte.dev.

(Please let me know if I broke your app in the process)

7 months ago 35 8 0 0
Happy me having a beer to celebrate my promotion to Svelte Org!

Happy me having a beer to celebrate my promotion to Svelte Org!

Honored & excited! 🎉
Just joined the Svelte maintainers team (cli focus)

Big thanks for the peer recognition
Let's continue build cool stuff together 🧡

#OSS

7 months ago 179 12 19 3

Exciting, congrats!

7 months ago 2 0 0 0

Another project, not secret, but still WIP. Might talk about it at a future meetup :)

7 months ago 3 0 0 0

I was wondering if you'd notice :D

Jokes aside, I really like remult and it works really well in a side project of mine!

7 months ago 2 0 1 0

Congrats to @gruntled.bsky.social and @svelte.dev for becoming leaders in o11y support in ESM frameworks!
Super happy to see what I talked about at Svelte Summit becoming reality. Thanks for letting me help out out a bit along the way!
Full @sentry.io support is already WIP and will ship soon!

7 months ago 40 10 0 2

Hey :) let's talk! Feel free to send me a DM (Tried but I think I can't, yet).

7 months ago 0 0 1 0

We had very similar experiences in the Spas/thermal baths we went to in Iceland. Phones and filming everywhere. The spas even support it by selling waterproof phone cases.

I still find it strange that people can't just enjoy a couple of hours, without oversharing everything they do.

8 months ago 1 0 0 0
Advertisement
Preview
chore: Add `typescript` to type check JS Interface via JSDoc by Lms24 · Pull Request #2611 · getsentry/sentry-cli This PR adds typescript to the repo to type-check the JS interface of Sentry CLI. I decided to build on top of the already existing JSDoc type annotations but actually enforce them by running TS. T...

I don't particularly enjoy type checking JS with JSDoc annotations instead of TS but it's sooo much better than working in a Vanilla JS codebase without any type checks.

github.com/getsentry/se...

8 months ago 3 0 0 0

this is indeed huge, congrats!

8 months ago 2 0 0 0
Preview
Svelte Society Austria - Meetups Svelte Society Austria - We are a volunteer local network of Svelte fans that strive to promote Svelte and its ecosystem in Austria

🎉 New Domain 🎉
🔴 New drop: April 2025 Videos 🔴

www.svelte.at/meetups/2025...

9 months ago 6 3 1 0

Yup I'm aware and super happy to see this! First thing I'll check out once I'm back from vacation :)

9 months ago 1 0 0 0

1. Receive issue with reproduction using pnpm
2. Reproduce the issue
3. Change repro to a sane package manager (npm, yarn@1)
4. No longer reproduce issue

Happens to us ~once per week.

Question is: Is it a Sentry SDK problem? Or is it pnpm? Do I need vacation?

Guess which question I can answer

9 months ago 2 0 0 0

I want an AI assistant that tells me honestly "I don't know" instead of making up garbage to seem all-knowing. AI really shouldn't mimic all human traits :)
Don't know the type of this function? Tell me or leave it blank, but don't bs me. That's the only way I'd ever trust these things.

9 months ago 3 0 0 0

This is the first thing I add to any SvelteKit project I start. Thanks a lot for all your work! (And for letting me introduce a breaking change 😅)

10 months ago 1 0 1 0
import { sveltekit } from '@sveltejs/kit/vite'
import { kitRoutes } from 'vite-plugin-kit-routes'

/** @type {import('vite').UserConfig} */
export default config = {
  plugins: [
    sveltekit(),
    // ✅ Add the plugin
    kitRoutes(),
  ],
}

import { sveltekit } from '@sveltejs/kit/vite' import { kitRoutes } from 'vite-plugin-kit-routes' /** @type {import('vite').UserConfig} */ export default config = { plugins: [ sveltekit(), // ✅ Add the plugin kitRoutes(), ], }

<script lang="ts">
  import { route } from '$lib/ROUTES'
</script>

<!-- 🤞 before, hardcoded string, error prone -->
<a href="/site/123">Go to site</a>

<!-- ✅ after, typechecked route, no more errors -->
<a href={route('/site/[id]', { id: 123 })}>Go to site</a>

<script lang="ts"> import { route } from '$lib/ROUTES' </script> <!-- 🤞 before, hardcoded string, error prone --> <a href="/site/123">Go to site</a> <!-- ✅ after, typechecked route, no more errors --> <a href={route('/site/[id]', { id: 123 })}>Go to site</a>

🎉 Tadaaa 🎉

vite-plugin-kit-routes 1.0 is out 🎉

A/ add the vite plugin
B/ enjoy route typesafety !

Easy ?!

More here:
www.kitql.dev/docs/tools/0...

10 months ago 58 11 4 4
Preview
Support and provide Server-side instrumentation · sveltejs kit · Discussion #13775 Describe the problem Hi 👋 This issue is a collection of things I think SvelteKit should eventually offer to allow for and augment server-side instrumentation of SvelteKit applications. With kit bei...

Also opened a discussion in the repo to continue the conversation: github.com/sveltejs/kit...

10 months ago 0 0 0 0

My #sveltesummit talk was published today! I talked about using @opentelemetry.io in SvelteKit apps and what the framework can do to make this a better experience.

10 months ago 3 1 1 0
Advertisement

Huge thanks to @sveltesociety.dev, Kev and all the organizers for this amazing conference! Also here with @sentry.io to give away some nice tech goodies, so be sure to stop by :)

10 months ago 2 0 0 0

Had the honour to talk about tracing with OpenTelemetry at @svelte.dev Summit and what I think meta frameworks like SvelteKit can do to help making this an easy experience for everyone. More than happy to help making this a reality! Kicked off a discussion here: github.com/sveltejs/kit...

10 months ago 5 0 1 0

Really looking forward to Svelte Summit and meeting lots of Svelte Enthusiasts! Please come say hi at the @sentry.io booth :)

10 months ago 4 0 0 0