-
Notifications
You must be signed in to change notification settings - Fork 71
/
sites.yml
937 lines (848 loc) · 33 KB
/
sites.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
# The description key supports full markdown syntax.
# New tags should strike a generality balance so they convey
# useful information but are still applicable to more than just 1 site.
# date_created is usually the date of first commit on a project which can be found
# by opening the 'Insights > Network' tab on a repo (e.g.
# https://github.com/janosh/awesome-sveltekit/network) and clicking
# cmd/ctrl + left arrow to jump to the very start of the commit history.
# site_src is the link to a subfolder if e.g. the site is part of a monorepo.
- title: Svelte.dev
url: https://svelte.dev
repo: https://github.com/sveltejs/svelte
# Sapper to SvelteKit migration in https://git.io/JXSh1
site_src: https://github.com/sveltejs/svelte/tree/master/sites/svelte.dev
npm: https://npmjs.com/package/svelte
description: Cybernetically enhanced web apps.
uses: [CodeMirror, Mapbox, Docker]
tags: [docs, monorepo, dev tools, blog, REPL, NPM package]
date_created: 2021-10-19 # https://git.io/JXShN
date_added: 2021-11-11
- title: Official SvelteKit docs
url: https://kit.svelte.dev
repo: https://github.com/sveltejs/kit
site_src: https://github.com/sveltejs/kit/blob/-/sites/kit.svelte.dev
npm: https://npmjs.com/package/@sveltejs/kit
description: The fastest way to build Svelte apps.
uses: [Netlify, PNPM]
tags: [docs, monorepo, NPM package]
date_created: 2021-03-10 # https://git.io/JcQYo
date_added: 2021-05-25
- title: SK Incognito
url: https://sk-incognito.vercel.app
repo: https://github.com/GrygrFlzr/kit-docs
description: The unofficial SvelteKit docs.
uses: [MDsveX, Tailwind, PNPM]
tags: [docs, Vercel]
date_created: 2021-02-15
date_added: 2021-05-25
- title: TikZ
url: https://janosh.github.io/tikz
repo: https://github.com/janosh/tikz
description: Random collection of MIT-licensed standalone TikZ images, mostly about physics and machine learning.
tags: [research, science, diagrams, graphics, latex]
uses: [TypeScript, svelte-multiselect, pre-commit, PNPM, GitHub Pages]
date_created: 2020-08-09
date_added: 2021-05-25
- title: markushatvan.com
url: https://markushatvan.com
description: Blog posts with code snippets, contact form with Svelte Forms Lib, RSS and sitemap.
uses: [Tailwind, MDsveX, Svelte Forms Lib]
tags: [blog, rss, sitemap]
date_created: 2020-08-21
date_added: 2021-05-25
- title: Guess The Year
url: https://guess-the-year.davjhan.com
repo: https://github.com/davjhan/guess-the-year-game
description:
Round-based browser game where you guess the year in which famous event happened.
Answers range between 1900-2021. You start with 100 points. The more your guess is off, the more points you loose.
uses: [Tailwind, Netlify]
tags: [game]
date_created: 2021-05-09
date_added: 2021-05-25
- title: Gitpod
url: https://gitpod.io
repo: https://github.com/gitpod-io/gitpod
description:
Gitpod streamlines developer workflows by providing prebuilt, collaborative
development environments in your browser - powered by VS Code.
uses: [MDsveX, Tailwind, Netlify]
tags: [commercial, dev tools, cloud computing]
date_created: 2021-03-17
date_added: 2021-05-31
- title: SvelteKit Experiments
url: https://sveltekit-demo-psi.vercel.app
repo: https://github.com/tsukhu/sveltekit-demo
description:
A set of example apps built with SvelteKit and deployed on Vercel. As an ongoing project,
this will continue to be enhanced with more examples to showcase the power of SvelteKit.
uses: [Tailwind, Vercel, GraphQL, Firebase, Typescript]
tags: [sample applications, cloud computing]
date_created: 2021-05-27
date_added: 2021-06-09
- title: puruvj.dev
url: https://puruvj.dev
repo: https://github.com/puruvj/puruvjdev3
description: Puru Vijay's blog site.
uses: [Vercel, TypeScript, SCSS, Cloudinary]
tags: [blog]
date_created: 2021-05-06
date_added: 2021-06-11
- title: GraphCMS Starter Blog
url: https://scottspence.com/2021/05/06/graphcms-svelte-starter
repo: https://github.com/spences10/sveltekit-starter-blog
description: This blog starter shows how to use SvelteKit with GraphCMS.
uses: [Vercel, Tailwind, SCSS, GraphCMS]
tags: [blog]
date_created: 2021-05-16
date_added: 2021-06-14
- title: Beatbump
url: https://beatbump.io
repo: https://github.com/snuffyDev/beatbump
description: Alternative frontend for YouTube Music.
uses: [TypeScript, PostCSS, SCSS]
tags: [blog]
date_created: 2021-06-17
date_added: 2021-07-08
- title: Paper Trader Game
url: https://paper-trader.davjhan.com
repo: https://github.com/davjhan/paper-trader-game
description:
A simple web game where you are given 45 seconds and $100 to make as much money as you can trading a
fake stock.
tags: [game, mobile]
uses: [Tailwind, Netlify, Chart.js, Plausible]
date_created: 2021-07-25
date_added: 2021-08-01
- title: neovim craft
url: https://neovimcraft.com
repo: https://github.com/neurosnap/neovimcraft
description: Curated list of neovim plugins.
tags: [programming, resource list]
uses: [TypeScript, Husky]
date_created: 2021-07-18
date_added: 2021-08-13
- title: swyxkit
url: https://swyxkit.netlify.app
repo: https://github.com/sw-yx/swyxkit
description: An opinionated blog starter for SvelteKit + Tailwind + Netlify. Refreshed for 2022!
tags: [programming, blog, portfolio]
uses: [Tailwind, Netlify]
date_created: 2020-09-11
date_added: 2021-09-01
- title: Svelte Society
url: https://sveltesociety.dev
repo: https://github.com/svelte-society/sveltesociety.dev
description: Global network of Svelte fans striving to promote Svelte and its ecosystem.
tags: [programming, components, events, cheat sheets]
uses: [TypeScript, Gitpod]
date_created: 2020-05-03
date_added: 2021-10-01
- title: Flayks
url: https://flayks.com
description: Portfolio of Félix Péault, Digital Designer and Art Director.
Sanity.io [[interview](https://sanity.io/blog/felix-peault-community-interview)],
[[feature](https://sanity.io/projects/flayks-portfolio-2021)].
tags: [portfolio]
uses: [Sanity, anime.js, Vercel, TypeScript, SCSS, PostCSS]
date_created: 2021-10-01
date_added: 2021-10-01
- title: Matt Fantinel
url: https://fantinel.dev
repo: https://github.com/matfantinel/matfantinel.github.io
description: Personal website and blog of Matt Fantinel, web developer.
uses: [MDsveX, SCSS, Iconoir, Plausible]
tags: [personal, blog, portfolio, SCSS, MDsveX]
date_created: 2021-09-07
date_added: 2021-10-01
- title: Level Up Tutorials
url: https://leveluptutorials.com
description: Video tutorials for web developers and designers.
uses: [TypeScript, Google Tag Manager]
tags: [tutorials, education, videos, web development, design]
date_created: 2021-09-01
date_added: 2021-10-5
- title: JSchallenger
url: https://jschallenger.com
description: Free Javascript challenges. Learn Javascript online by solving coding exercises.
uses: [Tailwind, DynamoDB, AWS]
tags: [education, coding challenges, JavaScript]
date_created: 2021-10-09
date_added: 2021-10-9
- title: Files
url: https://files.community
repo: https://github.com/files-community/website
description: 3rd Party File Manager for Windows.
uses: [PNPM, TypeScript, SCSS, Vercel]
tags: [education, coding challenges, JavaScript]
date_created: 2021-05-20
date_added: 2021-10-11
- title: Svelte Summit Fall 2021
url: https://sveltesummit.com
repo: https://github.com/svelte-society/svelte-summit
description: The 4th virtual conference about Svelte
uses: [Elder.js, PostCSS, Cloudflare]
tags: [conference, community event, learning, news]
date_created: 2021-07-25
date_added: 2021-10-12
- title: cybernetic.dev
url: https://cybernetic.dev
description: Data-centric UI experiments
uses: [Three.js, Cytoscape.js, Vercel]
tags: [data viz, statistics, machine learning]
date_created: 2021-01-01
date_added: 2021-10-19
- title: digital criticism
url: https://critique-digitale.ch
repo: https://github.com/critique-digitale/critique-digitale.ch
description: Scholarly conference in the digital humanities.
uses: [MDsveX, MVP.css, Cloudflare]
tags: [education, conference, community event, learning]
date_created: 2021-07-06
date_added: 2021-10-28
- title: The Pudding
url: https://pudding.cool
repo: https://github.com/the-pudding/website
description: Digital publication with emphasis on data viz.
uses: [D3, PostCSS, Lodash, PNPM]
tags: [digital publishing, data viz, education]
date_created: 2021-09-03
date_added: 2021-11-01
- title: Urara
url: https://urara-demo.netlify.app
repo: https://github.com/importantimport/urara
description: Sweet & Powerful SvelteKit Blog Template.
uses: [MDsveX, PostCSS, Tailwind, DaisyUI, TypeScript, PNPM]
tags: [blog, template]
date_created: 2021-11-01
date_added: 2021-11-05
- title: connorrothschild.com
url: https://connorrothschild.com
repo: https://github.com/connorrothschild/.com
description: Creative, content-based portfolio site of Connor Rothschild.
uses: [MDsveX, GSAP, Netlify]
tags: [blog, portfolio, animations]
date_created: 2021-12-10
date_added: 2021-12-11
- title: Svelte Cubed
url: https://svelte-cubed.vercel.app
repo: https://github.com/Rich-Harris/svelte-cubed
description: Three.js component library for Svelte. Abandoned. Check out [threlte](https://threlte.xyz) instead.
uses: [TypeScript, PNPM, Vercel, MDsveX]
tags: [components, library, animations, interactive]
date_created: 2021-05-18
date_added: 2021-12-19
- title: Multi-Monitor Calculator
url: https://multimonitorcalculator.com
repo: https://github.com/KevinVandy/multi-monitor_calculator
description: A tool for planning your multi-monitor setup.
uses: [TypeScript, SMUI, Sass]
tags: [interactive, 3d, calculator, monitor]
date_created: 2018-06-08
date_added: 2022-01-01
- title: Modern Fluid Typography Editor
url: https://modern-fluid-typography.vercel.app
repo: https://github.com/codeAdrian/modern-fluid-typography-editor
description: Easily create and fine-tune fluid typography values with Modern CSS `clamp()`.
uses: [TypeScript, PostCSS, Chart.js, cssnano]
tags: [developer tool, design, frontend, typography]
date_created: 2021-11-29
date_added: 2022-01-04
- title: mermaid-live-editor
url: https://mermaid.live
repo: https://github.com/mermaid-js/mermaid-live-editor
description: Edit, live preview and share mermaid charts and diagrams.
uses: [TypeScript, Docker, Tailwind, PostCSS, Cypress, Husky]
tags: [developer tool, diagrams, charts, graphics]
date_created: 2019-11-13
date_added: 2022-02-05
- title: svelte-realworld
url: https://realworld.svelte.dev
repo: https://github.com/sveltejs/realworld
description: SvelteKit implementation of the RealWorld app.
uses: [Netlify, MarkedJS]
tags: [demo, performance, benchmark]
date_created: 2017-04-20
date_added: 2022-02-06
- title: macos-web
url: https://macos-web.app
repo: https://github.com/PuruVJ/macos-web
description: Replicate some of the macOS desktop experience on the web.
uses: [TypeScript, Vercel, SCSS, PNPM, Iconify]
tags: [demo, proof of concept, learning]
date_created: 2021-08-12
date_added: 2022-02-06
- title: inlang
url: https://inlang.com
repo: https://github.com/inlang/monorepo
description: Translate software products 2x faster.
uses: [TypeScript, Vercel, IBM Carbon, Tailwind, Supabase]
tags: [front-end, developer tool, localization, i18n]
date_created: 2021-08-04
date_added: 2022-02-23
- title: Houdini GraphQL
url: https://houdinigraphql.com
repo: https://github.com/HoudiniGraphQL/houdini
description: Documentation site for Houdini.
uses: [PNPM, MDsveX, Husky, highlight.js]
tags: [graphql, data fetching, front-end, developer tool, minimal]
date_created: 2021-01-19
date_added: 2022-03-22
- title: ConcertMash
url: https://concertmash.com
repo: https://github.com/mcmxcdev/ConcertMash
description: Easily generate a playlist for your upcoming concerts based on selected artists!
uses: [TypeScript, Tailwind, Spotify Web API, Filepond, PNPM, Netlify]
tags: [music, playlist-generator]
date_created: 2022-03-15
date_added: 2022-03-24
- title: Layer Cake
url: https://layercake.graphics
repo: https://github.com/mhkeller/layercake
description:
Graphics framework for Svelte with colorful demo page. Can generate responsive
graphics server-side that work without JavaScript.
uses: [D3, GitHub Pages, JSDoc, Mocha, Underscore]
tags: [charts, dataviz, graphics, layers, canvas, WebGL]
date_created: 2018-10-18
date_added: 2022-03-24
- title: Pancake
url: https://pancake-charts.surge.sh
repo: https://github.com/Rich-Harris/pancake
description:
Experimental Svelte charting library. Visualize data with a combination of HTML,
SVG and canvas/WebGL. Designed with server-side rendering in mind, so graphs potentially work without JavaScript.
[Blog post](https://dev.to/richharris/a-new-technique-for-making-responsive-javascript-free-charts-gmp).
uses: [D3, surge.sh, TypeScript]
tags: [charts, dataviz, graphics, canvas, WebGL]
date_created: 2019-10-01
date_added: 2022-04-05
- title: Svelte Headless UI
url: https://svelte-headlessui.goss.io
repo: https://github.com/rgossiaux/svelte-headlessui
description: Unofficial Svelte port of Headless UI components.
uses: [MDsveX, TypeScript, PostCSS, Tailwind, cssnano, Jest, rehype]
tags: [component library, a11y]
date_created: 2021-12-05
date_added: 2022-04-14
- title: Svelte Material UI
url: https://sveltematerialui.com
repo: https://github.com/hperrin/svelte-material-ui
site_src: https://github.com/hperrin/svelte-material-ui/blob/-/packages/site
npm: https://npmjs.com/package/svelte-material-ui
description: Svelte Material UI Components.
uses: [MDsveX, TypeScript, highlight.js, remark, Sass]
tags: [material design, component library, NPM package]
date_created: 2019-07-17
date_added: 2022-04-16
- title: Fluent Svelte
url: https://fluent-svelte.vercel.app
repo: https://github.com/Tropix126/fluent-svelte
description: A faithful implementation of Microsoft's Fluent design system in Svelte.
uses: [MDsveX, SCSS, TypeScript, remark, rehype, PNPM, PostCSS, Prism]
tags: [windows ui, component library, design system]
date_created: 2021-06-05
date_added: 2022-04-24
- title: SvelteKit on Edge
url: https://sveltekit-on-the-edge.vercel.app
repo: https://github.com/Rich-Harris/sveltekit-on-the-edge
description:
SvelteKit, running on the edge. In this case, Vercel's edge network.
See <https://twitter.com/leeerob/status/1517627769924034565>.
uses: [PNPM, Vercel]
tags: [speed, caching, deployment]
date_created: 2022-04-20
date_added: 2022-04-24
- title: evidence
url: https://evidence.dev
repo: https://github.com/evidence-dev/evidence
site_src: https://github.com/evidence-dev/evidence/blob/-/sites/example-project
description: Evidence enables analysts to deliver a polished business intelligence system using SQL and markdown.
uses: [PNPM, Changesets, echarts, uvu]
tags: [analytics, business-intelligence, sql, markdown, data viz, charts]
date_created: 2021-05-27
date_added: 2022-05-01
- title: Coolify
url: https://coolify.io
repo: https://github.com/coollabsio/coolify
description: An open-source & self-hostable Heroku / Netlify alternative.
uses: [PNPM, TypeScript, Tailwind, sveltekit-i18n, PostCSS, Husky]
tags: [self-hosting, deployment, sql, docker, redis, mongodb, databases]
date_created: 2021-03-24
date_added: 2022-05-10
- title: Flowbite
url: https://flowbite-svelte.com
repo: https://github.com/themesberg/flowbite-svelte
description: Official Svelte components built for Flowbite and Tailwind CSS. All interactivity handled by Svelte.
uses: [PNPM, TypeScript, Tailwind, MDsveX, Prism, PostCSS, Playwright]
tags: [component library, forms, modals, spinners, dark-mode, toast]
date_created: 2022-01-24
date_added: 2022-05-19
- title: Good First Issue Finder
url: https://finder.eddiehub.io
repo: https://github.com/EddieHubCommunity/good-first-issue-finder
description: Good First Issue Finder helps new contributors pave their path into the world of OSS.
uses: [TypeScript, Tailwind, Husky, Octokit, PostCSS]
tags: [oss, community, developer guide]
date_created: 2022-01-20
date_added: 2022-05-19
- title: Elementari
url: https://janosh.github.io/elementari
repo: https://github.com/janosh/elementari
npm: https://npmjs.com/package/elementari
description:
'Interactive visualizations for materials science: periodic tables, 3d crystal
structures (Molecules coming soon), Bohr atoms, nuclei, heatmaps, scatter plots.'
uses:
- TypeScript
- pre-commit
- D3
- svelte-multiselect
- Vitest
- Playwright
- PNPM
- jsdom
- GitHub Pages
tags: [chemistry, science, data viz, plotting, NPM package]
date_created: 2022-05-31
date_added: 2022-06-02
- title: Pixel Art Together
url: https://pixelart.liveblocks.app
repo: https://github.com/liveblocks/pixel-art-together
description: A multiplayer pixel art editor powered by Liveblocks.
uses: [TypeScript, Liveblocks, Tailwind, PostCSS, panzoom]
tags: [art, drawing, multiplayer, collaboration]
date_created: 2022-02-17
date_added: 2022-06-02
- title: Sveltestrap
url: https://sveltestrap.js.org
repo: https://github.com/bestguy/sveltestrap
description: Bootstrap 4 & 5 components for Svelte.
uses: [Storybook, Babel, Testing Library, Jest, PostCSS, Prism]
tags: [component library]
date_created: 2017-03-19
date_added: 2022-06-02
- title: Svelvet
url: https://svelvet.io
repo: https://github.com/oslabs-beta/Svelvet
description: A lightweight Svelte component library for building interactive node-based flow diagrams.
uses: [Playwright, D3, Testing Library, Tailwind, PostCSS, Vitest]
tags: [flow diagrams, dev tool, component library, visualization]
date_created: 2022-05-06
date_added: 2022-06-02
- title: Cryptgeon
url: https://cryptgeon.nicco.io
repo: https://github.com/cupcakearmy/cryptgeon
site_src: https://github.com/cupcakearmy/cryptgeon/blob/-/packages/frontend
description: A secure, open source notes and file sharing service inspired by PrivNote written in Rust & Svelte.
uses: [svelte-intl-precompile, sanitize-html]
tags: [file sharing, note sharing, secure notes, privacy, data protection]
date_created: 2021-05-01
date_added: 2022-06-09
- title: Svelte Intl Precompile
# weird url as temp fix for https://github.com/cibernox/svelte-intl-precompile/issues/58
url: https://svelte-intl-precompile.com/en/docs/configuration
repo: https://github.com/cibernox/svelte-intl-precompile
description:
I18n library for Svelte that analyzes your keys at build time for maximum performance and
minimal footprint. Built as a SvelteKit plugin so good to use as a reference if you want to build one yourself.
uses: [JS-Yaml, JSON5]
tags: [i18n, translation, internationalization, localization]
date_created: 2021-04-15
date_added: 2022-06-09
- title: Windmill
url: https://windmill.dev
repo: https://github.com/windmill-labs/windmill
site_src: https://github.com/windmill-labs/windmill/blob/-/frontend
description:
An OSS developer platform to build multi-step automations and internal apps from minimal
Python and Typescript scripts.
uses:
- TypeScript
- Tailwind
- cssnano
- Cypress
- PostCSS
- svelte-highlight
- svelte-markdown
tags: [automation, dev tools, python, scripting, self-hostable]
date_created: 2022-05-05
date_added: 2022-06-17
- title: Threlte
url: https://threlte.xyz
repo: https://github.com/threlte/threlte
site_src: https://github.com/threlte/threlte/blob/-/apps/docs
description:
Threlte is a component library for Svelte to build and render three.js scenes declaratively
and state-driven in Svelte apps.
uses: [TypeScript, Three.js, Tailwind, PostCSS, Algolia, Iconify]
tags: [component library, data viz, docs, monorepo, interactive]
date_created: 2022-01-15
date_added: 2022-07-17
- title: svelte-french-toast
url: https://svelte-french-toast.com
repo: https://github.com/kbrgl/svelte-french-toast
description: Svelte port of Timo Lins' react-hot-toast, a lightweight, customizable toast notification library.
uses: [TypeScript, Prism, Tailwind, PostCSS, PNPM]
tags: [toast, notifications, snackbar]
date_created: 2022-06-04
date_added: 2022-07-24
- title: Hexapipes
url: https://hexapipes.vercel.app
repo: https://github.com/gereleth/hexapipes
description: Browser game where the goal is to correctly line up pipes placed on hexagonal puzzle pieces.
uses: [Vercel]
tags: [game]
date_created: 2022-06-25
date_added: 2022-07-28
- title: Svelte Commerce
url: https://demo.litekart.in
repo: https://github.com/itswadesh/svelte-commerce
description:
Headless, Authentication, Cart & Checkout, TailwindCSS, Server Rendered, Proxy + API Integrated, Animations, Stores,
Lazy Loading, Loading Indicators, Carousel, Instant Search, Faceted Filters, Typescript, Open Source, MIT license. 1
command deploy to your own server, 1 click deploy to Netlify/Vercel.
uses: [Vercel, Tailwind, TypeScript, svelte-toasts, PostCSS, cssnano]
tags: [commerce, shopping, login, store]
date_created: 2020-04-27
date_added: 2022-08-23
- title: Joy of Code
url: https://joyofcode.xyz
repo: https://github.com/mattcroat/joy-of-code
description: 🌸 Joy of Code is a digital garden growing curious minds.
uses:
- GitHub API
- Monaco
- Playwright
- Google Analytics
- Supabase
- Vercel
- PNPM
- Sass
- TypeScript
- remark
- rehype
tags: [blog, community, cms]
date_created: 2020-10-19
date_added: 2022-08-31
- title: QWER
url: https://svelte-qwer.vercel.app
repo: https://github.com/kwchang0831/svelte-QWER
description: ✒︎ Simply Awesome Blog Starter built with SvelteKit and ❤
uses: [UnoCSS, TypeScript, MarkedJS, PNPM, Vercel]
tags: [blog, template]
date_created: 2022-06-28
date_added: 2022-09-04
- title: StemRoller
url: https://stemroller.com
repo: https://github.com/stemrollerapp/stemroller
description: Isolate vocals, drums, bass, and other instrumental stems from any song
uses: [Electron, Tailwind, Lodash, PostCSS, ytdl-core]
tags: [desktop app, music, machine learning, deep learning]
date_created: 2022-07-10
date_added: 2022-09-07
- title: Houses of World
url: https://housesof.world
description: A travel, photography and design project showcasing charismatic houses around the world.
uses:
- Typescript
- SCSS
- PostCSS
- Motion One
- OGL
- WebGL
- Directus
- Swell Commerce
- Vercel
tags:
- animations
- transitions
- photography
- commerce
- design
- typography
- graphic design
date_created: 2022-09-27
date_added: 2022-09-30
- title: Skeleton
url: https://skeleton.dev
repo: https://github.com/Brain-Bones/skeleton
description: A fully featured web UI toolkit for Svelte + Tailwind. Supports SvelteKit, Vite, and Astro.
uses: [Vitest, PostCSS, highlight.js, Tailwind, Typescript, jsdom]
tags: [component library]
date_created: 2022-02-23
date_added: 2022-10-30
- title: Svelte MultiSelect
url: https://janosh.github.io/svelte-multiselect
repo: https://github.com/janosh/svelte-multiselect
description: Keyboard-friendly, accessible and highly customizable multi-select component.
npm: https://npmjs.com/package/svelte-multiselect
uses:
- Vitest
- Playwright
- Typescript
- PNPM
- pre-commit
- rehype
- jsdom
- GitHub Pages
- mdsvexamples
tags: [forms, select component, interactive, NPM package]
date_created: 2021-05-07
date_added: 2022-10-30
- title: Fireship
url: https://fireship.io
repo: https://github.com/fireship-io/fireship.io
description:
The Fireship PRO course platform frontend built with Svelte, Tailwind CSS, Hugo
(for static content management), Firebase for Auth and DB, Flamethrower for routing.
uses: [Tailwind, Hugo, Firebase, Flamethrower, Sass, PostCSS, Algolia]
tags: [education, tutorials, web dev]
date_created: 2019-01-07
date_added: 2022-11-19
- title: Intl Explorer
url: https://intl-explorer.com
repo: https://github.com/jesperorb/intl-explorer
description: A tool for experimenting and trying out the ECMAScript Internationalization API.
uses:
[TypeScript, PNPM, Playwright, Vercel, svelte-highlight, Husky, commitlint]
tags: [education, tutorials, web dev, interactive, playground]
date_created: 2021-12-02
date_added: 2022-11-27
- title: SvelteKit Embed
url: https://sveltekit-embed.vercel.app
repo: https://github.com/spences10/sveltekit-embed
description:
SvelteKit embed components for YouTube, Vimeo, Twitter, Spotify, SoundCloud, StackBlitz,
CodePen, AnchorFM, Simple Cast and more.
uses:
- TypeScript
- PNPM
- Vercel
- MDsveX
- Tailwind
- PostCSS
- Husky
- Playwright
- DaisyUI
tags: [component library]
date_created: 2021-07-17
date_added: 2022-12-09
- title: SvelteKit static blog starter
url: https://sveltekit-static-starter.netlify.app
repo: https://github.com/josh-collinsworth/sveltekit-blog-starter
description:
A pre-configured SvelteKit static blog starter, with Sass, Markdown, MDSvex, Rehype
and background preloading.
uses: [Netlify, MDsveX, Sass, Husky]
tags: [blog starter, sass, markdown, mdsvex, page transitions, seo, rss]
date_created: 2021-11-02
date_added: 2023-01-11
- title: svelte-put
url: https://svelte-put.vnphanquang.com
repo: https://github.com/vnphanquang/svelte-put
description: Useful svelte stuff to put in your projects.
uses: [Changesets, MDsveX, PostCSS, PNPM, Turbo]
tags: [preprocessor, actions, component library]
date_created: 2022-05-12
date_added: 2023-01-14
- title: sveltekit-mdsvex-blog
url: https://sveltekit-mdsvex-blog.netlify.app
repo: https://github.com/mvasigh/sveltekit-mdsvex-blog
description: A minimalist blog template built with SvelteKit and MDsveX.
uses: [TypeScript, MDsveX, Rehype, Remark, PNPM, Vitest, Playwright]
tags: [blog, markdown, template, starter]
date_created: 2021-05-08
date_added: 2023-01-15
- title: sveltekit-typescript-showcase
url: https://github.com/ivanhofer/sveltekit-typescript-showcase
repo: https://github.com/ivanhofer/sveltekit-typescript-showcase
description: This repository shows how Svelte and SvelteKit work together with TypeScript.
uses: [TypeScript]
tags: [showcase, tutorial, learning]
date_created: 2022-03-07
date_added: 2023-02-24
- title: svelte-command-palette
url: https://svelte-command-palette.vercel.app
repo: https://github.com/rohitpotato/svelte-command-palette
npm: https://npmjs.com/package/svelte-command-palette
description: Dead simple command palette with fuzzy search.
uses: [TypeScript, Playwright, PostCSS, Tailwind, Release It, Vercel]
tags: [cmd-palette, NPM package]
date_created: 2022-06-17
date_added: 2023-02-27
- title: svelte-legos
url: https://svelte-legos.surge.sh
repo: https://github.com/ankurrsinghal/svelte-legos
npm: https://npmjs.com/package/svelte-legos
description: A library of Svelte actions.
uses: [TypeScript, vitest, Tailwind, PostCSS, Prism]
tags: [component library, NPM package, actions]
date_created: 2023-02-21
date_added: 2023-03-06
- title: Watch This
url: https://what-to-watch-roan.vercel.app
repo: https://github.com/StephDietz/watch-this
description:
Uses OpenAI GPT-3 API and streaming Vercel edge functions to generate cinema
recommendations based on user input.
uses: [TypeScript, Vercel, Tailwind]
tags: [content recommendation, edge functions, machine learning]
date_created: 2023-01-26
date_added: 2023-03-25
- title: editable-website
url: https://editable.website
repo: https://github.com/michael/editable-website
description: A SvelteKit template for building CMS-free editable websites.
uses: [Tailwind, ProseMirror, AWS]
tags: [postgres, richtext, editable, cms-free, template]
date_created: 2023-04-04
date_added: 2023-05-07
- title: Chat UI
url: https://huggingface.co/chat
repo: https://github.com/huggingface/chat-ui
description: Powers the HuggingChat app. Making the community's best AI chat models available to everyone.
uses: [Huggingface Inference, Huggingface Hub, Tailwind]
tags: [gpt, ai, nlp, chat, large language models]
date_created: 2023-04-04
date_added: 2023-05-11
- title: Team Health Check
url: https://team-health-check-coral.vercel.app
repo: https://github.com/codehub-kirans/team-health-check
description: A tool to visualize historical agile scrum team performance based on behavior anchors.
uses: [PicoCSS, Pocketbase, Vercel]
tags: [agile team health, agile spotify, team health check]
date_created: 2023-05-05
date_added: 2023-05-14
- title: SvelteLab
url: https://sveltelab.dev
repo: https://github.com/sveltelab/sveltelab
description: Supercharged REPL for Svelte (think StackBlitz specialized for Svelte)
uses:
- Playwright
- vitest
- Iconify
- MarkedJS
- TypeScript
- PNPM
- Pocketbase
- Vercel
- Tailwind
tags: [repl, playground]
date_created: 2023-02-23
date_added: 2023-05-21
- title: Significa.co
url: https://significa.co
repo: https://github.com/significa/significa.co
description: Product Design and Development agency website, built with Sveltekit.
uses:
- TypeScript
- Vercel
- Tailwind
- AWS
- Dynamodb
- Notion
- Storyblock
- Matter.js
- Plausible
tags: [company, agency]
date_created: 2023-05-13
date_added: 2023-05-22
- title: shadcn-svelte
url: https://shadcn-svelte.com
site_src: https://github.com/huntabyte/shadcn-svelte/blob/-/apps/www
repo: https://github.com/huntabyte/shadcn-svelte
description: shadcn/ui, but for Svelte.
uses:
[TypeScript, Vercel, Tailwind, PNPM, Changesets, vitest, Prism, MarkedJS]
tags: [component library, community]
date_created: 2023-05-15
date_added: 2023-07-06
- title: learn.svelte.dev
url: https://learn.svelte.dev
repo: https://github.com/sveltejs/learn.svelte.dev
description: A soup-to-nuts interactive tutorial on how to build apps with Svelte.
uses: [Vercel, PNPM, Prism, MarkedJS, CodeMirror]
tags: [docs, tutorial, education, community]
date_created: 2023-05-15
date_added: 2023-07-27
- title: Dotfyle
url: https://dotfyle.com
repo: https://github.com/codicocodes/dotfyle
description: Discover and share Neovim configurations and plugins.
uses: [TypeScript, PNPM, tRPC-SvelteKit, Prisma, Tailwind, Octokit]
tags: [neovim, dotfiles, community]
date_created: 2023-03-11
date_added: 2023-08-01
- title: tRPC-SvelteKit
url: https://icflorescu.github.io/trpc-sveltekit
repo: https://github.com/icflorescu/trpc-sveltekit
description: End-to-end type-safe APIs for your SvelteKit applications.
uses: [TypeScript, tRPC]
tags: [community, open source, NPM package, docs, dev tools]
date_created: 2022-02-10
date_added: 2023-08-03
- title: ASM Editor
url: https://asm-editor.specy.app
repo: https://github.com/Specy/asm-editor
description: A modern webapp to write, run and learn M68K assembly code.
uses: [TypeScript, Sass, Monaco, WASM]
tags: [Javascript, interpreter, emulator, assembly, M68K]
date_created: 2022-04-22
date_added: 2023-09-30
- title: Ollama Web UI
url: https://ollamahub.com
repo: https://github.com/ollama-webui/ollama-webui
description: ChatGPT-Style Web UI Client for Ollama 🦙.
uses: [highlight.js, MarkedJS, KaTeX, TypeScript, Tailwind]
tags: [chatbot, AI, NLP, GPT, large language models, UI]
date_created: 2023-10-07
date_added: 2024-01-01
- title: Immich
url: https://immich.app
repo: https://github.com/immich-app/immich
description: Self-hosted photo and video backup solution directly from your mobile phone.
uses: [NestJS, TypeScript, Tailwind, Flutter, Python]
tags: [photos, photo-gallery, self-hosted, backup-tool, media]
date_created: 2022-02-03
date_added: 2024-01-22
- title: Auth starter app
url: https://passlock.dev
site_src: https://github.com/passlock-dev/passlock/tree/master/packages/create-sveltekit/docs
repo: https://github.com/passlock-dev/passlock
description: SvelteKit template featuring Passkeys, Social Sign in and more.
uses: [passlock, tailwind, superforms, lucia]
tags: [security, authentication, passkeys, template]
date_created: 2024-04-22
date_added: 2024-05-17
- title: Svead
url: https://svead.pages.dev
repo: https://github.com/spences10/svead
description:
Svead 🍺, a component that allows you to set head meta information, canonical, title,
Twitter and Facebook Open Graph tags, and schema.org data.
uses:
- TypeScript
- PNPM
- Cloudflare Pages
- MDsveX
- Tailwind
- PostCSS
- DaisyUI
tags: [component library]
date_created: 2022-05-15
date_added: 2024-05-31
- title: barnsworthburning
url: https://barnsworthburning.net
repo: https://github.com/Aias/barnsworthburning
description: An experimental commonplace book / digital garden with a richly
interconnected set of links, notes, and ideas.
uses:
- TypeScript
- Airtable
- Radix
- MarkedJS
- Cloudflare Pages
tags: [digital garden, commonplace, notes, networks, themes]
date_created: 2019-07-09
date_added: 2024-07-28