forked from sveltejs/community-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.yml
More file actions
1871 lines (1871 loc) · 60.4 KB
/
Copy pathcode.yml
File metadata and controls
1871 lines (1871 loc) · 60.4 KB
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: 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: 3
last_updated: '2020-04-06T10:24:36Z'
- 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: 40
downloads: 363
last_updated: '2020-04-13T01:39:17Z'
- name: '`svelte-websocket-store`'
url: 'https://github.com/arlac77/svelte-websocket-store'
description: Svelte store with a websocket backend
tags:
- components and libraries
- store
downloads: 124
stars: 18
last_updated: '2020-04-16T23:22:56Z'
- 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: 268
stars: 19
last_updated: '2020-04-15T00:43:51Z'
- 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: 1227
stars: 151
last_updated: '2020-04-16T21:46:47Z'
- name: '`svelma`'
url: 'https://github.com/c0bra/svelma'
description: Bulma components for Svelte
tags:
- components and libraries
- component sets
stars: 264
last_updated: '2020-04-13T15:27:46Z'
downloads: 1135
- name: '`smelte`'
url: 'https://github.com/matyunya/smelte'
description: Material design components for Svelte using Tailwind CSS
tags:
- components and libraries
- component sets
stars: 401
last_updated: '2020-04-17T04:31:40Z'
downloads: 1437
- name: '`svelte-toolbox`'
url: 'https://github.com/svelte-toolbox/svelte-toolbox'
description: >-
A UI component library for Svelte implementing Google's Material Design
specification
tags:
- components and libraries
- component sets
stars: 58
last_updated: '2020-04-03T17:26:07Z'
downloads: 2377
- name: '`svelte-material-ui`'
url: 'https://github.com/hperrin/svelte-material-ui'
description: Svelte Material UI Components
tags:
- components and libraries
- component sets
stars: 797
last_updated: '2020-04-16T13:30:13Z'
downloads: 1865
- 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: 30
last_updated: '2020-04-13T15:17:06Z'
downloads: 10
- name: '`sveltemantic`'
url: 'https://github.com/titans-inc/sveltemantic'
description: Fomantic-UI components for Svelte 3
tags:
- components and libraries
- component sets
stars: 37
last_updated: '2020-04-08T23:48:15Z'
downloads: 7
- name: '`sveltestrap`'
url: 'https://github.com/bestguy/sveltestrap'
description: Bootstrap 4 components for Svelte
tags:
- components and libraries
- component sets
stars: 299
last_updated: '2020-04-14T13:21:15Z'
downloads: 3392
- name: '`svelte-mui`'
url: 'https://github.com/vikignt/svelte-mui'
description: A set of Svelte UI components inspired by Google's Material Design
tags:
- components and libraries
- component sets
stars: 125
last_updated: '2020-04-16T21:59:55Z'
downloads: 234
- 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: 6
last_updated: '2020-02-28T10:22:57Z'
downloads: 5
- 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: 42
last_updated: '2020-04-16T23:50:27Z'
downloads: 390
- name: '`minna-ui`'
url: 'https://github.com/WeAreGenki/minna-ui'
description: 'A fast, friendly, and fun web UI kit for everyone'
tags:
- components and libraries
- component sets
downloads: 309
stars: 73
last_updated: '2020-04-13T04:20:24Z'
- name: '`@zooplus/zoo-web-components`'
url: 'https://github.com/zooplus/zoo-web-components'
description: Web-components library built with Svelte
tags:
- components and libraries
- web component sets
stars: 19
last_updated: '2020-04-08T11:43:45Z'
downloads: 553
- name: '`@sveltejs/svelte-virtual-list`'
url: 'https://github.com/sveltejs/svelte-virtual-list'
description: A virtual list component for Svelte apps
tags:
- components and libraries
- layout and structure
stars: 245
last_updated: '2020-04-16T01:36:12Z'
downloads: 1490
- name: '`@sveltejs/svelte-scroller`'
url: 'https://github.com/sveltejs/svelte-scroller'
description: A `<Scroller>` component for Svelte apps
tags:
- components and libraries
- layout and structure
stars: 100
last_updated: '2020-04-13T11:42:47Z'
downloads: 1458
- name: '`@sveltejs/svelte-subdivide`'
url: 'https://github.com/sveltejs/svelte-subdivide'
description: >-
A component for building Blender-style layouts in Svelte apps (**VERSION
2**)
tags:
- components and libraries
- layout and structure
stars: 76
last_updated: '2020-04-08T23:13:23Z'
downloads: 50
- name: '`svelte-grid`'
url: 'https://github.com/vaheqelyan/svelte-grid'
description: 'A responsive, draggable and resizable grid layout, for Svelte'
tags:
- components and libraries
- layout and structure
stars: 260
last_updated: '2020-04-11T08:09:37Z'
downloads: 1261
- 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: 52
last_updated: '2020-04-15T14:02:03Z'
- 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: 32
last_updated: '2020-04-12T18:57:50Z'
downloads: 391
- 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: 63
last_updated: '2020-04-15T01:15:30Z'
downloads: 984
- name: '`multicarousel`'
url: 'https://github.com/sciactive/multicarousel'
description: A dependency free multiple item JavaScript carousel
tags:
- components and libraries
- layout and structure
stars: 25
last_updated: '2020-03-06T21:24:56Z'
downloads: 6
- name: '`svelte-swipe`'
url: 'https://github.com/SharifClick/svelte-swipe'
description: A carousel with touch support
tags:
- components and libraries
- layout and structure
stars: 50
last_updated: '2020-04-15T01:39:24Z'
downloads: 180
- name: '`svelte-tabs`'
url: 'https://github.com/joeattardi/svelte-tabs'
description: Tabs component for Svelte
tags:
- components and libraries
- layout and structure
stars: 43
last_updated: '2020-04-07T07:51:50Z'
downloads: 534
- name: '`svelte-media-query`'
url: 'https://github.com/xelaok/svelte-media-query'
description: CSS media queries in Svelte
tags:
- components and libraries
- layout and structure
stars: 22
last_updated: '2020-03-03T08:43:13Z'
downloads: 95
- name: '`svelte-match-media`'
url: 'https://github.com/pearofducks/svelte-match-media'
description: a matchMedia plugin for Svelte 3
tags:
- components and libraries
- layout and structure
stars: 17
last_updated: '2020-04-17T07:26:17Z'
downloads: 26
- name: '`svelte-watch-resize`'
url: 'https://github.com/xelaok/svelte-watch-resize'
description: Watch element resize in Svelte
tags:
- components and libraries
- layout and structure
stars: 9
last_updated: '2020-03-27T11:11:56Z'
downloads: 171
- 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: 43
last_updated: '2020-04-17T04:59:34Z'
downloads: 977
- name: '`svelte-popover`'
url: 'https://github.com/vaheqelyan/svelte-popover'
description: A smart popover component for Svelte
tags:
- components and libraries
- layout and structure
stars: 28
last_updated: '2020-04-16T21:33:29Z'
downloads: 61
- 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: 33
last_updated: '2020-03-31T20:56:46Z'
downloads: 422
- 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: 576
stars: 64
last_updated: '2020-04-10T13:27:01Z'
- name: '`@sveltejs/svelte-repl`'
url: 'https://github.com/sveltejs/svelte-repl'
description: The `<Repl>` component used on the Svelte website
tags:
- components and libraries
- inputs and widgets
stars: 112
last_updated: '2020-04-15T14:54:05Z'
downloads: 196
- name: '`svelte-color-picker`'
url: 'https://github.com/qintarp/svelte-color-picker'
description: A color picker component for Svelte
tags:
- components and libraries
- inputs and widgets
stars: 38
last_updated: '2020-04-17T05:01:04Z'
downloads: 45
- name: '`svelte-select`'
url: 'https://github.com/rob-balfre/svelte-select'
description: A select component for Svelte apps
tags:
- components and libraries
- inputs and widgets
stars: 211
last_updated: '2020-04-16T19:58:30Z'
downloads: 8053
- 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: 24
last_updated: '2020-02-26T08:03:20Z'
downloads: 3
- 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: 52
- 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: 22
last_updated: '2020-04-09T16:59:23Z'
downloads: 892
- name: '`svelte-inspect`'
url: 'https://github.com/trbrc/svelte-inspect'
description: console.log()-like interactive inspector for Svelte 3
tags:
- components and libraries
- inputs and widgets
stars: 21
last_updated: '2020-03-25T16:25:21Z'
downloads: 957
- name: '`@okrad/svelte-progressbar`'
url: 'https://github.com/okrad/svelte-progressbar'
description: 'A multiseries, SVG progressbar component made with Svelte'
tags:
- components and libraries
- inputs and widgets
stars: 25
last_updated: '2020-04-15T22:34:36Z'
downloads: 244
- name: Browser REPL JS
url: 'https://github.com/milafrerichs/browser-repl-js'
description: A Javascript REPL (code editor and code results) component
tags:
- components and libraries
- inputs and widgets
stars: 3
last_updated: '2020-02-24T02:28:47Z'
- name: Simple Svelte Autocomplete
url: 'https://github.com/pstanoev/simple-svelte-autocomplete'
description: Simple autocomplete / typeahead component for Svelte
tags:
- components and libraries
- inputs and widgets
stars: 26
last_updated: '2020-04-14T03:14:19Z'
- 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: 82
stars: 0
last_updated: 2020-02-25T04:26:33.665Z
- 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: 37
last_updated: '2020-04-14T14:24:54Z'
downloads: 1305
- name: '`svelte-awesome`'
url: 'https://github.com/RobBrazier/svelte-awesome'
description: 'Awesome SVG icon component for Svelte JS, built with Font Awesome icons'
tags:
- components and libraries
- fonts and icons
stars: 118
last_updated: '2020-04-15T14:26:47Z'
downloads: 7353
- 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: 31
last_updated: '2020-04-14T22:28:48Z'
downloads: 735
- name: '`fa-svelte`'
url: 'https://github.com/alphapeter/fa-svelte'
description: Font Awesome 5 for Svelte
tags:
- components and libraries
- fonts and icons
stars: 32
last_updated: '2020-04-17T00:47:35Z'
downloads: 2542
- 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: 28
last_updated: '2020-04-08T15:12:40Z'
downloads: 25049
- 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: 7
stars: 5
last_updated: '2020-03-27T11:18:33Z'
- name: '`@spaceavocado/svelte-form`'
url: 'https://github.com/spaceavocado/svelte-form'
description: Simple Svelte form model handler and input validations
tags:
- components and libraries
- forms and validation
stars: 16
last_updated: '2020-04-09T17:09:24Z'
downloads: 8
- name: '`svelte-forms`'
url: 'https://github.com/chainlist/svelte-forms'
description: Svelte forms validation made easy
tags:
- components and libraries
- forms and validation
stars: 52
last_updated: '2020-04-15T22:43:49Z'
downloads: 1500
- name: '`svelte-forms-lib`'
url: 'https://github.com/tjinauyeung/svelte-forms-lib'
description: A lightweight library for managing forms in Svelte
tags:
- components and libraries
- forms and validation
stars: 84
last_updated: '2020-04-16T21:44:05Z'
downloads: 863
- name: '`sveltejs-forms`'
url: 'https://github.com/mdauner/sveltejs-forms'
description: Form components using Yup for validation
tags:
- components and libraries
- forms and validation
stars: 76
last_updated: '2020-04-13T16:53:31Z'
downloads: 1647
- name: '`svelte-waypoint`'
url: 'https://github.com/matyunya/svelte-waypoint'
description: Lazyload images or anything component for Svelte
tags:
- components and libraries
- images
stars: 41
last_updated: '2020-04-05T23:26:01Z'
downloads: 1207
- name: '`svelte-image`'
url: 'https://github.com/matyunya/svelte-image'
description: Image processing with Sharp for Svelte
tags:
- components and libraries
- images
stars: 164
last_updated: '2020-04-14T04:27:30Z'
downloads: 677
- name: '`svelte-image-encoder`'
url: 'https://github.com/saabi/svelte-image-encoder'
description: An `<ImgEncoder>` component for editing and compressing profile pictures
tags:
- components and libraries
- images
stars: 22
last_updated: '2020-04-09T08:36:03Z'
downloads: 619
- name: '`svelte-marquee`'
url: 'https://github.com/silvestrevivo/svelte-marquee'
description: Marquee fully responsive and adaptive for Svelte
tags:
- components and libraries
stars: 1
last_updated: '2020-04-09T12:03:51Z'
downloads: 64
- name: '`svelte-easy-crop`'
url: 'https://github.com/ValentinH/svelte-easy-crop'
description: A Svelte component to crop images with easy interactions
tags:
- components and libraries
- images
stars: 47
last_updated: '2020-04-15T16:38:52Z'
downloads: 1170
- name: '`svelte-favicon-badge`'
url: 'https://github.com/kevmodrome/svelte-favicon-badge'
description: >-
A custom component that adds a favicon and a badge that you can use to
show for example number of unread messages.
tags:
- components and libraries
stars: 39
last_updated: '2020-04-08T21:21:06Z'
downloads: 67
- name: '`echarts-for-svelte`'
url: 'https://github.com/liyuanqiu/echarts-for-svelte'
description: Baidu Echarts(v3.0 & v4.0) components for Svelte wrapper
tags:
- components and libraries
- charts
stars: 14
last_updated: '2020-03-27T11:25:18Z'
downloads: 32
- name: '`svelte-fusioncharts`'
url: 'https://github.com/priyanjitdey94/svelte-fusioncharts'
description: Svelte component for FusionCharts JavaScript charting library
tags:
- components and libraries
- charts
stars: 45
last_updated: '2020-04-17T01:36:08Z'
downloads: 111
- 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: 128
last_updated: '2020-04-17T05:01:21Z'
downloads: 2088
- name: '`svelte-flatpickr`'
url: 'https://github.com/jacobmischka/svelte-flatpickr'
description: Flatpickr component for Svelte
tags:
- components and libraries
- time and date
stars: 26
last_updated: '2020-04-03T03:24:26Z'
downloads: 1344
- 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: 69
last_updated: '2020-04-15T16:52:03Z'
downloads: 1980
- name: '`svelte-notifications`'
url: 'https://github.com/keenethics/svelte-notifications'
description: Simple and flexible notifications system
tags:
- components and libraries
- notifications
stars: 117
last_updated: '2020-04-09T17:14:14Z'
downloads: 511
- name: '`@beyonk/svelte-mapbox`'
url: 'https://github.com/beyonk-adventures/svelte-mapbox'
description: Mapbox integration for Svelte
tags:
- components and libraries
- maps
stars: 38
last_updated: '2020-04-16T11:50:49Z'
downloads: 742
- name: '`@beyonk/svelte-googlemaps`'
url: 'https://github.com/beyonk-adventures/svelte-googlemaps'
description: Google Maps integration for Svelte
tags:
- components and libraries
- maps
stars: 16
last_updated: '2020-04-15T14:23:14Z'
downloads: 269
- 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: 32
last_updated: '2020-04-09T17:15:49Z'
downloads: 194
- name: '`svelte-i18n`'
url: 'https://github.com/kaisermann/svelte-i18n'
description: Internationalization library for Svelte
tags:
- components and libraries
- internationalization
stars: 219
last_updated: '2020-04-17T08:01:30Z'
downloads: 9174
- name: '`svelte-intl`'
url: 'https://github.com/Panya/svelte-intl'
description: Internationalize your Svelte apps using format-message and Intl object
tags:
- components and libraries
- internationalization
stars: 24
last_updated: '2020-03-27T11:28:42Z'
downloads: 188
- name: '`svelte-writable-derived`'
url: 'https://github.com/PikadudeNo1/svelte-writable-derived'
description: Two-way data-transforming stores
tags:
- components and libraries
- stores and state
stars: 16
last_updated: '2020-04-02T23:23:33Z'
downloads: 920
- name: '`svelte-apollo`'
url: 'https://github.com/timhall/svelte-apollo'
description: Svelte integration for Apollo GraphQL
tags:
- components and libraries
- stores and state
stars: 362
last_updated: '2020-04-15T01:27:34Z'
downloads: 4937
- name: Svelte for Meteor
url: 'https://github.com/meteor-svelte/meteor-svelte'
description: Build cybernetically enhanced web apps with Meteor and Svelte
tags:
- components and libraries
- stores and state
stars: 69
last_updated: '2020-03-23T09:01:35Z'
- name: '`svelte-webext-storage-adapter`'
url: 'https://github.com/PikadudeNo1/svelte-webext-storage-adapter'
description: Writable stores for Firefox/Chrome extensions using `chrome.storage`
tags:
- components and libraries
- stores and state
stars: 5
last_updated: '2020-03-27T11:30:46Z'
downloads: 191
- name: '`svelte-observable`'
url: 'https://github.com/timhall/svelte-observable'
description: Use observables in Svelte components with ease
tags:
- components and libraries
- stores and state
stars: 29
last_updated: '2020-04-16T15:55:49Z'
downloads: 4982
- name: '`svelte-mobx`'
url: 'https://github.com/xelaok/svelte-mobx'
description: Reactive MVVM with MobX & Svelte
tags:
- components and libraries
- stores and state
stars: 17
last_updated: '2020-03-25T02:51:43Z'
downloads: 5
- name: '`svelte-redux-connect`'
url: 'https://github.com/kolodziejczak-sz/svelte-redux-connect'
description: Redux binding to Svelte based on react-redux
tags:
- components and libraries
- stores and state
stars: 7
last_updated: '2020-03-28T23:25:40Z'
downloads: 64
- name: '`svql`'
url: 'https://github.com/pateketrueke/svql'
description: 'Wrapper for FetchQL, a GraphQL query client'
tags:
- components and libraries
- stores and state
stars: 21
last_updated: '2020-04-14T20:41:50Z'
downloads: 534
- 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: 289
stars: 8
last_updated: '2020-04-06T08:28:10Z'
- name: '`@sveltejs/gestures`'
url: 'https://github.com/sveltejs/gestures'
description: Svelte actions for cross-platform gesture detection (work in progress)
tags:
- components and libraries
- interaction
stars: 49
last_updated: '2020-04-12T19:52:24Z'
downloads: 206
- name: '`@beyonk/svelte-scrollspy`'
url: 'https://github.com/beyonk-adventures/svelte-scrollspy'
description: Scroll Spy component for Svelte
tags:
- components and libraries
- interaction
stars: 17
last_updated: '2020-03-27T12:42:07Z'
downloads: 195
- 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: 399
stars: 0
last_updated: 2020-02-25T04:26:33.877Z
- name: '`svelte-loadable`'
url: 'https://github.com/kaisermann/svelte-loadable'
description: Dynamically load a Svelte component
tags:
- components and libraries
- async loading
stars: 125
last_updated: '2020-04-16T18:49:14Z'
downloads: 727
- name: '`svelte-content-loader`'
url: 'https://github.com/PaulMaly/svelte-content-loader'
description: SVG placeholder components for loading content
tags:
- components and libraries
- async loading
stars: 63
last_updated: '2020-04-16T17:00:12Z'
downloads: 154
- name: '`svelte-viewpoint`'
url: 'https://github.com/PaulMaly/svelte-viewpoint'
description: Dynamically load a Svelte component with placeholders and preloading
tags:
- components and libraries
- async loading
stars: 11
last_updated: '2020-04-16T18:12:50Z'
downloads: 31
- 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
- social and other 3rd party services
stars: 4
last_updated: '2020-04-09T17:20:48Z'
downloads: 28
- 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
- social and other 3rd party services
stars: 2
last_updated: '2020-04-09T17:22:05Z'
downloads: 303
- 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
- social and other 3rd party services
stars: 0
last_updated: '2019-05-25T17:04:08Z'
downloads: 13
- name: '`@beyonk/svelte-trustpilot`'
url: 'https://github.com/beyonk-adventures/svelte-trustpilot'
description: Trustpilot Trustboxes for Svelte / Sapper
tags:
- components and libraries
- social and other 3rd party services
stars: 1
last_updated: '2019-12-11T08:09:03Z'
downloads: 187
- name: Svelte DevTools
url: 'https://github.com/RedHatter/svelte-devtools'
description: >-
Chrome/Firefox extension that allows inspection of Svelte components and
state
tags:
- components and libraries
- development and documentation
stars: 311
last_updated: '2020-04-11T19:55:26Z'
- 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: 22
last_updated: '2020-04-09T17:24:59Z'
downloads: 172
- name: '`prettier-plugin-svelte`'
url: 'https://github.com/UnwrittenFun/prettier-plugin-svelte'
description: Format your Svelte components using Prettier
tags:
- components and libraries
- development and documentation
stars: 150
last_updated: '2020-04-16T21:39:55Z'
downloads: 22561
- name: '`svelte-inspector`'
url: 'https://github.com/qutran/svelte-inspector'
description: >-
Development helper for inspecting and opening Svelte components in your
editor
tags:
- components and libraries
- development and documentation
stars: 46
last_updated: '2020-04-08T11:37:43Z'
downloads: 17
- 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: 7
last_updated: '2019-12-19T06:39:54Z'
downloads: 52842
- 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: 220
stars: 32
last_updated: '2020-04-16T17:11:14Z'
- name: '`svelte-adapter`'
url: 'https://github.com/pngwn/svelte-adapter'
description: Use Svelte components with Vue and React
tags:
- components and libraries
stars: 139
last_updated: '2020-04-16T06:06:34Z'
downloads: 173
- 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: 78
last_updated: '2020-04-16T06:04:21Z'
downloads: 519
- name: sveltejs/template
url: 'https://github.com/sveltejs/template'
description: Template for building basic applications with Svelte with rollup
tags:
- templates
stars: 520
last_updated: '2020-04-16T19:49:37Z'
- name: sveltejs/template-webpack
url: 'https://github.com/sveltejs/template-webpack'
description: Template for building basic Svelte applications with webpack
tags:
- templates
stars: 172
last_updated: '2020-04-12T06:17:36Z'
- name: sveltejs/component-template
url: 'https://github.com/sveltejs/component-template'
description: A base for building shareable Svelte components
tags:
- templates
stars: 221
last_updated: '2020-04-16T04:49:11Z'
- name: sveltejs/template-custom-element
url: 'https://github.com/sveltejs/template-custom-element'
description: Template for building basic applications with Svelte and custom elements
tags:
- templates
stars: 17
last_updated: '2020-01-07T00:34:45Z'
- name: sveltejs/sapper-template
url: 'https://github.com/sveltejs/sapper-template'
description: Starter template for Sapper apps
tags:
- templates
stars: 465
last_updated: '2020-04-16T19:15:56Z'
- 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: 57
last_updated: '2020-04-14T03:43:54Z'
- 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: 31
last_updated: '2020-04-13T15:31:37Z'
- name: pyoner/svelte-typescript
url: 'https://github.com/pyoner/svelte-typescript'
description: 'Typescript monorepo for Svelte v3 (preprocess, template, types)'
tags:
- templates
stars: 195
last_updated: '2020-04-17T06:30:30Z'
- name: Axelen123/svelte-ts-template
url: 'https://github.com/Axelen123/svelte-ts-template'
description: Typescript template for Svelte v3
tags:
- templates
stars: 18
last_updated: '2020-01-27T18:22:46Z'
- name: Shyam-Chen/svelte-play
url: 'https://github.com/Shyam-Chen/Svelte-Play'
description: 'A boilerplate with Material, Babel, PostCSS, and Webpack'
tags:
- templates
stars: 92
last_updated: '2020-04-15T09:19:21Z'
- 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: 32
last_updated: '2020-03-22T19:02:23Z'
- name: marcograhl/tailwindcss-svelte-starter
url: 'https://github.com/marcograhl/tailwindcss-svelte-starter'
description: Tailwindcss v1 + Svelte v3 = <3
tags:
- templates
stars: 71
last_updated: '2020-04-13T14:10:38Z'
- name: muhajirdev/svelte-tailwind-template
url: 'https://github.com/muhajirdev/svelte-tailwind-template'
description: Svelte + Tailwind = ❤
tags:
- templates
stars: 63
last_updated: '2020-03-29T01:50:21Z'
- name: fabiohvp/svelte-template
url: 'https://github.com/fabiohvp/svelte-template'
description: Svelte with materializecss + tailwindcss
tags:
- templates
stars: 0