forked from microjs/microjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
executable file
·5736 lines (5735 loc) · 248 KB
/
data.js
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
// See the README (https://github.com/madrobby/microjs.com#readme) for details about how
// to use this file.
// Make sure you run 'make compile' to check that your library doesn't come up with
// warnings or errors. It would also be appreciated if you could check any versioned
// libraries to see if they have new releases.
// As per the README, the source should be a link to your unminified, raw, source. It can
// also be just the raw JS if it's small enough, an array of source files or a ZIP file.
// See examples below.
module.exports = [
{
name: "Wirup",
github: "razaibi/Wirup",
tags: ["nano-framework", "single-page-application","fast", "routing", "wirup", "frontend", "javascript"],
description: "Lightweight nano framework for Single Page Applications (SPAs) on the web.",
url: "https://github.com/razaibi/Wirup",
source: "https://raw.githubusercontent.com/razaibi/Wirup/master/js/Wirup.js"
},
{
name: "WirupExpress",
github: "razaibi/WirupExpress",
tags: ["nano-framework", "data-binding", "lightweight","fast","wirupexpress", "frontend", "javascript"],
description: "The Ultra Lightweight version of Wirup.",
url: "https://github.com/razaibi/WirupExpress",
source: "https://raw.githubusercontent.com/razaibi/WirupExpress/master/js/WirupExpress.js"
},
{
name: "sprites.js",
github: "wisniewski94/sprites.js",
tags: ["sprite", "canvas", "sprites.js", "requestAnimationFrame", "raf", "front-end", "frontend", "javascript"],
description: "Sprites.js is simple canvas sprites animation library. No setTimeout() or setInterval(). Just rAF.",
url: "https://github.com/wisniewski94/sprites.js",
source: "https://raw.githubusercontent.com/wisniewski94/sprites.js/master/sprites.js"
},
{
name: "ShadowQuery",
github: "schrotie/shadow-query",
tags: ["web-components"],
description: "Micro-library for writing vanilla web components",
url: "https://github.com/schrotie/shadow-query",
source: "https://raw.githubusercontent.com/schrotie/shadow-query/master/shadowQuery.mjs"
},
{
name: "VP PubSub",
github: "schubergphilis/vp-pubsub",
tags: ["pubsub", "publish", "subscribe", "message", "pub", "sub", "emitter", "event"],
description: "VP PubSub is a publish/subscribe library that supports message filtering",
url: "https://github.com/schubergphilis/vp-pubsub",
source: "https://raw.githubusercontent.com/schubergphilis/vp-pubsub/master/vp-pubsub.js"
},
{
name: "tinyModal",
github: "juanbrujo/tinyModal",
tags: ["modal", "javascript", "vanilla", "simple"],
description: "Clean, Fast, Modular and customizable Modal Window controller",
url: "http://juanbrujo.github.io/tinyModal/",
source: "https://raw.githubusercontent.com/juanbrujo/tinyModal/master/src/tinyModal.js"
},
{
name: "NodeList.js",
github: "eorroe/NodeList.js",
tags: ["DOM", "NodeList"],
description: "Use the Native DOM APIs as easily as jQuery",
url: "https://github.com/eorroe/NodeList.js",
source: "https://raw.githubusercontent.com/eorroe/NodeList.js/master/NodeList.js"
},
{
name: "Star Rating",
github: "geminilabs/star-rating.js",
tags: ["rating", "stars", "star-rating"],
description: "Transforms a SELECT element into a dynamic star rating control",
url: "https://geminilabs.github.io/star-rating.js/",
source: [
"https://raw.githubusercontent.com/geminilabs/star-rating.js/master/src/star-rating.js",
"https://raw.githubusercontent.com/geminilabs/star-rating.js/master/dist/star-rating.css"
]
},
{
name: "Dragula",
github: "bevacqua/dragula",
tags: ["Drag and Drop", "simple", "Library"],
description: "Drag and drop so simple it hurts",
url: "https://bevacqua.github.io/dragula/",
source: "https://raw.githubusercontent.com/bevacqua/dragula/master/dragula.js"
},
{
name: "fuzzysearch",
github: "bevacqua/fuzzysearch",
tags: ["Lightweight", "Tiny", "fast", "fuzzy", "fuzzy-search", "search"],
description: "Tiny and blazing-fast fuzzy search in JavaScript",
url: "https://github.com/bevacqua/fuzzysearch",
source: "https://raw.githubusercontent.com/bevacqua/fuzzysearch/master/index.js"
},
{
name: "Fuse.js",
github: "krisk/fuse",
tags: ["Lightweight", "fuzzy", "fuzzy-search", "search"],
description: "Lightweight fuzzy-search library",
url: "http://fusejs.io",
source: "https://raw.githubusercontent.com/krisk/Fuse/master/src/fuse.js"
},
{
name: "Tiny Browser Framework",
github: "thedumbterminal/TinyBrowserFramework",
tags: ["framework", "web", "websocket", "browser"],
description: "Minimal Client JS Framework",
url: "https://github.com/thedumbterminal/TinyBrowserFramework",
source: "https://raw.githubusercontent.com/thedumbterminal/TinyBrowserFramework/master/src/index.js"
},
{
name: "syrupjs",
github: "ahmed-musallam/syrupjs",
tags: ["pubsub", "component-interaction", "event", "jquery"],
description: "A tiny pub/sub jQuery micro-framework for distant component interaction",
url: "https://github.com/ahmed-musallam/syrupjs",
source: ["https://raw.githubusercontent.com/ahmed-musallam/syrupjs/master/vendor/tiny-pub-sub.js","https://raw.githubusercontent.com/ahmed-musallam/syrupjs/master/index.js"]
},
{
name: "blobcounter.js",
github: "satrobit/blobcounter.js",
tags: ["blob", "image", "canvas", "processing", "2D", "blobcounter"],
description: "blobcounter.js helps you find blobs and shapes in an image",
url: "https://github.com/satrobit/blobcounter.js",
source: "https://raw.githubusercontent.com/satrobit/blobcounter.js/master/blobcounter.js"
},
/* gzipped file too big, 8.2 kB is not "micro", ignoring
{
name: "xion",
github: "danristea/xion",
tags: ["MVC", "JsonML", "diff", "DOM", "vtree"],
description: "Lightweight client-side MVC framework that uses JsonML syntax and virtual DOM diffing.",
url: "https://github.com/danristea/xion",
source: "https://raw.githubusercontent.com/danristea/xion/master/build/xion.dev.js"
},
*/
{
name: "uniloc",
github: "unicorn-standard/uniloc",
tags: ["router", "routing", "query", "parser", "parsing", "parameters", "uri"],
description: "Uniloc is a utility to match URIs to named routes, and to generate URIs given a route name and options",
url: "https://github.com/unicorn-standard/uniloc",
source: "https://raw.githubusercontent.com/unicorn-standard/uniloc/master/uniloc.js"
},
{
name: "body-scroll-freezer.js",
github: "ramonvictor/body-scroll-freezer",
tags: ["scroll", "freeze", "modal", "scrolling", "lightbox", "performance"],
description: "Dependency-free JS module to freeze body scroll when opening modal box",
url: "https://github.com/ramonvictor/body-scroll-freezer",
source: "https://raw.githubusercontent.com/ramonvictor/body-scroll-freezer/master/src/body-scroll-freezer.js"
},
{
name: "MagJS",
github: "magnumjs/mag.js",
tags: ["mvc framework", "mvc", "framework", "templating", "library", "component", "fast", "simple", "clean"],
description: "Elegant DOM bindings - Intuitive, tiny, super crazy fast, pure JavaScript 2 HTML component templating library",
url: "https://github.com/magnumjs/mag.js",
source: ["https://raw.githubusercontent.com/magnumjs/mag.js/master/src/fill.js",
"https://raw.githubusercontent.com/magnumjs/mag.js/master/src/module.js",
"https://raw.githubusercontent.com/magnumjs/mag.js/master/src/render.js",
"https://raw.githubusercontent.com/magnumjs/mag.js/master/src/mag.js"
]
},
{
name: "ViaJS",
github: "abdi0987/ViaJS",
tags: ["content", "load", "route", "dynamic", "browser", "page", "html"],
description: "Via is a small library that allows you to load content on to a page dynamically",
url: "https://github.com/abdi0987/ViaJS",
source: "https://raw.githubusercontent.com/abdi0987/ViaJS/master/lib/app.js"
},
{
name: "miq",
github: "edwinm/miq",
tags: ["jquery", "dom", "ajax"],
description: "Lightweight modern jQuery-like DOM library",
url: "http://www.bitstorm.org/javascript/miq/",
source: "https://raw.githubusercontent.com/edwinm/miq/master/miq.js"
},
{
name: "RouterX",
github: "bcoop713/routerx",
tags: ["router", "frp", "rxjs", "cycle", "rx"],
description: "A stupid simple functional reactive router built for use with Rx.js apps",
url: "https://github.com/bcoop713/routerx",
source: "https://raw.githubusercontent.com/bcoop713/routerx/master/routerx.js"
},
{
name: "scriber",
github: "jccazeaux/scriber",
tags: ["html", "DOM", "builder", "scriber", "writer"],
description: "A simple fluent library to write html DOM elements",
url: "https://jccazeaux.github.io/scriber",
source: "https://raw.githubusercontent.com/jccazeaux/scriber/master/src/scriber.js"
},
{
name: "xflagable",
github: "javimosch/xflagable",
tags: ["flag", "event", "promise"],
description: "Create flag promises",
url: "https://github.com/javimosch/xflagable/",
source: "https://raw.githubusercontent.com/javimosch/xflagable/master/xflagable.js"
},
{
name: "data-obs",
github: "lmettini/data-obs",
tags: ["observer", "events", "lightweight"],
description: "Simple lightweigh javascript data observer",
url: "https://github.com/lmettini/data-obs",
source: "https://raw.githubusercontent.com/lmettini/data-obs/master/data-obs.js"
},
{
name: "xtypejs",
github: "lucono/xtypejs",
tags: ["xtype", "type", "typeof", "data-type", "validation"],
description: "Elegant, highly efficient data validation for JavaScript",
url: "http://xtype.js.org",
source: "https://raw.githubusercontent.com/lucono/xtypejs/master/project/xtypejs/xtype.js"
},
{
name: "diapason",
github: "jccazeaux/diapason",
tags: ["dependency", "injection", "di", "asynchronous", "promise"],
description: "Asynchronous dependency injections that works on any promise framework",
url: "https://jccazeaux.github.io/diapason",
source: "https://raw.githubusercontent.com/jccazeaux/diapason/master/src/diapason.js"
},
{
name: "hotkeys",
github: "jaywcjlove/hotkeys",
tags: ["hotkey", "hotkeys", "hotkeys-js", "hotkeysjs", "key", "keys", "keyboard", "shortcuts"],
description: "A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.",
url: "http://jaywcjlove.github.io/hotkeys/",
source: "https://raw.githubusercontent.com/jaywcjlove/hotkeys/master/src/hotkeys.js"
},
{
name: "window.module",
github: "ziolko/window.module",
tags: ["di", "dependency", "injection", "container", "module", "require"],
description: "Synchronous module system for browsers.",
url: "https://github.com/ziolko/window.module",
source: "https://raw.githubusercontent.com/ziolko/window.module/master/window.module.js"
},
{
name: "Location Init",
github: "tbleckert/location-init",
tags: ["router", "callback", "init"],
description: "Simple route callbacks",
url: "https://github.com/tbleckert/location-init",
source: "https://raw.githubusercontent.com/tbleckert/location-init/master/index.js"
},
{
name: "indent.js",
github: "zebzhao/indent.js",
tags: ["indent", "autoindent", "indentation", "jsbeautify"],
description: "Pure indentation of JS, CSS, HTML code and nothing extra.",
url: "https://github.com/zebzhao/indent.js",
source: "https://raw.githubusercontent.com/zebzhao/indent.js/master/lib/indent.js"
},
{
name: "Handorgel",
github: "oncode/handorgel",
tags: ["handorgel", "accordion", "tabs", "toggle", "collapse"],
description: "Accessible W3C conform accordion written in ES6.",
url: "https://github.com/oncode/handorgel",
source: "https://raw.githubusercontent.com/oncode/handorgel/master/lib/js/umd/handorgel.js"
},
{
name: "Freezer.js",
github: "arqex/freezer",
tags: ["immutable", "react", "tree", "cursors", "store", "events"],
description: "An immutable tree data structure that is always updated from the root, making easier to think in a reactive way.",
url: "https://github.com/arqex/freezer",
source: "https://raw.githubusercontent.com/arqex/freezer/master/build/freezer.js"
},
{
name: "FromNow",
github: "lukeed/fromNow",
tags: ["date", "time", "parse", "format", "from now", "fromNow", "readable time", "time difference"],
description: "An extremely lightweight javascript utility for calculating readable time differences from now vs past or future dates.",
url: "https://github.com/lukeed/fromNow",
source: "https://raw.githubusercontent.com/lukeed/fromNow/master/fromNow.js"
},
{
name: "Trkl",
github: "jbreckmckye/trkl",
tags: ["observable", "frp", "functional reactive", "functional", "state", "knockout", "rx"],
description: "Reactive microlibrary with observables and Knockout-style computeds in 430 bytes (minified and gzipped)",
url: "https://github.com/jbreckmckye/trkl",
source: "https://raw.githubusercontent.com/jbreckmckye/trkl/master/trkl.js"
},
{
name: "InversifyJS",
github: "inversify/InversifyJS",
tags: ["dependency", "inversion", "inversion", "control"],
description: "A lightweight IoC container written in TypeScript.",
url: "http://inversify.io",
source: "https://raw.githubusercontent.com/inversify/InversifyJS/master/dist/inversify.js"
},
{
name: "AtSpy",
github: "AtSpy/AtSpy",
tags: ["decorator", "test", "spy", "angular", "typescript"],
description: "A test spy powered by es7 decorators and TypeScript ",
url: "http://AtSpy.github.io",
source: "https://raw.githubusercontent.com/AtSpy/AtSpy/master/dist/atspy.js"
},
{
name: "Canary",
github: "Mapita/Canary",
tags: ["javascript", "test", "tests", "testing", "unit test", "unit tests", "unit testing", "automated test", "automated tests", "automated testing"],
description: "Write and run unit tests.",
url: "https://github.com/Mapita/Canary",
package: "canary-test",
documentation: "http://canary.readthedocs.io/en/stable/",
source: "https://raw.githubusercontent.com/Mapita/Canary/master/canary.js"
},
{
name: "FrontExpress",
github: "camelaissani/frontexpress",
tags: ["frontexpress", "router", "routing", "express", "spa", "framework", "front-end", "tiny", "parameters", "querystring", "named", "path", "uri"],
description: "An Express.js-Style router for the front-end",
url: "https://www.frontexpressjs.com",
source: "https://raw.githubusercontent.com/camelaissani/frontexpress/master/frontexpress.js"
},
{
name: "Tinyscrollbar",
github: "wieringen/tinyscrollbar",
tags: ["scrollbar", "ui", "interface", "scroll"],
description: "Create pretty scrollbars",
url: "https://github.com/wieringen/tinyscrollbar",
source: "https://raw.githubusercontent.com/wieringen/tinyscrollbar/master/lib/tinyscrollbar.js"
},
{
name: "ba.js",
github: "Arood/bajs",
tags: ["animation", "animations", "css", "css3"],
description: "Create and manage CSS3 animations from JavaScript.",
url: "http://bajs.io",
source: "https://raw.githubusercontent.com/Arood/bajs/master/ba.js"
},
{
name: "Trak.js",
github: "mrmartineau/trak.js",
tags: ["trak", "track", "events", "analytics", "google", "tag", "tagging"],
description: "Universal analytics event tracking API wrapper",
url: "https://github.com/mrmartineau/trak.js",
source: "https://raw.githubusercontent.com/mrmartineau/trak.js/master/dist/trak.js"
},
{
name: "justlazy.js",
github: "fhopeman/justlazy",
tags: ["lazy", "load", "lazyload", "responsive", "image", "images", "loader", "srcset", "picture", "spinner"],
description: "Micro javascript library to lazy load responsive images (also with srcset attribute).",
url: "http://fhopeman.github.io/justlazy",
source: "https://raw.githubusercontent.com/fhopeman/justlazy/master/src/justlazy.js"
},
{
name: "ease.js",
github: "lloydzhou/ease",
tags: ["ease", "animation"],
description: "ease component for animation, include 30 ease functions.",
url: "https://github.com/lloydzhou/ease",
source: "https://raw.githubusercontent.com/lloydzhou/ease/master/ease.js"
},
{
name: "Nano ID",
github: "ai/nanoid",
tags: ["id", "uuid", "generator"],
description: "Secure URL-friendly unique string ID generator",
url: "https://github.com/ai/nanoid",
source: "https://raw.githubusercontent.com/ai/nanoid/master/index.js"
},
{
name: "Nano Events",
github: "ai/nanoevents",
tags: ["events", "EventEmitter", "pub/sub", "emit"],
description: "Simple and tiny event emitter library",
url: "https://github.com/ai/nanoevents",
source: "https://raw.githubusercontent.com/ai/nanoevents/master/index.js"
},
{
name: "ClassManager",
github: "kogarashisan/ClassManager",
tags: ["language", "class", "inheritance", "multiple", "extend"],
description: "One of the fastest and most convenient class systems in the world",
url: "https://github.com/kogarashisan/ClassManager",
source: "https://raw.githubusercontent.com/kogarashisan/ClassManager/master/lib/class_manager.js"
},
{
name: "FloatSidebar.js",
github: "vursen/FloatSidebar.js",
tags: ["sticky", "float", "sidebar"],
description: "Make your sidebar floating",
url: "https://github.com/vursen/FloatSidebar.js",
source: "https://raw.githubusercontent.com/vursen/FloatSidebar.js/master/dist/float-sidebar.js"
},
{
name: "geojson2svg",
github: "gagan-bansal/geojson2svg",
tags: ["maps", "geojson", "svg"],
description: "Converts geojson to svg string given svg viewport size and maps extent. Used for data visulizaton on maps.",
url: "https://github.com/gagan-bansal/geojson2svg",
source: "https://raw.githubusercontent.com/gagan-bansal/geojson2svg/master/dist/geojson2svg.js"
},
{
name: "N2O.js",
github: "synrc/n2o",
tags: ["web", "framework", "bert", "binary", "ws", "websocket", "templat", "utf", "validation", "erlang"],
description: "Robust binary WebSocket channels, templates, UTF-8 and validation for Erlang N2O Server.",
url: "https://github.com/synrc/n2o",
source: ["https://raw.githubusercontent.com/synrc/n2o/master/priv/bert.js",
"https://raw.githubusercontent.com/synrc/n2o/master/priv/n2o.js",
"https://raw.githubusercontent.com/synrc/n2o/master/priv/template.js",
"https://raw.githubusercontent.com/synrc/n2o/master/priv/utf8.js",
"https://raw.githubusercontent.com/synrc/n2o/master/priv/validation.js"
]
},
{
name: "Rat.js",
github: "keyten/Rat.js",
tags: ["canvas", "graphics", "oop", "html5", "games", "image", "draw"],
description: "Use objects on canvas",
url: "https://github.com/keyten/Rat.js",
source: "https://raw.githubusercontent.com/keyten/Rat.js/master/rat.js"
},
{
name: "Timesheet.js",
github: "sbstjn/timesheet.js",
tags: ["timesheet", "graph", "charts", "flow", "gantt", "draw"],
description: "Visualize your data with Timesheet.js",
url: "https://github.com/sbstjn/timesheet.js",
source: "https://raw.githubusercontent.com/sbstjn/timesheet.js/master/source/javascripts/timesheet.js"
},
{
name: "dual-emitter",
github: "charlike/dual-emitter",
tags: [
"browser",
"chrome",
"chromium",
"cross",
"cross-browser",
"custom",
"dom",
"dual",
"emitter",
"event",
"events",
"explorer",
"firefox",
"ie",
"ie8",
"internet",
"invoke",
"bind",
"mini",
"mozilla",
"node",
"nodejs",
"spa",
"databinding",
"binding",
"two way",
"data binding"
],
description: "Cross-browser (and IE8) + node.js event emitter in 35 lines. Invoke custom or DOM event. Useful for two-way data-binding!!",
url: "https://github.com/charlike/dual-emitter",
source: "https://raw.githubusercontent.com/charlike/dual-emitter/master/dist/dual-emitter.js"
},
{
name: "Muject",
github: "srijs/muject",
tags: ["dependency", "injection", "inversion", "control", "ioc", "di", "require"],
description: "10-SLOC no-bullshit dependency injection micro-library",
url: "https://github.com/srijs/muject",
source: "https://raw.githubusercontent.com/srijs/muject/master/index.js"
},
/* gzipped file too big, 7 kB is not "micro", ignoring
{
name: "Chop.js",
github: "hufyhang/chop",
tags: ["mvc framework", "mvc", "framework", "templating", "DOM", "routing"],
description: "A Super Light-Weight JavaScript Framework",
url: "https://github.com/hufyhang/chop",
source: "https://raw.githubusercontent.com/hufyhang/chop/master/chop.js"
},
*/
{
name: "Cquence.js",
github: "RamonGebben/Cquence",
tags: ["animation", "banner", "CSS animations"],
description: "A Super Tiny JavaScript Animation Library",
url: "https://github.com/RamonGebben/Cquence",
source: "https://raw.githubusercontent.com/RamonGebben/Cquence/master/Cquence.js"
},
/* gzipped file too big, 7 kB is not "micro", ignoring
{
name: "Mithril",
github: "lhorie/mithril",
tags: ["mvc framework", "mvc", "framework", "templating", "promise", "routing"],
description: "A javascript MVC framework for building brilliant applications",
url: "https://lhorie.github.io/mithril",
source: "https://raw.githubusercontent.com/lhorie/mithril.js/master/mithril.js"
},
*/
{
name: "fetchival",
github: "typicode/fetchival",
tags: ["fetch", "promise", "json", "xhr", "ajax", "rest"],
description: "Easy fetch requests",
url: "https://github.com/typicode/fetchival",
source: "https://raw.githubusercontent.com/typicode/fetchival/master/index.js"
},
{
name: "VanillaMasker",
github: "vanilla-masker/vanilla-masker",
tags: ["mask input", "mask", "vanilla"],
description: "VanillaMasker is a pure javascript mask input",
url: "http://vanilla-masker.github.io/vanilla-masker/",
source: "https://raw.githubusercontent.com/vanilla-masker/vanilla-masker/master/lib/vanilla-masker.js"
},
{
name: "once.js",
tags: ["called", "once", "function", "one", "single", "coffeescript", "javascript", "amd", "node", "web"],
description: "Enforce that a CoffeeScript or JavaScript function can only be executed once.",
url: "https://github.com/daniellmb/once.js",
source: "https://raw.githubusercontent.com/daniellmb/once.js/master/once.js"
},
{
name: "micro-events",
tags: ["event", "performance", "event emitter", "listener", "handler", "eventing", "amd", "node", "web"],
description: "A minimal event emitter implementation",
url: "https://github.com/alexanderGugel/micro-events",
source: "https://raw.githubusercontent.com/alexanderGugel/micro-events/master/index.js"
},
{
name: "strg.js",
github: "fend25/strg.js",
tags: ["localStorage", "sessionStorage", "cookie", "cookies"],
description: "Simple and clear localStorage, sessionStorage and cookie operating library with the single API",
url: "https://github.com/fend25/strg.js",
source: "https://raw.githubusercontent.com/fend25/strg.js/master/strg.js"
},
{
name: "imago.js",
github: "evandroeisinger/imago.js",
tags: ["image", "image manipulation", "image resizing", "image trimming"],
description: "It's a wonderful image library! With the purpose to facilitate the manipulation of images, imago.js enables you to perform trimming and resizing",
url: "https://github.com/evandroeisinger/imago.js",
source: "https://raw.githubusercontent.com/evandroeisinger/imago.js/master/src/imago.js"
},
{
name: "Euclid",
tags: ["euclid", "algorithm", "greatest", "common", "divisor", "gcd"],
description: "Recursive Euclidean algorithm for finding the greatest common divisor of two numbers.",
url: "https://github.com/daniellmb/Euclids-algorithm",
source: "https://raw.githubusercontent.com/daniellmb/Euclids-algorithm/master/gcd.src.js"
},
{
name: "VidBG",
tags: ["video", "background", "embed"],
description: "micro-library for embedding video backgrounds into web pages",
url: "https://github.com/daniellmb/VidBG",
source: "https://raw.githubusercontent.com/daniellmb/VidBG/master/vidbg.js"
},
{
name: "WorkerB",
tags: ["web", "worker", "webworker", "async", "threads", "inline"],
description: "Extremely simple inline Web Worker for easy multithreading in JS",
url: "https://github.com/lukeschaefer/WorkerB",
source: "https://raw.githubusercontent.com/lukeschaefer/WorkerB/master/WorkerB.js"
},
{
name: "aop.js",
tags: ["aspect", "oriented", "programming", "aop", "functional"],
description: "Aspect Oriented Programming Micro Library.",
url: "https://github.com/daniellmb/aop.js",
source: "https://raw.githubusercontent.com/daniellmb/aop.js/master/aop.js"
},
{
name: "di.js",
tags: ["dependency", "injection", "di"],
description: "Dependency Injection Micro Library.",
url: "https://github.com/daniellmb/di.js",
source: "https://raw.githubusercontent.com/daniellmb/di.js/master/di.js"
},
{
name: "ab.js",
tags: ["ab test", "a/b test", "split test", "testing"],
description: "A/B/n Testing Micro Library.",
url: "https://github.com/daniellmb/ab.js",
source: "https://raw.githubusercontent.com/daniellmb/ab.js/master/ab.src.js"
},
{
name: "FinnishSSN",
github: "vkomulai/finnish-ssn",
tags: ["SSN", "Finnish", "Validation", "Social security number", "Hetu", "Sotu"],
description: "Javascript library for validating and creating Finnish social security numbers.",
url: "https://github.com/vkomulai/finnish-ssn",
source: "https://raw.githubusercontent.com/vkomulai/finnish-ssn/master/finnish-ssn.js"
},
{
name: "vanillatree",
tags: ["jstree", "jquery", "interactive trees", "vanilla", "pure", "native"],
description: "Tiny replacement of jQuery jstree (\"interactive trees\") with no dependencies.",
url: "https://github.com/finom/vanillatree",
source: "https://raw.githubusercontent.com/finom/vanillatree/master/vanillatree.js"
},
{
name: "devicedetector.js",
tags: ["device detector", "client-side", "ismobile", "check mobile"],
description: "Tiny script detecting if you are on a desktop, mobile or tablet device.",
url: "https://github.com/PoeHaH/devicedetector",
source: "https://raw.githubusercontent.com/PoeHaH/devicedetector/master/devicedetector-production.js"
},
{
name: "MicroLib-Tabs",
tags: ["dom", "tabs", "tabbed content"],
description: "A small library for easily creating tabbed content. Small markup and a single function.",
url: "https://github.com/VizuaaLOG/microlib-tabs",
source: "https://raw.githubusercontent.com/VizuaaLOG/microlib-tabs/master/dist/tabs.microlib-latest.js"
},
{
name: "Chaintastic",
tags: ["data", "functional", "chain"],
description: "Create chainable sync/async APIs easily",
url: "https://github.com/ezakto/chaintastic",
source: "https://raw.githubusercontent.com/ezakto/chaintastic/master/lib/chaintastic.js"
},
{
name: "Feed",
github: "evandrolg/Feed",
tags: ["feed", "rss", "feed reader", "client-side"],
description: "A client-side library that work like a Feed Reader, returning all datas of a post - title, text, link, etc",
url: "https://github.com/evandrolg/Feed",
source: "https://raw.githubusercontent.com/EvandroLG/Feed/master/src/feed.js"
},
{
name: "Holen",
github: "RickStanley/Holen",
tags: ["xhr", "ajax", "nojquery", "xmlhttprequest", "x-requested-with", "http", "simple", "minimal", "german", "deutsch", "angular"],
description: "Simple and standalone AJAX library for modern browsers. Inspired by Angular's $http method.",
url: "https://github.com/RickStanley/Holen",
source: "https://raw.githubusercontent.com/RickStanley/Holen/master/index.js"
},
{
name: "Stoor",
github: "tiaanduplessis/stoor",
tags: ["storage", "local-storage", "session-storage"],
description: "Local and Session storage wrapper with support for namespacing and multi get, set and remove",
url: "https://github.com/tiaanduplessis/stoor",
source: "https://raw.githubusercontent.com/tiaanduplessis/stoor/master/dist/stoor.js"
},
{
name: "Dom.js",
tags: ["dom", "dom manipulation", "dom traversal", "dom events", "crossbrowser", "event", "traversal", " manipulation"],
description: "DOM.js is a lightweight, fast and cross browser library for DOM traversal, manipulation and event handling.",
url: "https://github.com/dkraczkowski/dom.js",
source: "https://raw.githubusercontent.com/dkraczkowski/dom.js/master/src/dom.js"
},
{
name: "Collection.js",
tags: ["localStorage", "database", "db", "simple", "crossbrowser", "query", "collection", "entity"],
description: "Collection.js is small but yet powerfull local database build on top of the localstorage.",
url: "https://github.com/dkraczkowski/collection.js",
source: "https://raw.githubusercontent.com/dkraczkowski/collection.js/master/src/collection.js"
},
{
name: "Infect.js",
github: "amwmedia/Infect.js",
tags: ["dependency injection", "DI", "dependency", "injection", "dependency-free"],
description: "Infectiously simple dependency injection for any JavaScript project",
url: "https://github.com/amwmedia/infect.js",
source: "https://raw.githubusercontent.com/amwmedia/infect.js/master/infect.js"
},
{
name: "Pegasus",
tags: ["AJAX", "JSON", "GET", "xhr", "request", "promise", "parallel", "performance", "load", "preload"],
description: "Load JSON data while still loading other scripts (xhr + promise).",
url: "https://github.com/typicode/pegasus",
source: "https://raw.githubusercontent.com/typicode/pegasus/master/dist/pegasus.js"
},
{
name: "FinnishBankUtils",
github: "vkomulai/finnish-bank-utils",
tags: ["Finnish", "IBAN", "Validation", "Viitenumero", "Reference number"],
description: "Library for validating and creating Finnish IBAN bank account numbers and reference numbers.",
url: "https://github.com/vkomulai/finnish-bank-utils",
source: "https://raw.githubusercontent.com/vkomulai/finnish-bank-utils/master/dist/finnish-bank-utils.js"
},
{
name: "FinnishBusinessIds",
github: "vkomulai/finnish-business-ids",
tags: ["Finnish", "Y-tunnus", "alv-tunnus", "vat number", "Business ID", "Validation"],
description: "Library for validating and creating Finnish business IDs (Y-tunnus, alv-numero).",
url: "https://github.com/vkomulai/finnish-business-ids",
source: "https://raw.githubusercontent.com/vkomulai/finnish-business-ids/master/dist/finnish-business-ids.js"
},
{
name: "PerfNow.js",
tags: ["performance", "benchmark", "polyfill", "high", "resolution", "timer", "now"],
description: "A high resolution performance benchmarking polyfill",
url: "https://github.com/daniellmb/perfnow.js",
source: "https://raw.githubusercontent.com/daniellmb/perfnow.js/master/perfnow.js"
},
{
name: "GraphicsJS",
github: "anychart/graphicsjs",
tags: ["svg", "vml", "graphics", "drawing", "animation", "visualization", "charts", "data visualization", "api"],
description: "A powerful lightweight JavaScript drawing library for graphics and animation, based on SVG/VML, with intuitive API",
url: "http://www.graphicsjs.org",
source: "https://raw.githubusercontent.com/AnyChart/GraphicsJS/master/dist/graphics.js"
},
{
name: "SaVaGe.js",
tags: ["svg"],
description: "A small SVG library with a chaining API",
url: "https://github.com/strathausen/savage",
source: "https://raw.githubusercontent.com/strathausen/savage/a165cd5be19ce3272034ba2fdbdd8445dae6b97e/savage.js"
},
{
name: "style.js",
github: "dhilipsiva/style.js",
tags: ["style", "CSS GUI"],
description: "A layman's tool to style HTML Elements and share CSS values",
url: "https://github.com/dhilipsiva/style.js",
source: "https://raw.githubusercontent.com/dhilipsiva/style.js/master/src/js/style.js"
},
{
name: "hyphen",
tags: ["text", "hyphenation", "hyphen", "liang"],
description: "Franklin M. Liang's hyphenation algorithm, implemented in Javascript",
url: "https://github.com/ytiurin/hyphen",
source: "https://raw.githubusercontent.com/ytiurin/hyphen/master/hyphen.js"
},
{
name: "Smart Select",
github: "davidecantoni/smart-select",
tags: ["select", "multi-select", "multi select", "standalone", "library", "micro", "smart"],
description: "Smart select is replacing and beautifying standard selects while keeping them async.",
url: "https://github.com/davidecantoni/smart-select",
source: "https://raw.githubusercontent.com/davidecantoni/smart-select/master/src/js/smart-select.js"
},
{
name: "Sortable",
github: "RubaXa/Sortable",
tags: ["sortable", "dnd", "reorder", "drag", "touch"],
description: "Sortable is a minimalist JavaScript library for modern browsers and touch devices. No jQuery.",
url: "http://rubaxa.github.com/Sortable/",
source: "https://raw.githubusercontent.com/RubaXa/Sortable/master/Sortable.js"
},
{
name: "CRC32",
tags: ["crc", "crc-32", "checksum", "check", "verify", "error", "hash"],
description: "Blazing fast CRC-32 checksum algorithm for binary and Unicode data.",
url: "https://github.com/SheetJS/js-crc32",
source: "https://raw.githubusercontent.com/SheetJS/js-crc32/master/crc32.js"
},
{
name: "AsyncIterator",
github: "aravindbaskaran/simple-async",
tags: ["async", "iterate", "callback"],
description: "A very lightweight javascript library for async iteration. Callback-chain-free. Zero dependency.",
url: "https://github.com/aravindbaskaran/simple-async",
source: "https://raw.githubusercontent.com/aravindbaskaran/simple-async/master/asynciterator.js"
},
{
name: "cryptofoo",
github: "SimonWaldherr/cryptofoo",
tags: ["hash", "hashing", "md5", "whirlpool"],
description: "A good compromise between speed and validity to hash strings",
url: "https://github.com/SimonWaldherr/cryptofoo",
source: "https://raw.githubusercontent.com/SimonWaldherr/cryptofoo/master/cryptofoo.js"
},
{
name: "guard",
github: "iofjuupasli/guard",
tags: ["access", "control", "acl", "guard", "auth", "authorized", "unauthorized"],
description: "Utility to split opportunities by the account level (free\\pro\\enterprise\\etc.) for frontend and node",
url: "https://github.com/iofjuupasli/guard",
source: "https://raw.githubusercontent.com/iofjuupasli/guard/master/guard.js"
},
{
name: "micromarkdown.js",
github: "SimonWaldherr/micromarkdown.js",
tags: ["markdown", "md", "html", "converter"],
description: "convert markdown to HTML in under 5kb",
url: "https://github.com/SimonWaldherr/micromarkdown.js",
source: "https://raw.githubusercontent.com/SimonWaldherr/micromarkdown.js/master/micromarkdown.js"
},
{
name: "mailcheck",
github: "mailcheck/mailcheck",
tags: ["library", "email", "spelling", "autosuggest", "autocorrect", "typo"],
description: "Reduce user-misspelled email addresses in your forms.",
url: "https://github.com/mailcheck/mailcheck",
source: "https://raw.githubusercontent.com/mailcheck/mailcheck/master/src/mailcheck.js"
},
{
name: "P",
github: "evandrolg/p",
tags: ["promise", "callback", "library", "functional"],
description: "It's an agnostic, cross-browser and very lightweight library to help you to work with Promise in JavaScript.",
url: "https://github.com/evandrolg/p",
source: "https://raw.githubusercontent.com/EvandroLG/P/master/src/p.js"
},
{
name: "MoaJS",
github: "Pencroff/MoaJs",
tags: ["class", "classes", "extend", "inheritance", "oop", "mixins"],
description: "ExtJs syntax for declaration object inheritance, mixins, static methods / properties / mixins, singleton declaration out of the box and less then 2kB minified JavaScript code.",
url: "https://github.com/Pencroff/MoaJs",
source: "https://raw.githubusercontent.com/Pencroff/MoaJs/master/moa.dev.js"
},
{
name: "state.js",
github: "steelbreeze/state.js",
tags: ["finite", "state", "machine"],
description: "Lightweight state machine library for JavaScript",
url: "https://github.com/steelbreeze/state.js",
source: "https://raw.githubusercontent.com/steelbreeze/state.js/master/lib/state.js"
},
{
name: "stateman.js",
github: "leeluolee/stateman",
tags: ["router", "state", "spa"],
description: "A tiny foundation that providing nested state-based routing for complex web application.decodeURI",
url: "https://github.com/leeluolee/stateman",
source: "https://raw.githubusercontent.com/leeluolee/stateman/master/stateman.js"
},
{
name: "bLazyJS",
github: "dinbror/blazy",
tags: ["lazy", "lazyload", "image", "images", "retina", "responsive", "loader"],
description: "A lightweight script for lazy loading and multi-serving (retina and responsive) images",
url: "http://dinbror.dk/blazy/",
source: "https://raw.githubusercontent.com/dinbror/blazy/master/blazy.js"
},
{
name: "hu.js",
github: "Canop/hu.js",
tags: ["svg", "vector", "graphics", "games"],
description: "A really light library for creation, manipulation and animation of SVG.",
url: "https://github.com/Canop/hu.js",
source: "https://raw.githubusercontent.com/Canop/hu.js/master/hu.js"
},
{
name: "SimpleBinder",
github: "james2doyle/simplebinder",
tags: ["binding", "data", "input", "change", "event", "callback", "library", "functional"],
description: "simplebinder is a zero dependency one-way databinder for javascript.",
url: "https://github.com/james2doyle/simplebinder",
source: "https://raw.githubusercontent.com/james2doyle/simplebinder/master/simplebinder.js"
},
{
name: "ArrowJS",
github: "pbojinov/arrow-js",
tags: ["notification", "cross-browser", "namespace"],
description: "Arrow is a small library for displaying a arrow pointing to the browser download location",
url: "https://github.com/pbojinov/arrow-js",
source: "https://raw.githubusercontent.com/pbojinov/arrow-js/master/src/js/arrow.js"
},
{
name: "fpscounter",
tags: ["performance", "canvas"],
description: "Creates a very simple fps counter in a browser. Zero config by default, options available.",
url: "https://github.com/pete-otaqui/fpscounter",
source: "https://raw.githubusercontent.com/pete-otaqui/fpscounter/master/fpscounter.js"
},
{
name: "minivents",
github: "allouis/minivents",
tags: ["events"],
description: "A mini event library for Javascript applications",
url: "https://github.com/allouis/minivents",
source: "https://raw.githubusercontent.com/allouis/minivents/master/dist/minivents.js"
},
{
name: "Tipograph",
github: "pnevyk/tipograph",
tags: ["typography", "type", "converter", "curly", "quotes", "dash"],
description: "Library which transforms your text input into typographically correct sequence of characters.",
url: "https://github.com/pnevyk/tipograph",
source: "https://raw.githubusercontent.com/pnevyk/tipograph/master/src/replace.js"
},
{
name: "audioJS",
github: "evandrolg/audiojs",
tags: ["audio", "html5"],
description: "AudioJS is a agnostic and cross-browser lib to work easily with the AudioContext API of HTML5.",
url: "https://github.com/evandrolg/audiojs",
source: "https://raw.githubusercontent.com/EvandroLG/audioJS/master/src/audio-js.js"
},
{
name: "CornerJS",
github: "Jabher/cornerjs",
tags: ["directives", "WeakMap", "MutationObserver"],
description: "IE9+ Angular-style directives for binding events to adding, removing and modifying classes, attributes and tags of DOM elements. Includes MutationObserver and WeakMap IE9+ polyfills",
url: "https://github.com/Jabher/cornerjs",
source: "https://raw.githubusercontent.com/Jabher/cornerjs/master/src/corner.js"
},
{
name: "http.js",
github: "organic-scholar/http.js",
tags: ["http", "ajax", "rest"],
description: "http.js is an object oriented javascript library for making http requests and ajax calls.",
url: "https://github.com/organic-scholar/http.js",
source: "https://raw.githubusercontent.com/organic-scholar/http.js/master/dist/http.js"
},
{
name: "Automator.js",
github: "brophdawg11/Automator.js",
tags: ["Automation", "Unit testing", "Sequence", "User interaction"],
description: "A minimal JavaScript library for automating practically anything in Javascript.",
url: "https://github.com/brophdawg11/Automator.js",
source: "https://raw.githubusercontent.com/brophdawg11/Automator.js/master/automator.js"
},
{
name: "Hover",
github: "jesseskinner/hover",
tags: ["Hoverboard", "Flux", "React", "store", "model", "data", "listener"],
description: "A very lightweight (anti-gravity?) data model and Flux store with actions and a state change listener.",
url: "https://github.com/jesseskinner/hover",
source: "https://raw.githubusercontent.com/jesseskinner/hover/master/src/index.js"
},
{
name: "j2c",
github: "j2css/j2c",
tags: ["CSS", "CSS-in-JS", "compiler", "preprocessor", "SASS", "LESS", "Stylus", "JSON"],
description: "CSS-in-JS libray. Small, yet robust and featureful. Local classes, nested selectors, all @rules (nestable), full style sheets or inline styles...",
url: "http://j2c.py.gy",
source: "https://raw.githubusercontent.com/j2css/j2c/master/dist/j2c.global.js"
},
{
name: "JsChannels",
github: "brophdawg11/JsChannels",
tags: ["Channels", "core.async", "async", "Promise", "Deferred", "Deferreds", "Promises"],
description: "A minimal JavaScript Channels library, inspired by Clojure's core.async.",
url: "https://github.com/brophdawg11/JsChannels",
source: "https://raw.githubusercontent.com/brophdawg11/JsChannels/master/channel.js"
},
{
name: "svgfallback",
github: "nbouvrette/svgfallback",
tags: ["svg", "fallback"],
description: "A tiny Javascript SVG Fallback for non supporting browsers",
url: "https://github.com/nbouvrette/svgfallback",
source: "https://raw.githubusercontent.com/nbouvrette/svgfallback/master/svgfallback.js"
},
{
name: "translate.js",
github: "musterknabe/translate.js",
tags: ["translation", "translate", "i18n", "internationalization", "languages", "localization"],
description: "A simple function to translate strings. With support for multiple plural forms and replacements/placeholders",
url: "https://github.com/musterknabe/translate.js",
source: "https://raw.githubusercontent.com/musterknabe/translate.js/master/src/translate.js"
},
{
name: "swiftclick",
github: "munkychop/swiftclick",
tags: ["mobile", "touch", "events", "swiftclick"],
description: "SwiftClick is a library created to eliminate the 300ms click event delay on touch devices that support orientation change.",
url: "https://github.com/munkychop/swiftclick",
source: "https://raw.githubusercontent.com/munkychop/swiftclick/master/js/libs/swiftclick.js"
},
{
name: "bullet",
github: "munkychop/bullet",
tags: ["bullet", "pubsub", "pub-sub", "events", "communication", "oop"],
description: "Bullet is an ultra lightweight and simple to use pub-sub library, with AMD/module support and an intuitive API.",
url: "https://github.com/munkychop/bullet",
source: "https://raw.githubusercontent.com/munkychop/bullet/master/dist/bullet.js"
},
{
name: "selecting",
github: "EvandroLG/selecting",
tags: ["selecting", "selection", "string", "text", "api"],
description: "A library that allows you to access the text selected by the user",
url: "https://github.com/EvandroLG/selecting",
source: "https://raw.githubusercontent.com/EvandroLG/selecting/master/src/selecting.js"
},
{
name: "Avtomat",
github: "Temoto-kun/avtomat",
tags: ["automaton", "finite-state", "machine", "deterministic", "non-deterministic", "input", "event"],
description: "Non-deterministic finite state machine (with empty moves) implementation",
url: "https://github.com/Temoto-kun/avtomat",
source: "https://raw.githubusercontent.com/Temoto-kun/avtomat/master/src/avtomat.js"
},
{
name: "store",
github: "nbubna/store",
tags: ["localStorage", "sessionStorage", "JSON", "namespace", "API", "extensible"],
description: "A better API for using localStorage and sessionStorage.",
url: "https://github.com/nbubna/store",
source: "https://raw.githubusercontent.com/nbubna/store/master/dist/store2.js"
},
{
name: "Popper.js",