forked from sveltejs/community-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.yml
2419 lines (2419 loc) · 77.4 KB
/
code.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
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
resources:
- name: '`svelte-calendar`'
url: 'https://github.com/6eDesign/svelte-calendar'
description: A lightweight datepicker with neat animations and a unique UX
tags:
- components and libraries
- time and date
stars: 210
last_updated: '2020-10-27T08:14:02Z'
downloads: 2584
- name: agusID/boilerplate-svelte
url: 'https://github.com/agusID/boilerplate-svelte'
description: >-
Boilerplate with TypeScript, Webpack, Storybook, Travis CI, SCSS, Babel,
EsLint, Prettier, Jest
tags:
- templates
stars: 52
last_updated: '2020-10-18T11:06:36Z'
- name: '`svelte-tags-input`'
url: 'https://github.com/agustinl/svelte-tags-input'
description: >-
Svelte tags input is a component to use with Svelte and easily enter tags
and customize some functions
tags:
- components and libraries
- inputs and widgets
downloads: 170
stars: 76
last_updated: '2020-10-23T21:57:49Z'
- name: '`sveltedoc-parser`'
url: 'https://github.com/alexprey/sveltedoc-parser'
description: Generate a JSON documentation for a Svelte component
tags:
- components and libraries
- development and documentation
stars: 34
last_updated: '2020-10-06T05:14:19Z'
downloads: 396
- name: '`aovi-svelte`'
url: 'https://github.com/AlexxNB/aovi-svelte'
description: Easy use Aovi to validate forms or values in your components
tags:
- forms and validation
- components and libraries
stars: 3
last_updated: '2020-10-07T17:21:16Z'
downloads: 388
- name: '`svelte-chota`'
url: 'https://github.com/alexxnb/svelte-chota'
description: Svelte UI components based on super lightweight chota CSS framework.
tags:
- components and libraries
- component sets
stars: 96
last_updated: '2020-10-24T21:15:48Z'
downloads: 778
- name: '`@svelte-docs/core`'
url: 'https://github.com/AlexxNB/svelte-docs'
description: A rapid way to write documentation for your Svelte components
tags:
- components and libraries
- development and documentation
downloads: 73
stars: 89
last_updated: '2020-10-23T05:15:04Z'
- name: '`svelte-eventbus`'
url: 'https://github.com/AlexxNB/svelte-eventbus'
description: Simple eventbus realization based on internal Svelte's tools only
tags:
- components and libraries
downloads: 5
stars: 17
last_updated: '2020-10-07T17:21:31Z'
- name: '`svelte-preprocess-markdown`'
url: 'https://github.com/AlexxNB/svelte-preprocess-markdown'
description: Write Svelte components in markdown syntax
tags:
- integrations
- preprocessors
downloads: 359
stars: 67
last_updated: '2020-10-19T20:39:12Z'
- name: '`tinro`'
url: 'https://github.com/AlexxNB/tinro'
description: 'Highly declarative, very tiny (~3.8 Kb), dependency free router'
tags:
- routers
stars: 132
last_updated: '2020-10-22T19:05:25Z'
downloads: 536
- name: '`fa-svelte`'
url: 'https://github.com/alphapeter/fa-svelte'
description: Font Awesome 5 for Svelte
tags:
- components and libraries
- fonts and icons
stars: 53
last_updated: '2020-10-27T08:16:56Z'
downloads: 2143
- name: '`crayon-svelte`'
url: 'https://github.com/alshdavid/crayon'
description: Framework agnostic UI router for SPAs with specific support for Svelte
tags:
- routers
stars: 301
last_updated: '2020-10-21T14:51:46Z'
downloads: 87
- name: '`svelte-fullscreen`'
url: 'https://github.com/andrelmlins/svelte-fullscreen'
description: Component that performs fullscreen in DOM Elements
tags:
- components and libraries
- layout and structure
stars: 18
last_updated: '2020-10-07T17:22:57Z'
downloads: 501
- name: '`svelte-grid-responsive`'
url: 'https://github.com/andrelmlins/svelte-grid-responsive'
description: Responsive grid system based on Bootstrap for Svelte
tags:
- components and libraries
- layout and structure
stars: 8
last_updated: '2020-09-02T12:51:08Z'
downloads: 260
- name: '`svelte-infinite-scroll`'
url: 'https://github.com/andrelmlins/svelte-infinite-scroll'
description: Infinite Scroll Component to Svelte
tags:
- components and libraries
stars: 78
last_updated: '2020-10-16T18:40:32Z'
downloads: 1213
- name: angelozehr/svelte-example-museums
url: 'https://github.com/angelozehr/svelte-example-museums'
description: An example repo of a Svelte app that is IE11 compatible
tags:
- templates
stars: 27
last_updated: '2020-09-26T01:59:19Z'
- name: antony/svelte-box
url: 'https://github.com/antony/svelte-box'
description: >-
A truffle box for Svelte, a seed for building an Ethereum dapp using
Truffle
tags:
- templates
stars: 31
last_updated: '2020-10-06T03:30:09Z'
- name: '`svelte-formly`'
url: 'https://github.com/arabdevelop/svelte-formly'
description: Generate dynamic forms for sveltejs / Sapper js
tags:
- svelte-form
- svelte-formly
- saper-form
- sapper-formly
- form
- forms
- formly
stars: 67
last_updated: '2020-10-20T07:08:40Z'
downloads: 1633
- name: '`svelte-websocket-store`'
url: 'https://github.com/arlac77/svelte-websocket-store'
description: Svelte store with a websocket backend
tags:
- components and libraries
- stores and state
downloads: 161
stars: 48
last_updated: '2020-10-21T09:57:19Z'
- name: Axelen123/svelte-ts-template
url: 'https://github.com/Axelen123/svelte-ts-template'
description: Typescript template for Svelte v3
tags:
- templates
stars: 21
last_updated: '2020-10-19T16:47:15Z'
- name: '`sveltestrap`'
url: 'https://github.com/bestguy/sveltestrap'
description: Bootstrap 4 components for Svelte
tags:
- components and libraries
- component sets
stars: 443
last_updated: '2020-10-27T04:01:59Z'
downloads: 3328
- name: '`@beyonk/gdpr-cookie-consent-banner`'
url: 'https://github.com/beyonk-adventures/gdpr-cookie-consent-banner'
description: A GDPR compliant cookie consent banner implementation
tags:
- components and libraries
- inputs and widgets
stars: 49
last_updated: '2020-10-19T08:24:53Z'
downloads: 1170
- name: '`@beyonk/svelte-carousel`'
url: 'https://github.com/beyonk-adventures/svelte-carousel'
description: 'A super lightweight, super simple carousel for Svelte 3'
tags:
- components and libraries
- layout and structure
stars: 114
last_updated: '2020-10-25T14:31:26Z'
downloads: 931
- name: beyonk-adventures/svelte-component-livereload-template
url: 'https://github.com/beyonk-adventures/svelte-component-livereload-template'
description: Component template with LiveReload and Jest unit testing
tags:
- templates
stars: 13
last_updated: '2020-09-29T05:02:37Z'
- name: '`@beyonk/svelte-facebook-customer-chat`'
url: 'https://github.com/beyonk-adventures/svelte-facebook-customer-chat'
description: A Facebook customer chat integration for Svelte / Sapper
tags:
- components and libraries
- third party services
stars: 2
last_updated: '2020-10-19T08:36:39Z'
downloads: 5
- name: '`@beyonk/svelte-facebook-pixel`'
url: 'https://github.com/beyonk-adventures/svelte-facebook-pixel'
description: A Facebook pixel module for Svelte / Sapper
tags:
- components and libraries
- third party services
stars: 7
last_updated: '2020-10-22T05:34:25Z'
downloads: 229
- name: '`@beyonk/svelte-google-analytics`'
url: 'https://github.com/beyonk-adventures/svelte-google-analytics'
description: Google Analytics tracking module for Svelte / Sapper
tags:
- components and libraries
- third party services
stars: 14
last_updated: '2020-10-25T14:31:22Z'
downloads: 25
- name: '`@beyonk/svelte-googlemaps`'
url: 'https://github.com/beyonk-adventures/svelte-googlemaps'
description: Google Maps integration for Svelte
tags:
- components and libraries
- maps
stars: 24
last_updated: '2020-10-14T17:28:31Z'
downloads: 523
- name: '`@beyonk/svelte-mapbox`'
url: 'https://github.com/beyonk-adventures/svelte-mapbox'
description: Mapbox integration for Svelte
tags:
- components and libraries
- maps
stars: 79
last_updated: '2020-10-21T18:15:55Z'
downloads: 632
- name: '`@beyonk/svelte-notifications`'
url: 'https://github.com/beyonk-adventures/svelte-notifications'
description: Svelte toast notifications that can be used in any JS application
tags:
- components and libraries
- notifications
stars: 121
last_updated: '2020-10-27T00:20:02Z'
downloads: 1989
- name: '`@beyonk/svelte-scrollspy`'
url: 'https://github.com/beyonk-adventures/svelte-scrollspy'
description: Scroll Spy component for Svelte
tags:
- components and libraries
- interaction
stars: 23
last_updated: '2020-10-21T18:10:04Z'
downloads: 150
- name: '`svelte-simple-icons`'
url: 'https://github.com/beyonk-adventures/svelte-simple-icons'
description: SVG icons for popular brands
tags:
- components and libraries
- fonts and icons
downloads: 6
stars: 8
last_updated: '2020-10-19T08:39:45Z'
- name: '`@beyonk/svelte-trustpilot`'
url: 'https://github.com/beyonk-adventures/svelte-trustpilot'
description: Trustpilot Trustboxes for Svelte / Sapper
tags:
- components and libraries
- third party services
stars: 1
last_updated: '2019-12-11T08:09:03Z'
downloads: 144
- name: TodoMVC Svelte
url: 'https://github.com/blacksonic/todomvc-svelte'
description: >-
A complete implementation with components, store, unit e2e tests and
linting.
tags:
- templates
stars: 24
last_updated: '2020-10-01T14:32:45Z'
- name: Blade67/Sveltron
url: 'https://github.com/Blade67/Sveltron'
description: Electron Svelte boilerplate
tags:
- templates
- electron
stars: 41
last_updated: '2020-10-19T22:04:55Z'
- name: '`@bjornlu/svelte-router`'
url: 'https://github.com/bluwy/svelte-router'
description: An easy-to-use SPA router for Svelte
tags:
- routers
stars: 21
last_updated: '2020-10-26T07:52:00Z'
downloads: 284
- name: brandonxiang/svelte-webpack-mpa
url: 'https://github.com/brandonxiang/svelte-webpack-mpa'
description: A template to create multi-page application powered by Webpack
tags:
- templates
stars: 12
last_updated: '2020-10-26T07:07:14Z'
- name: '`svelte-sortable-list`'
url: 'https://github.com/brunomolteni/svelte-sortable-list'
description: A list with animated drag-n-drop functionality
tags:
- components and libraries
- layout and structure
stars: 69
last_updated: '2020-10-20T13:45:36Z'
downloads: 425
- name: '`svelte-data-grid`'
url: 'https://github.com/bsssshhhhhhh/svelte-data-grid'
description: A grid for displaying and editing any amount of data
tags:
- components and libraries
- layout and structure
downloads: 53
stars: 91
last_updated: '2020-10-23T19:17:12Z'
- name: '`query-store`'
url: 'https://github.com/buhrmi/query-store'
description: Writable store that syncs with the browser's search params
tags:
- components and libraries
- stores and state
downloads: 39
stars: 17
last_updated: '2020-08-31T17:38:49Z'
- name: '`svelma`'
url: 'https://github.com/c0bra/svelma'
description: Bulma components for Svelte
tags:
- components and libraries
- component sets
stars: 355
last_updated: '2020-10-24T08:56:19Z'
downloads: 994
- name: '`svelte-forms`'
url: 'https://github.com/chainlist/svelte-forms'
description: Svelte forms validation made easy
tags:
- components and libraries
- forms and validation
stars: 95
last_updated: '2020-10-16T17:55:59Z'
downloads: 1216
- name: '`svelte-credit-cards`'
url: 'https://github.com/CharlyJazz/svelte-credit-card'
description: A component to render a credit card preview - useful for ecommerce.
tags:
- components and libraries
stars: 21
last_updated: '2020-10-13T10:16:43Z'
downloads: 0
- name: chuanqisun/svelte-electron-template
url: 'https://github.com/chuanqisun/svelte-electron-template'
description: The bare minimum boilerplate to use Svelte in electron
tags:
- templates
- electron
stars: 8
last_updated: '2020-10-05T02:30:16Z'
- name: coc-svelte
url: 'https://github.com/coc-extensions/coc-svelte'
description: Svelte support for (Neo)Vim
tags:
- integrations
- editor tools
stars: 55
last_updated: '2020-10-26T11:32:48Z'
- name: '`svelte-headroom`'
url: 'https://github.com/collardeau/svelte-headroom'
description: A Svelte component to hide your header on scroll
tags:
- components and libraries
- layout and structure
stars: 49
last_updated: '2020-09-27T10:41:17Z'
downloads: 393
- name: '`svelte-fa`'
url: 'https://github.com/Cweili/svelte-fa'
description: Tiny FontAwesome 5 component for Svelte
tags:
- components and libraries
- fonts and icons
stars: 71
last_updated: '2020-10-18T17:03:09Z'
downloads: 832
- name: dafn/svelte-typescript-parcel
url: 'https://github.com/dafn/svelte-typescript-parcel'
description: >-
Minimal boilerplate example of Svelte with Typescript using Parcel. This
also includes scss support
tags:
- templates
stars: 46
last_updated: '2020-08-27T07:04:30Z'
- name: dafn/svelte-typescript-rollup
url: 'https://github.com/dafn/svelte-typescript-rollup'
description: >-
Minimal boilerplate example of Svelte with Typescript using Rollup. This
also includes scss support
tags:
- templates
stars: 78
last_updated: '2020-09-16T08:07:27Z'
- name: '`svelte-table`'
url: 'https://github.com/dasDaniel/svelte-table'
description: A table with sorting and filtering
tags:
- components and libraries
- layout and structure
downloads: 633
stars: 103
last_updated: '2020-10-25T23:28:35Z'
- name: '`svelte-moveable`'
url: 'https://github.com/daybrush/moveable/tree/master/packages/svelte-moveable'
description: >-
Component for moveable, draggable, resizable, scalable, rotatable, and
more
tags:
- components and libraries
- interaction
downloads: 333
stars: 0
last_updated: 2020-02-25T04:26:33.877Z
- name: '`svelte-ruler`'
url: 'https://github.com/daybrush/ruler/tree/master/packages/svelte-ruler'
description: A Ruler component that can draw grids and scroll infinitely
tags:
- components and libraries
- inputs and widgets
downloads: 33
stars: 0
last_updated: 2020-02-25T04:26:33.665Z
- name: Sapper (Webpack) + TailwindCSS Template
url: 'https://github.com/deanpress/sapper-tailwind-webpack-starter'
description: >-
Starter Webpack template for Sapper apps using tailwindcss, postcss,
purgecss, and svelte-preprocess.
tags:
- templates
stars: 7
last_updated: '2020-09-21T22:15:30Z'
- name: devghost/svelte
url: 'https://github.com/devghost/svelte'
description: 'Skeleton app with Parcel, Jest, ESLint, Prettier, Babel, Wallaby'
tags:
- templates
stars: 5
last_updated: '2020-09-16T17:32:03Z'
- name: '`yasp-modals`'
url: 'https://github.com/dievardump/yasp-modals'
description: Highly customizable and easy to use modal system
tags:
- components and libraries
- modals
stars: 2
last_updated: '2020-08-23T15:59:19Z'
downloads: 30
- name: '`yasp-router`'
url: 'https://github.com/dievardump/yasp-router'
description: Very flexible router
tags:
- components and libraries
- routers
stars: 2
last_updated: '2020-08-23T15:52:23Z'
downloads: 19
- name: '`waxwing-rating`'
url: 'https://github.com/dmitrykurmanov/waxwing-rating'
description: rating widget for the web
tags:
- components and libraries
- inputs and widgets
stars: 5
last_updated: '2019-12-13T03:38:53Z'
downloads: 53
- name: '`@dopry/svelte-auth0`'
url: 'https://github.com/dopry/svelte-auth0'
description: Auth0 component library
tags:
- components and libraries
- integrations
- auth
stars: 22
last_updated: '2020-10-19T02:19:13Z'
downloads: 34
- name: '`svelte-feather-icons`'
url: 'https://github.com/dylanblokhuis/svelte-feather-icons'
description: Feather icons for Svelte
tags:
- components and libraries
- fonts and icons
stars: 45
last_updated: '2020-10-19T18:45:26Z'
downloads: 32279
- name: '`@easylogic/svelte-summernote`'
url: 'https://github.com/easylogic/svelte-summernote'
description: 'summernote extension for Svelte, a wysiwyg editor'
tags:
- components and libraries
- inputs and widgets
downloads: 12
stars: 6
last_updated: '2020-10-09T14:36:07Z'
- name: '`svelte-dev-helper`'
url: 'https://github.com/ekhaled/svelte-dev-helper'
description: Helper for Svelte components to ease development. Used by `svelte-loader`
tags:
- components and libraries
- development and documentation
stars: 6
last_updated: '2020-05-19T03:25:17Z'
downloads: 52460
- name: '`@elderjs/elderjs`'
url: 'https://github.com/Elderjs/elderjs'
description: >-
Elder.js is an opinionated static site generator and web framework for
Svelte built with SEO in mind.
tags:
- components and libraries
stars: 716
last_updated: '2020-10-27T00:38:08Z'
downloads: 0
- name: '`svelte-ie11`'
url: 'https://github.com/elsonigo/svelte-ie11'
description: svelte template with basic babel setup for ie11 compatibility
tags:
- template
stars: 0
last_updated: '2020-05-05T10:45:22Z'
- name: '`svelte-routing`'
url: 'https://github.com/EmilTholin/svelte-routing'
description: A declarative Svelte routing library with SSR support
tags:
- routers
stars: 1083
last_updated: '2020-10-26T21:01:22Z'
downloads: 10848
- name: '`svelte-rate-it`'
url: 'https://github.com/emrekara37/svelte-rate-it'
description: A rate component for Svelte apps
tags:
- components and libraries
- inputs and widgets
stars: 28
last_updated: '2020-10-07T17:28:48Z'
downloads: 6
- name: '`@equipmentshare/date-range-input`'
url: 'https://github.com/EquipmentShare/date-range-input'
description: A user interface for inputting date ranges
tags:
- components and libraries
- time and date
stars: 10
downloads: 8
last_updated: '2020-10-07T17:29:14Z'
- name: '`svelte-tree`'
url: 'https://github.com/esinx/svelte-tree'
description: Tree view component for svelte
tags:
- component
- tree
stars: 5
last_updated: '2020-10-09T14:35:14Z'
downloads: 62
- name: vim-svelte
url: 'https://github.com/evanleck/vim-svelte'
description: Svelte JavaScript syntax highlighting for vim
tags:
- integrations
- editor tools
stars: 134
last_updated: '2020-10-24T04:45:57Z'
- name: '`svelteify`'
url: 'https://github.com/exybore/svelteify'
description: Material components library for Svelte using the stylesheet of Vuetify
tags:
- components and libraries
- component sets
stars: 40
last_updated: '2020-09-28T09:30:00Z'
downloads: 7
- name: fabiohvp/svelte-template
url: 'https://github.com/fabiohvp/svelte-template'
description: Svelte with materializecss + tailwindcss
tags:
- templates
stars: 0
last_updated: 2020-02-25T04:26:33.967Z
- name: farhan2106/svelte-typescript
url: 'https://github.com/farhan2106/svelte-typescript'
description: Typescript + Storybook + Webpack boilerplate
tags:
- templates
stars: 35
last_updated: '2020-08-28T01:30:54Z'
- name: farhan2106/svelte-typescript-ssr
url: 'https://github.com/farhan2106/svelte-typescript-ssr'
description: Typescript + Storybook + Webpack with SSR boilerplate
tags:
- templates
stars: 8
last_updated: '2019-10-28T04:47:37Z'
- name: '`svelte-simple-modal`'
url: 'https://github.com/flekschas/svelte-simple-modal'
description: 'A simple, small, and content-agnostic modal for Svelte'
tags:
- components and libraries
- layout and structure
stars: 87
last_updated: '2020-10-19T05:35:23Z'
downloads: 996
- name: '`@urql/svelte`'
url: 'https://github.com/FormidableLabs/urql/tree/master/packages/svelte-urql'
description: Svelte integration for FormidableLabs URQL
tags:
- components and libraries
- stores and state
- graphql
downloads: 375
- name: geakstr/svelte-3-rollup-typescript-vscode
url: 'https://github.com/geakstr/svelte-3-rollup-typescript-vscode'
description: Starter for Svelte 3/rollup/typescript/vscode
tags:
- templates
stars: 45
last_updated: '2020-09-03T20:35:10Z'
- name: '`svelte-icons`'
url: 'https://github.com/gibdig/svelte-icons'
description: 'Icon components for Svelte, featuring many icon sets'
tags:
- components and libraries
- fonts and icons
stars: 60
last_updated: '2020-10-21T06:01:46Z'
downloads: 1297
- name: '`svelte-native`'
url: 'https://github.com/halfnelson/svelte-native'
description: Svelte controlling native components via Nativescript
tags:
- native
stars: 704
last_updated: '2020-10-26T13:13:38Z'
downloads: 943
- name: '`svelte-typewriter`'
url: 'https://github.com/henriquehbr/svelte-typewriter'
description: A simple and reusable typewriter effect for your Svelte applications
tags:
- components and libraries
stars: 62
downloads: 428
last_updated: '2020-10-24T06:14:18Z'
- name: '`svb`'
url: 'https://github.com/himynameisdave/svb'
description: A zero-config CLI to bundle Svelte apps (WIP)
tags:
- integrations
- cli tools
stars: 25
last_updated: '2020-06-09T15:49:21Z'
downloads: 3
- name: '`svelte-copyright`'
url: 'https://github.com/himynameisdave/svelte-copyright'
description: A Svelte component to format and display a copyright notice.
tags:
- components and libraries
stars: 4
last_updated: '2020-09-03T04:25:57Z'
downloads: 0
- name: '`svelte-flex`'
url: 'https://github.com/himynameisdave/svelte-flex'
description: A simple and reusable flexbox component for Svelte
tags:
- components and libraries
- layout and structure
downloads: 149
stars: 27
last_updated: '2020-10-23T11:26:44Z'
- name: '`svelte-frappe-charts`'
url: 'https://github.com/himynameisdave/svelte-frappe-charts'
description: Svelte bindings for frappe-charts.
tags:
- charts
- components and libraries
stars: 73
last_updated: '2020-10-27T05:18:15Z'
downloads: 253
- name: '`svmd`'
url: 'https://github.com/hkh12/svmd'
description: 'Easy-to-use, Customizable Material Design components for Svelte'
tags:
- components and libraries
- component sets
stars: 8
last_updated: '2020-10-11T15:06:06Z'
downloads: 8
- name: Holben888/svelte-starter-template
url: 'https://github.com/Holben888/svelte-starter-template'
description: A small starter template to get up and running with Svelte v3
tags:
- templates
stars: 35
last_updated: '2020-08-17T21:23:41Z'
- name: '`svelte-material-ui`'
url: 'https://github.com/hperrin/svelte-material-ui'
description: Svelte Material UI Components
tags:
- components and libraries
- component sets
stars: 1250
last_updated: '2020-10-27T06:38:03Z'
downloads: 2014
- name: '`carbon-components-svelte`'
url: 'https://github.com/IBM/carbon-components-svelte'
description: Svelte implementation of the Carbon Design System
tags:
- components and libraries
- component sets
downloads: 1307
stars: 405
last_updated: '2020-10-27T07:12:34Z'
- name: '`attractions`'
url: 'https://github.com/illright/attractions'
description: A pretty cool UI kit for Svelte
tags:
- components and libraries
stars: 53
last_updated: '2020-10-24T19:22:23Z'
downloads: 5
- name: '`vite-plugin-svelte`'
url: 'https://github.com/intrnl/vite-plugin-svelte'
description: Vite plugin for compiling Svelte components
tags:
- integrations
- bundler plugins
stars: 47
last_updated: '2020-10-27T05:01:02Z'
downloads: 447
- name: '`svelte-spa-router`'
url: 'https://github.com/ItalyPaleAle/svelte-spa-router'
description: Router for SPAs using Svelte 3
tags:
- routers
stars: 573
last_updated: '2020-10-27T08:03:13Z'
downloads: 4858
- name: sapper-ecommerce
url: 'https://github.com/itswadesh/sapper-ecommerce'
description: >-
Svelte ecommerce - Headless, Authentication, Cart & Checkout, TailwindCSS,
Server Rendered, Proxy + API Integrated, Animations, Stores, Lazy Loading,
Loading Indicators, Carousel, Instant Search, Faceted Filters, 1 command
deploy to production, Open Source, MIT license
tags:
- templates
stars: 225
last_updated: '2020-10-27T04:16:12Z'
- name: '`svelte-flatpickr`'
url: 'https://github.com/jacobmischka/svelte-flatpickr'
description: Flatpickr component for Svelte
tags:
- components and libraries
- time and date
stars: 38
last_updated: '2020-10-21T14:12:58Z'
downloads: 1365
- name: '`svelte-navaid`'
url: 'https://github.com/jacwright/svelte-navaid'
description: A Svelte router powered by lukeed/navaid
tags:
- routers
stars: 14
last_updated: '2020-10-25T15:45:25Z'
downloads: 52
- name: '`svelvet`'
url: 'https://github.com/jakedeichert/svelvet'
description: A cli svelte compiler & watcher that works with snowpack
tags:
- integrations
- bundler plugins
downloads: 441
stars: 303
last_updated: '2020-10-26T12:52:36Z'
- name: '`@jamen/svelte-router`'
url: 'https://github.com/jamen/svelte-router'
description: Svelte router using a store and components
tags:
- routers
stars: 8
last_updated: '2020-07-12T14:53:52Z'
downloads: 7
- name: jerriclynsjohn/svelte-storybook-tailwind
url: 'https://github.com/jerriclynsjohn/svelte-storybook-tailwind'
description: Svelte + Storybook + Tailwind - Starter Template
tags:
- templates
stars: 168
last_updated: '2020-10-25T13:41:48Z'
- name: '`svelte-router`'
url: 'https://github.com/jikkai/svelte-router'
description: Router component for Svelte
tags:
- routers
stars: 61
last_updated: '2020-08-17T17:39:10Z'
downloads: 84
- name: '`svelte-pick-a-place`'
url: 'https://github.com/jimutt/svelte-pick-a-place'
description: Svelte component for position and area selection with Leaflet
tags:
- components and libraries
- maps
stars: 42
last_updated: '2020-08-24T08:24:26Z'
downloads: 184
- name: '`svelte-tabs`'
url: 'https://github.com/joeattardi/svelte-tabs'
description: Tabs component for Svelte
tags:
- components and libraries
- layout and structure
stars: 62
last_updated: '2020-10-18T18:32:59Z'
downloads: 593
- name: '`svelteml`'
url: 'https://github.com/john--kane/svelteml'
description: Simple package that makes ML more accessible
tags:
- components and libraries
last_updated: '2020-10-25T18:01:43Z'
downloads: 107
stars: 24
- name: '`svelte-compare-image-slider`'
url: 'https://github.com/johnwalley/compare-image-slider'
description: A simple tool for comparing two images.
tags:
- components and libraries
- images
stars: 4
last_updated: '2020-10-03T22:23:29Z'
downloads: 61
- name: jorgegorka/svelte-firebase
url: 'https://github.com/jorgegorka/svelte-firebase'
description: A template to help you start developing SPAs with Svelte and Firebase
tags:
- templates
stars: 82
last_updated: '2020-10-15T18:08:20Z'
- name: '`svelte-router-spa`'
url: 'https://github.com/jorgegorka/svelte-router'
description: Svelte router specially designed for Single Page Applications (SPA)
tags:
- routers
stars: 251
last_updated: '2020-10-26T04:20:55Z'
downloads: 1166
- name: justinekizhak/svelte-tailwind-template
url: 'https://github.com/justinekizhak/svelte-tailwind-template'
description: SvelteJS and TailwindCSS template
tags:
- templates
stars: 1
last_updated: '2020-08-19T07:25:38Z'
- name: '`svelte-css-vars`'
url: 'https://github.com/kaisermann/svelte-css-vars'
description: >-
Ever wanted to have reactive css variables in Svelte? What if I tell you
there's a way?
tags:
- components and libraries
stars: 127
last_updated: '2020-10-25T15:25:47Z'
downloads: 427
- name: '`svelte-i18n`'
url: 'https://github.com/kaisermann/svelte-i18n'
description: Internationalization library for Svelte
tags:
- components and libraries
- internationalization
stars: 358
last_updated: '2020-10-26T09:08:29Z'
downloads: 8440
- name: '`svelte-loadable`'
url: 'https://github.com/kaisermann/svelte-loadable'
description: Dynamically load a Svelte component
tags:
- components and libraries
- async loading
stars: 186
last_updated: '2020-10-11T20:52:13Z'
downloads: 546
- name: '`svelte-preprocess`'
url: 'https://github.com/kaisermann/svelte-preprocess'
description: A Svelte preprocessor with baked in support for common preprocessors
tags:
- integrations
- preprocessors
stars: 844
last_updated: '2020-10-27T06:15:33Z'
downloads: 39025
- name: '`svero`'
url: 'https://github.com/kazzkiq/svero'
description: A simple router for Svelte 3
tags:
- routers
stars: 212
last_updated: '2020-10-26T00:28:40Z'
downloads: 513
- name: '`svelte-notifications`'
url: 'https://github.com/keenethics/svelte-notifications'
description: Simple and flexible notifications system
tags:
- components and libraries
- notifications
stars: 167
last_updated: '2020-10-19T15:31:53Z'
downloads: 705
- name: '`baelte`'
url: 'https://github.com/kennethlarsen/baelte'
description: CLI tool for svelte to help you be productive
tags:
- integrations
- cli tools
stars: 84
last_updated: '2020-07-31T13:25:41Z'
downloads: 5
- name: '`svelte-fragment-component`'
url: 'https://github.com/kenoxa/svelte-fragment-component'
description: >-
Component that renders its children with lifecycle hooks to simplify
testing
tags:
- components and libraries
- testing
- jsx
stars: 0
last_updated: '2020-08-26T20:54:50Z'
downloads: 1
- name: '`svelte-htm`'
url: 'https://github.com/kenoxa/svelte-htm'
description: Tagged Template syntax for svelte to simplify testing
tags:
- components and libraries
- testing
- jsx
stars: 2
last_updated: '2020-08-26T20:57:28Z'
downloads: 1
- name: '`svelte-htm`'
url: 'https://github.com/kenoxa/svelte-htm'
description: Tagged Template syntax for svelte to simplify testing
tags:
- components and libraries
- testing
- jsx
stars: 2
last_updated: '2020-08-26T20:57:28Z'
downloads: 1
- name: '`svelte-jsx`'
url: 'https://github.com/kenoxa/svelte-jsx'
description: JSX for svelte to simplify testing
tags:
- components and libraries
- testing
- jsx
stars: 5
last_updated: '2020-10-19T16:51:53Z'
downloads: 1
- name: '`svelte-jsx`'
url: 'https://github.com/kenoxa/svelte-jsx'
description: JSX for svelte to simplify testing
tags: