#sveltekit — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #sveltekit, aggregated by home.social.
-
بسام.سوشيال: منصة تواصل اجتماعي لامركزي مبنية على HybridSocial وبروتوكول ActivityPub
بسام.سوشيال هي منصة تواصل اجتماعي عربية لامركزية، مبنية على البرمجية مفتوحة المصدر HybridSocial، والتي تعتمد بدورها على بروتوكول ActivityPub القياسي. تقدم المنصة ميزات متقدمة مثل التفاعلات السبعة، والمجموعات، والفيديو...
🔗 https://salehgnutux.github.io/GT-NEWSTECH/ar/foss/bassam-social-hybridsocial-activitypub/
#بسام #HybridSocial #ActivityPub #لامركزي #فيديفرس #Elixir #Phoenix #SvelteKit #gnutux
-
What’s New in Svelte: July 2026, by @sveltejs:
https://svelte.dev/blog/whats-new-in-svelte-july-2026?ref=frontenddogma.com
-
What’s New in Svelte: July 2026, by @sveltejs:
https://svelte.dev/blog/whats-new-in-svelte-july-2026?ref=frontenddogma.com
-
It's quite interesting how one would build online maps with an "add place" form for hobby projects nowadays. Like https://makevienna.cool/ or https://pingpongmap.net/.
One way is a shared PHP Webspace, small SQL database and maybe a tiny API framework like #slimphp or #leafphp (abandonded?) on top. Caching via stored JSON file of POIs.
Another way I'd like to try could be with #SvelteKit #Svelte remote functions, e.g. on #Cloudflare. https://svelte.dev/docs/kit/remote-functions
A Cloudflare D1 (?) SQL database would be needed here as well.Would like to try it just for fun, might be a simple stack for hobby projects with user input?
How would you build a map like this? 👨🔧 #WebDev
-
It's quite interesting how one would build online maps with an "add place" form for hobby projects nowadays. Like https://makevienna.cool/ or https://pingpongmap.net/.
One way is a shared PHP Webspace, small SQL database and maybe a tiny API framework like #slimphp or #leafphp (abandonded?) on top. Caching via stored JSON file of POIs.
Another way I'd like to try could be with #SvelteKit #Svelte remote functions, e.g. on #Cloudflare. https://svelte.dev/docs/kit/remote-functions
A Cloudflare D1 (?) SQL database would be needed here as well.Would like to try it just for fun, might be a simple stack for hobby projects with user input?
How would you build a map like this? 👨🔧 #WebDev
-
Oh, cool – #SvelteKit `query.live()` remote functions now use SSE (Server Sent Events) instead of streamed responses. https://github.com/sveltejs/kit/pull/15957
-
-
I vibe-coded a self-hostable, turn-based, multiplayer board game as a Progressive Web App in a week.
https://github.com/svenjacobs/pearls
#game #GameDev #selfhost #selfhosting #pwa #Svelte #SvelteKit #TypeScript #WebDev #AI #GenAI #LLM #VibeCoding #VibeCode
-
I vibe-coded a self-hostable, turn-based, multiplayer board game as a Progressive Web App in a week.
https://github.com/svenjacobs/pearls
#game #GameDev #selfhost #selfhosting #pwa #Svelte #SvelteKit #TypeScript #WebDev #AI #GenAI #LLM #VibeCoding #VibeCode
-
Been playing with #SvelteKit, #KonstaUI, #Drizzle, #betterauth, #superforms, and #zog. Don't hate it so far, despite the classical frustration of "I could do this in seconds in #Angular, but I need to spend 5 minutes looking it up" that always happens when you start working with something new.
Got the skeleton of the app set up, CI/CD running, database connection (including migrations), and authentication. Just need to get the user registration set up, and then I can start with the actual content. -
Gestern Nacht habe ich ein großes TransDB Update ausgerollt.
Die 4 jahre alte SvelteKit Beta wurde auf die neuste Svelte 5 + SvelteKit Version geupdated.
Aufgrund der ganzen breaking changes über die Jahre musste im Grunde das gesamte Projekt vollständig migriert werden.Falls euch Fehler in der Seite auffallen, gerne bei mir melden.
-
Gestern Nacht habe ich ein großes TransDB Update ausgerollt.
Die 4 jahre alte SvelteKit Beta wurde auf die neuste Svelte 5 + SvelteKit Version geupdated.
Aufgrund der ganzen breaking changes über die Jahre musste im Grunde das gesamte Projekt vollständig migriert werden.Falls euch Fehler in der Seite auffallen, gerne bei mir melden.
-
As an excercise, made #opencode slop together a basic #SvelteKit frontend (and #golang middleware) for miniflux.
Lost interest as soon as it got to somewhat usable state. Wondering if it's a me problem.
Annoyed that I haven't learnt anything through this experience. Delighted by how base scaffolding kinda just appeared.
Terrified by a thought that eventually we (the people) will start talking to each other the way we have to talk to LLMs.
At least I gave it a cool name, huh?
-
As an excercise, made #opencode slop together a basic #SvelteKit frontend (and #golang middleware) for miniflux.
Lost interest as soon as it got to somewhat usable state. Wondering if it's a me problem.
Annoyed that I haven't learnt anything through this experience. Delighted by how base scaffolding kinda just appeared.
Terrified by a thought that eventually we (the people) will start talking to each other the way we have to talk to LLMs.
At least I gave it a cool name, huh?
-
I played around with the new (experimental) `query.live()` remote functions in #sveltekit. Used #wienerlinien public transit depatures from their real-time endpoints –`query.live` is a really good fit for something like this (pulling the data every 15 seconds and updating the UI accordingly).
I feel the docs could be clearer on how the transport actually works. It's neither server-sent event, nor websockets – it's regular GETs with chunked responses!
https://svelte.dev/docs/kit/remote-functions#query.live -
I played around with the new (experimental) `query.live()` remote functions in #sveltekit. Used #wienerlinien public transit depatures from their real-time endpoints –`query.live` is a really good fit for something like this (pulling the data every 15 seconds and updating the UI accordingly).
I feel the docs could be clearer on how the transport actually works. It's neither server-sent event, nor websockets – it's regular GETs with chunked responses!
https://svelte.dev/docs/kit/remote-functions#query.live -
As much as I like to do everything myself, I chose to use an off-the-shelf #Markdown parser for my personal site.
There may sometimes be a good reason to re-invent the wheel — even if it is just to learn more about wheels — but using an established tool or package can save you time and headaches. However, the key is to know which to use and when.
http://carledwardlyons.ca/articles/devlogs/blank/markdown-parser?ref_id=mastodon&ref_source=post
#markdownit #svelte #sveltekit #HTML #CSS #typescript #javascript #webdesign #webdev #software #devlog #blog
-
As much as I like to do everything myself, I chose to use an off-the-shelf #Markdown parser for my personal site.
There may sometimes be a good reason to re-invent the wheel — even if it is just to learn more about wheels — but using an established tool or package can save you time and headaches. However, the key is to know which to use and when.
http://carledwardlyons.ca/articles/devlogs/blank/markdown-parser?ref_id=mastodon&ref_source=post
#markdownit #svelte #sveltekit #HTML #CSS #typescript #javascript #webdesign #webdev #software #devlog #blog
-
I could have hard-coded all the text, styles, and other data into my personal website. However, that would have been too easy.
I decided to make my entire #webapp — #blog and all — into a #template populated by #JSON and #Markdown. This was mostly just an exercise in #design, but I also wanted to make it something i could #opensource.
https://carledwardlyons.ca/articles/devlogs/blank/content-template?ref_id=mastodon&ref_source=post
#svelte #sveltekit #typescript #javascript #webdesign #software #blog #devlog
-
I could have hard-coded all the text, styles, and other data into my personal website. However, that would have been too easy.
I decided to make my entire #webapp — #blog and all — into a #template populated by #JSON and #Markdown. This was mostly just an exercise in #design, but I also wanted to make it something i could #opensource.
https://carledwardlyons.ca/articles/devlogs/blank/content-template?ref_id=mastodon&ref_source=post
#svelte #sveltekit #typescript #javascript #webdesign #software #blog #devlog
-
I was reading the #sveltekit docs, apparently the definition of a “pure function” is vastly different in the #javascript world. In their “pure” functions, you can still query a third-party API. 🤦♂️ 🤦♂️
-
I was reading the #sveltekit docs, apparently the definition of a “pure function” is vastly different in the #javascript world. In their “pure” functions, you can still query a third-party API. 🤦♂️ 🤦♂️
-
What’s New in Svelte: April 2026, by @sveltejs:
-
What’s New in Svelte: April 2026, by @sveltejs:
-
#Gatsby starters and plugins (some starters use Axios for data fetching)
#SvelteKit example projects (can be configured to use Axios)
#Tauri apps (examples showing Axios with custom fetch adapter)
#Nodejs backend utilities and CLI tools (server-side HTTP requests with Axios) -
EvaTeam Workflow Enhancer — userscript для нормального отображения процессов
Сталкивались уже с EvaTeam (российский аналог Jira)? Чувствуете боль при работе с бизнес-процессами (workflow)? Думаю я могу вам немного помочь
https://habr.com/ru/articles/1015656/
#userscript #userscripts #tampermonkey #greasemonkey #eva #evateam #workflow #svelte #sveltejs #sveltekit
-
EvaTeam Workflow Enhancer — userscript для нормального отображения процессов
Сталкивались уже с EvaTeam (российский аналог Jira)? Чувствуете боль при работе с бизнес-процессами (workflow)? Думаю я могу вам немного помочь
https://habr.com/ru/articles/1015656/
#userscript #userscripts #tampermonkey #greasemonkey #eva #evateam #workflow #svelte #sveltejs #sveltekit
-
EvaTeam Workflow Enhancer — userscript для нормального отображения процессов
Сталкивались уже с EvaTeam (российский аналог Jira)? Чувствуете боль при работе с бизнес-процессами (workflow)? Думаю я могу вам немного помочь
https://habr.com/ru/articles/1015656/
#userscript #userscripts #tampermonkey #greasemonkey #eva #evateam #workflow #svelte #sveltejs #sveltekit
-
i'm ewan — developer, writer, occasional poet. i build open-source ATProto tooling,
self-host most of my own infrastructure, and take commissions for things i'm actually
good at.if any of that is useful or interesting to you, ko-fi.com/ewancroft
is where commissions live:- poetry from £10
- short stories from £20
- SvelteKit websites from £100
everything's CC BY-SA 4.0. no NDAs, no nonsense.
tips are also welcome if you've got use out of anything i've made or written.
either way, cheers.
#kofi #commissions #commissionsopen #opentocommissions #hire #forwardslashforhire #freelance #freelancedev #freelancewriter #writing #writer #poet #poetry #shortstories #fiction #creativewriting #literarywriting #webdev #webdeveloper #frontend #sveltekit #svelte #javascript #typescript #nodejs #atproto #bluesky #fediverse #activitypub #indieweb #decentralised #decentralized #opensource #selfhosted #selfhosting #nixos #linux #homelabbing #homelab #developer #softwaredev #smallcreator #indiecreator #supportcreators #supportindiedevs #supportindieartists #makersofmastodon #mutualaid #ukdev #ukwriter #british -
i'm ewan — developer, writer, occasional poet. i build open-source ATProto tooling,
self-host most of my own infrastructure, and take commissions for things i'm actually
good at.if any of that is useful or interesting to you, ko-fi.com/ewancroft
is where commissions live:- poetry from £10
- short stories from £20
- SvelteKit websites from £100
everything's CC BY-SA 4.0. no NDAs, no nonsense.
tips are also welcome if you've got use out of anything i've made or written.
either way, cheers.
#kofi #commissions #commissionsopen #opentocommissions #hire #forwardslashforhire #freelance #freelancedev #freelancewriter #writing #writer #poet #poetry #shortstories #fiction #creativewriting #literarywriting #webdev #webdeveloper #frontend #sveltekit #svelte #javascript #typescript #nodejs #atproto #bluesky #fediverse #activitypub #indieweb #decentralised #decentralized #opensource #selfhosted #selfhosting #nixos #linux #homelabbing #homelab #developer #softwaredev #smallcreator #indiecreator #supportcreators #supportindiedevs #supportindieartists #makersofmastodon #mutualaid #ukdev #ukwriter #british -
i'm ewan — developer, writer, occasional poet. i build open-source ATProto tooling,
self-host most of my own infrastructure, and take commissions for things i'm actually
good at.if any of that is useful or interesting to you, ko-fi.com/ewancroft
is where commissions live:- poetry from £10
- short stories from £20
- SvelteKit websites from £100
everything's CC BY-SA 4.0. no NDAs, no nonsense.
tips are also welcome if you've got use out of anything i've made or written.
either way, cheers.
#kofi #commissions #commissionsopen #opentocommissions #hire #forwardslashforhire #freelance #freelancedev #freelancewriter #writing #writer #poet #poetry #shortstories #fiction #creativewriting #literarywriting #webdev #webdeveloper #frontend #sveltekit #svelte #javascript #typescript #nodejs #atproto #bluesky #fediverse #activitypub #indieweb #decentralised #decentralized #opensource #selfhosted #selfhosting #nixos #linux #homelabbing #homelab #developer #softwaredev #smallcreator #indiecreator #supportcreators #supportindiedevs #supportindieartists #makersofmastodon #mutualaid #ukdev #ukwriter #british #introduction -
i'm ewan — developer, writer, occasional poet. i build open-source ATProto tooling,
self-host most of my own infrastructure, and take commissions for things i'm actually
good at.if any of that is useful or interesting to you, ko-fi.com/ewancroft
is where commissions live:- poetry from £10
- short stories from £20
- SvelteKit websites from £100
everything's CC BY-SA 4.0. no NDAs, no nonsense.
tips are also welcome if you've got use out of anything i've made or written.
either way, cheers.
#kofi #commissions #commissionsopen #opentocommissions #hire #forwardslashforhire #freelance #freelancedev #freelancewriter #writing #writer #poet #poetry #shortstories #fiction #creativewriting #literarywriting #webdev #webdeveloper #frontend #sveltekit #svelte #javascript #typescript #nodejs #atproto #bluesky #fediverse #activitypub #indieweb #decentralised #decentralized #opensource #selfhosted #selfhosting #nixos #linux #homelabbing #homelab #developer #softwaredev #smallcreator #indiecreator #supportcreators #supportindiedevs #supportindieartists #makersofmastodon #mutualaid #ukdev #ukwriter #british -
i'm ewan — developer, writer, occasional poet. i build open-source ATProto tooling,
self-host most of my own infrastructure, and take commissions for things i'm actually
good at.if any of that is useful or interesting to you, ko-fi.com/ewancroft
is where commissions live:- poetry from £10
- short stories from £20
- SvelteKit websites from £100
everything's CC BY-SA 4.0. no NDAs, no nonsense.
tips are also welcome if you've got use out of anything i've made or written.
either way, cheers.
#kofi #commissions #commissionsopen #opentocommissions #hire #forwardslashforhire #freelance #freelancedev #freelancewriter #writing #writer #poet #poetry #shortstories #fiction #creativewriting #literarywriting #webdev #webdeveloper #frontend #sveltekit #svelte #javascript #typescript #nodejs #atproto #bluesky #fediverse #activitypub #indieweb #decentralised #decentralized #opensource #selfhosted #selfhosting #nixos #linux #homelabbing #homelab #developer #softwaredev #smallcreator #indiecreator #supportcreators #supportindiedevs #supportindieartists #makersofmastodon #mutualaid #ukdev #ukwriter #british -
I decided to build my website (finally, after several years working in #webdev). Looking to try something new, I gave #SvelteKit a go.
I had to learn to love it, but I can't deny the how simple #Svelte5 reactivity is to work with. But, I did find it has its limits.
https://carledwardlyons.ca/articles/devlogs/blank/sveltekit?ref_id=mastodon&ref_source=post
#blog #devlog #software #development #testing #observability #design #architecture
-
🔧 Better-T Stack solves #JavaScript fatigue by providing ready-to-use tech combinations through an interactive CLI. Choose from #Svelte, #SvelteKit, #Solid, or #Nuxt for frontend, paired with #Hono or #Convex backend options
-
Как юрист с помощью вайбкодинга пилит в одного место для юридических экспериментов с ИИ
Всем привет! Меня зовут Владимир Глебовец, также известный в среде юридического сообщества, как LawCoder. С 2007 года я работаю юристом, а с 2018 в свободное от работы время, программирую инструменты, которые потом использую в юридической работе. Обычно я пишу заметки на VC и в телеграме, а вот писать на Хабр не решался, т.к. ничего полезного для «трушных» программистов я написать не мог, ибо мой уровень соответствует понятию Low Coding, каламбур из которого (Low‑Law) собственно и дал название моему блогу об автоматизации юридических процессов. Так зачем же тогда я пришел на Хабр сейчас? Научился программировать, поверил в себя и решил огрести в комментариях? Нет, за последние три года, я пользуясь ЛЛМ, программируя в режиме вайб‑кодинга, растерял и без того слабые навыки программирования. Может быть решил прорекламировать свой блог? Тоже нет, здесь нет моей целевой аудитории, да и я собственно его недавно официально даже на паузу поставил, потеряв к ведению блога интерес. Пришел я сюда, с желанием проверить одну гипотезу, возможно Хабр поможет мне её подтвердить или опровергнуть. При этом для меня это ситуация win‑win, т.к. любой результат меня устроит.
-
Как юрист с помощью вайбкодинга пилит в одного место для юридических экспериментов с ИИ
Всем привет! Меня зовут Владимир Глебовец, также известный в среде юридического сообщества, как LawCoder. С 2007 года я работаю юристом, а с 2018 в свободное от работы время, программирую инструменты, которые потом использую в юридической работе. Обычно я пишу заметки на VC и в телеграме, а вот писать на Хабр не решался, т.к. ничего полезного для «трушных» программистов я написать не мог, ибо мой уровень соответствует понятию Low Coding, каламбур из которого (Low‑Law) собственно и дал название моему блогу об автоматизации юридических процессов. Так зачем же тогда я пришел на Хабр сейчас? Научился программировать, поверил в себя и решил огрести в комментариях? Нет, за последние три года, я пользуясь ЛЛМ, программируя в режиме вайб‑кодинга, растерял и без того слабые навыки программирования. Может быть решил прорекламировать свой блог? Тоже нет, здесь нет моей целевой аудитории, да и я собственно его недавно официально даже на паузу поставил, потеряв к ведению блога интерес. Пришел я сюда, с желанием проверить одну гипотезу, возможно Хабр поможет мне её подтвердить или опровергнуть. При этом для меня это ситуация win‑win, т.к. любой результат меня устроит.
-
Как юрист с помощью вайбкодинга пилит в одного место для юридических экспериментов с ИИ
Всем привет! Меня зовут Владимир Глебовец, также известный в среде юридического сообщества, как LawCoder. С 2007 года я работаю юристом, а с 2018 в свободное от работы время, программирую инструменты, которые потом использую в юридической работе. Обычно я пишу заметки на VC и в телеграме, а вот писать на Хабр не решался, т.к. ничего полезного для «трушных» программистов я написать не мог, ибо мой уровень соответствует понятию Low Coding, каламбур из которого (Low‑Law) собственно и дал название моему блогу об автоматизации юридических процессов. Так зачем же тогда я пришел на Хабр сейчас? Научился программировать, поверил в себя и решил огрести в комментариях? Нет, за последние три года, я пользуясь ЛЛМ, программируя в режиме вайб‑кодинга, растерял и без того слабые навыки программирования. Может быть решил прорекламировать свой блог? Тоже нет, здесь нет моей целевой аудитории, да и я собственно его недавно официально даже на паузу поставил, потеряв к ведению блога интерес. Пришел я сюда, с желанием проверить одну гипотезу, возможно Хабр поможет мне её подтвердить или опровергнуть. При этом для меня это ситуация win‑win, т.к. любой результат меня устроит.
-
Was inspired by @simonbs's post on Composition Root dependency injection in Swift and wrote up how to do something similar in Svelte
https://kylenazario.com/blog/dependency-injection-in-svelte
#SvelteJS #SvelteKit #frontend #javascript #typescript #blog
-
Stuff like this is why I like Svelte. It's fast and *concise* at building UIs
-
Good news from the Svelte 5 beta! $derived runes now accept optional callbacks
-
As someone who's been Angular-focused for the last 4.5 years, I found SvelteKit great in most ways and lacking in others
https://kylenazario.com/blog/svelte-from-angular-perspective-for-svelte
-
Building a sitemap in SvelteKit is easy and a good way to improve your SEO
-
And here's the list of my heavily used data tools!
General use tools
Web scraping tools
1. #p-queue
2. #cheerio
3. #puppeteerGeospatial tools
1. #mapshaper
2. #turfjs
3. #qgisWebsite tools
1. #sveltekit
Tools that are also companies
1. @observablehq
2. #Github actions
3. #netlify -
And here's the list of my heavily used data tools!
General use tools
Web scraping tools
1. #p-queue
2. #cheerio
3. #puppeteerGeospatial tools
1. #mapshaper
2. #turfjs
3. #qgisWebsite tools
1. #sveltekit
Tools that are also companies
1. @observablehq
2. #Github actions
3. #netlify