forked from microjs/microjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
3625 lines (3624 loc) · 155 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: "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:"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: "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: "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.min.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: "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.src.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: "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: "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: "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_lite",
github: "steelbreeze/state_lite.js",
tags: ["finite", "state", "machine"],
description: "Lightweight state machine library for JavaScript",
url: "https://github.com/steelbreeze/state_lite.js",
source: "https://raw.githubusercontent.com/steelbreeze/state_lite.js/master/src/state_lite.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: "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: "Perion/ArrowJS",
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/Perion/ArrowJS",
source: "https://raw.githubusercontent.com/Perion/ArrowJS/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/minivents.js"
},
{
name: "Tipograph",
github: "nevyk/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/nevyk/tipograph",
source: "https://raw.githubusercontent.com/nevyk/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: "nauman1225/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/nauman1225/http.js",
source: "https://raw.githubusercontent.com/nauman1225/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: "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: "swiftclick",
github: "tmwagency/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/tmwagency/swiftclick",
source: "https://raw.githubusercontent.com/tmwagency/swiftclick/master/js/libs/swiftclick.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: "Oboe.js",
github: "jimhigson/oboe.js",
tags: ["ajax", "streaming", "download", "json", "parser", "sax", "jsonpath", "http"],
description: "Library for progressive parsing of ajax responses. Provides notification of objects found without waiting for the request to complete.",
url: "http://oboejs.com",
source: "https://raw.githubusercontent.com/jimhigson/oboe.js/master/dist/oboe-browser.js"
},
{
name: "webSqlSync.js",
github: "orbitaloop/WebSqlSync",
tags: ["websql", "sqlite", "synchronization", "sync", "sql", "web-sql", "database", "server"],
description: "Library to synchronize automatically a local WebSql database (SQLite on the browser) with your server",
url: "https://github.com/orbitaloop/WebSqlSync",
source: "https://raw.githubusercontent.com/orbitaloop/WebSqlSync/master/client_src/webSqlSync.js"
},
{
name: "attach.js",
github: "nicbell/attach.js",
tags: ["dom", "instantiation", "attach", "javascript"],
description: "A DOM instantiation API designed to tidy up and encapsulate attaching JavaScript to the page.",
url: "http://nicbell.github.io/attach.js/",
source: "https://raw.githubusercontent.com/nicbell/attach.js/master/attach.js"
},
{
name: "loglevel",
github: "pimterry/loglevel",
tags: ["log", "logging", "console"],
description: "Minimal lightweight logging for JavaScript, adding reliable log level methods to wrap any available console.log methods",
url: "https://github.com/pimterry/loglevel",
source: "https://raw.githubusercontent.com/pimterry/loglevel/master/dist/loglevel.js"
},
{
name: "goo.js",
github: "johnrobinsn/goo.js",
tags: ["HTML5", "canvas"],
description: "Microlibrary that makes it quick and easy to draw using the HTML5 Canvas API/",
url: "http://www.storminthecastle.com/projects/goo.js/",
source: "https://raw.githubusercontent.com/johnrobinsn/goo.js/master/src/goo.js"
},
{
name: "Satnav",
github: "f5io/satnav-js",
tags: ["routing", "micro", "hashchange", "pushState"],
description: "A micro (~1.5kb gzipped) JS routing library. Satnav provides functionality for Regex-like paths in JavaScript.",
url: "https://github.com/f5io/satnav-js",
source: "https://raw.githubusercontent.com/f5io/satnav-js/master/lib/satnav.js"
},
{
name: "mediahack.js",
github: "pomke/mediahack",
tags: ["mediaquery", "mediaqueries", "css3", "css", "media"],
description: "Add media-query classes to DOM nodes",
url: "https://github.com/pomke/mediahack",
source: "https://raw.githubusercontent.com/pomke/mediahack/master/mediahack.js"
},
{
name: "sawkit-client",
github: "cScarlson/sawkit-client",
tags: ["websocket", "socket", "HTML5", "custom", "events", "emit", "emission", "on", "jquery"],
description: "A non-intrusive Facade Pattern on the HTML5 WebSocket API which allows for: custom event-emissions, custom event-listeners, and binary sending - all in a chainable, jQuery-LIKE way.",
url: "https://github.com/cScarlson/sawkit-client",
source: "https://raw.githubusercontent.com/cScarlson/sawkit-client/master/$ws.js"
},
{
name: "SDB.js",
github: "cScarlson/SDB",
tags: ["IndexedDB", "database", "object", "store", "localStorage"],
description: "A Facade Pattern on the HTML5 IndexedDB API.",
url: "https://github.com/cScarlson/SDB",
source: "https://raw.githubusercontent.com/cScarlson/SDB/master/SDB.js"
},
{
name: "detect-indent",
tags: ["indent", "indentation", "detect", "infer", "identify", "code", "string", "text", "source", "space", "tab"],
description: "Detect the indentation of code.",
url: "https://github.com/sindresorhus/detect-indent",
source: "https://raw.githubusercontent.com/sindresorhus/detect-indent/master/detect-indent.js"
},
{
name: "Tempreites",
github: "fiatjaf/tempreites",
tags: ["templating"],
description: "Semantic templates. Binds data to HTML markup. Direto da roça for the browser and server, no DOM needed, just strings.",
url: "https://github.com/fiatjaf/tempreites",
source: "https://raw.githubusercontent.com/fiatjaf/tempreites/master/src/tempreites.js"
},
{
name: "asynquence",
github: "getify/asynquence",
tags: ["async", "asynchronous", "control flow", "flow control"],
description: "asynchronous flow-control using sequences and gates",
url: "https://github.com/getify/asynquence",
source: ["https://rawnpm.getify.io/asynquence/latest/asq.src.js",
"https://rawnpm.getify.io/asynquence-contrib/latest/contrib.src.js"]
},
{
name: "native-promise-only",
github: "getify/native-promise-only",
tags: ["async", "asynchronous", "promise", "promises"],
description: "A polyfill for native ES6 Promises as close as possible (no extensions) to the strict spec definitions.",
url: "https://github.com/getify/native-promise-only",
source: "https://rawnpm.getify.io/native-promise-only/latest/lib/npo.src.js"
},
{
name: "Miniscroll.js",
github: "rogerluiz/Miniscroll-JS",
tags: ["scrollbar", "touch", "desktop", "scroll"],
description: "A simple scrollbar for desktop and mobile application using javascript. ",
url: "https://github.com/rogerluiz/Miniscroll-JS",
source: "https://raw.githubusercontent.com/rogerluiz/Miniscroll-JS/master/dist/miniscroll.js"
},
{
name: "remove.js",
github: "scrapmac/snippets",
tags: ["string", "remove", "cleanup", "redundant", "gibberish", "trim"],
description: "Small but powerful string cleanup and reduction library.",
url: "https://github.com/scrapmac/snippets/tree/master/remove.js",
source: "https://raw.githubusercontent.com/scrapmac/snippets/master/remove.js/remove.js"
},
{
name: "Taggle.js",
github: "okcoker/taggle.js",
tags: ["tags", "input", "autocomplete"],
description: "Form-ready delicious style tagging library.",
url: "http://sean.is/poppin/tags",
source: "https://raw.githubusercontent.com/okcoker/taggle.js/master/src/taggle.js"
},
{
name: "ImageFlip.js",
github: "erf/ImageFlip.js",
tags: ["slideshow", "images", "gallery", "collage"],
description: "Minimalistic slideshow library.",
url: "https://github.com/erf/ImageFlip.js",
source: "https://raw.githubusercontent.com/erf/ImageFlip.js/master/imageflip.js"
},
{
name: "safemap.js",
github: "philbooth/safemap.js",
tags: ["map", "dictionary", "associative array", "data structure"],
description: "A tiny, safe, ES3-compliant map/dictionary implementation.",
url: "https://github.com/philbooth/safemap.js",
source: "https://raw.githubusercontent.com/philbooth/safemap.js/master/src/safemap.js"
},
{
name: "OneDollar.js",
github: "voidplus/onedollar-coffeescript",
tags: ["gesture", "recognition", "recognizer", "multitouch", "interactive", "input", "jquery"],
description: "A JavaScript implementation of the $1 Gesture Recognizer, a two-dimensional template based gesture recognition",
url: "https://github.com/voidplus/onedollar-coffeescript",
source: "https://raw.githubusercontent.com/voidplus/onedollar-coffeescript/master/lib/onedollar.js"
},
{
name: "LocalDB.js",
github: "Agnostic/LocalDB.js",
tags: ["nosql", "ODM", "mongo", "json", "database", "web applications", "localStorage"],
description: "LocalDB.js is a tool that maps the structure of the databases in objects using the localStorage API, no database drivers are required, just add the library and use it!",
url: "http://agnostic.github.io/LocalDB.js",
source: "https://raw.githubusercontent.com/Agnostic/LocalDB.js/master/src/LocalDB.js"
},
{
name: "Countable",
github: "RadLikeWhoa/Countable",
tags: ["paragraphs", "words", "characters", "counting", "live", "text"],
description: "Countable is a JavaScript function to add live paragraph-, word- and character-counting to an HTML element.",
url: "http://radlikewhoa.github.io/Countable",
source: "https://raw.githubusercontent.com/RadLikeWhoa/Countable/master/Countable.js"
},
{
name: "iugo.js",
github: "chrismichaelscott/iugo",
tags: ["MVVC", "data binding", "template"],
description: "An extremely lightweight one-way data-binding tool without the bloat of a full framework. Makes separating markup from content easy.",
url: "http://iugojs.com",
source: "https://raw.githubusercontent.com/chrismichaelscott/iugo/master/iugo.js"
},
{
name: "Colors.js",
github: "mbjordan/Colors",
tags: ["color", "color manipulation"],
description: "Colors.js is an easy to use color-manipulation library that is lightweight and very functional.",
url: "http://mbjordan.github.io/Colors/",
source: "https://raw.githubusercontent.com/mbjordan/Colors/master/colors.js"
},
{
name: "css-time.js",
github: "philbooth/css-time.js",
tags: ["css", "time", "string", "milliseconds", "convert", "conversion"],
description: "A tiny library that converts milliseconds to and from CSS time strings.",
url: "https://github.com/philbooth/css-time.js",
source: "https://raw.githubusercontent.com/philbooth/css-time.js/master/src/css-time.js"
},
{
name: "accounting.js",
github: "josscrowcroft/accounting.js",
tags: ["math", "number", "money", "currency parsing", "currency formatting"],
description: "A lightweight JavaScript library for number, money and currency formatting - fully localisable, zero dependencies.",
url: "http://josscrowcroft.github.io/accounting.js/",
source: "https://raw.githubusercontent.com/josscrowcroft/accounting.js/master/accounting.js"
},
{
name: "sloth.js",
github: "hakubo/Sloth",
tags: ["lazy", "initialize", "viewport", "amd", "library", "scroll"],
description: "Lazy initialize components of a webpage when they become visible",
url: "https://github.com/hakubo/Sloth",
source: "https://raw.githubusercontent.com/hakubo/Sloth/master/sloth.max.js"
},
/* gone ?
{
name: "fx.js",
github: "agilemd/Fx",
tags: ["animation", "animate", "CSS", "CSS3", "requestanimationframe", "animationframe", "transform", "hardware", "translate", "scale"],
description: "A tiny, high performance, fully cross browser, dependency free animation library for the modern web.",
url: "https://github.com/agilemd/Fx",
source: "https://raw.githubusercontent.com/agilemd/Fx/master/src/fx.js"
},
*/
{
name: "zoe.js",
github: "zestjs/zoe",
tags: ["class", "inheritance", "events", "extend", "amd", "prototype", "prototypal"],
description: "An AMD-compatible natural extension-based class and event model, fully compatible with prototypal inheritance.",
url: "http://zoejs.org",
source: "https://raw.githubusercontent.com/zestjs/zoe/master/zoe.js"
},
{
name: "atom.js",
github: "zynga/atom",
tags: ["async", "barrier", "control", "events", "flow", "properties"],
description: "Small class providing async control flow, property listeners, barrier pattern, and more. For node and browser.",
url: "https://github.com/zynga/atom",
source: "https://raw.githubusercontent.com/zynga/atom/master/atom.js"
},
/* dist dir replaced with complex, versioned zip, will reenable after pull-request
{
name: "alertify.js",
github: "fabien-d/alertify.js",
tags: ["notification", "alert"],
description: "JavaScript Alert/Notification System.",
url: "https://github.com/fabien-d/alertify.js",
source: "https://raw.githubusercontent.com/fabien-d/alertify.js/master/dist/alertify.js"
},
*/
/* gzipped file too big, 7.4 kB is not "micro"
{
name: "svg.js",
github: "wout/svg.js",
tags: ["svg", "vector", "graphics"],
description: "A lightweight library for manipulating SVG.",
url: "https://github.com/wout/svg.js",
source: "https://raw.githubusercontent.com/wout/svg.js/master/dist/svg.js"
},
*/
{
name: "isMobile",
github: "kaimallea/isMobile",
tags: ["mobile", "mobile device", "tablet"],
description: "A simple JS library that detects if the device visiting the page is an Apple phones/tablet, Android phone/tablet, or a seven inch device (Nexus 7, Kindle Fire, Nook Tablet, Galaxy Tab)",
url: "https://github.com/kaimallea/isMobile",
source: "https://raw.githubusercontent.com/kaimallea/isMobile/master/isMobile.js"
},
{
name: "tinyrequire",
github: "adriancooney/tinyrequire",
tags: ["modules", "loader", "require", "define", "dependency", "manager"],
description: "To the point dependency management.",
url: "https://github.com/adriancooney/tinyrequire",
source: "https://raw.githubusercontent.com/adriancooney/tinyrequire/master/src/tinyrequire.js"
},
{
name: "fuzzy.js",
github: "Extaze/fuzzy.js",
tags: ["search", "fuzzy", "filter"],
description: "Fuzzy.js is a fuzzy search algorithm in javascript",
url: "https://github.com/Extaze/fuzzy.js",
source: "https://raw.githubusercontent.com/Extaze/fuzzy.js/master/fuzzy.js"
},
{
name: "spooks.js",
github: "philbooth/spooks.js",
tags: ["unit test", "spy", "spies", "mock", "fake", "dummy", "double", "stub"],
description: "A small library for creating unit test spies.",
url: "https://github.com/philbooth/spooks.js",
source: "https://raw.githubusercontent.com/philbooth/spooks.js/master/src/spooks.js"
},
{
name: "Respond.js",
github: "scottjehl/Respond",
tags: ["polyfill", "min-width", "max-width", "Media Queries", "CSS3"],
description: "A fast & lightweight polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more).",
url: "https://github.com/scottjehl/Respond",
source: "https://raw.githubusercontent.com/scottjehl/Respond/master/dest/respond.src.js"
},
{
name: "miuri.js",
github: "radmen/miuri.js",
tags: ["client", "server", "util", "parser", "uri"],
description: "Simple URI parser/builder",
url: "https://github.com/radmen/miuri.js",
source: "https://raw.githubusercontent.com/radmen/miuri.js/master/lib/miuri.js"
},
{
name: "RSVP.js",
github: "tildeio/rsvp.js",
tags: ["Promises/A+", "asynchronous"],
description: "it is a tiny implementation of Promises/A+ and a mixin for turning objects into event targets. It works in node and the browser.",
url: "https://github.com/tildeio/rsvp.js",
source: "http://rsvpjs-builds.s3.amazonaws.com/rsvp-latest.js"
},
{
name: "Chibi",
github: "kylebarrow/chibi",
tags: ["chibi", "framework"],
description: "A tiny JavaScript micro-framework.",
url: "https://github.com/kylebarrow/chibi",
source: "https://raw.githubusercontent.com/kylebarrow/chibi/master/chibi.js"
},
{
name: "check-types.js",
github: "philbooth/check-types.js",
tags: ["types", "type-checking", "duck-typing"],
description: "A small library for checking types and throwing exceptions.",
url: "https://github.com/philbooth/check-types.js",
source: "https://raw.githubusercontent.com/philbooth/check-types.js/master/src/check-types.js"
},
{
name: "lexer",
github: "aaditmshah/lexer",
tags: ["lexer"],
description: "An elegant armor-plated JavaScript lexer modelled after flex. Easily extensible to tailor to your need for perfection.",
url: "https://github.com/aaditmshah/lexer",
source: "https://raw.githubusercontent.com/aaditmshah/lexer/master/lexer.js"
},
{
name: "kebab.js",
github: "thlorenz/kebab",
tags: [ "pubsub", "queue" ],
description: "Half queue half pubsub. Super small and simple queue that supports subscribers",
url: "https://github.com/thlorenz/kebab",
source: "https://raw.githubusercontent.com/thlorenz/kebab/master/kebab.js"
},
{
name: "infuse.js",
github: "soundstep/infuse.js",
tags: ["ioc", "di", "injection", "dependency", "framework"],
description: "IOC library to handle dependency injection",
url: "https://github.com/soundstep/infuse.js",
source: "https://raw.githubusercontent.com/soundstep/infuse.js/master/src/infuse.js"
},
{
name: "css.js",
github: "radmen/css.js",
tags: ["util", "css", "client", "browser"],
description: "Handles dynamic style sheets",
url: "https://github.com/radmen/css.js",
source: "https://raw.githubusercontent.com/radmen/css.js/master/css.js"
},
/* disappeared
{
name: "compare.js",
github: "goloroden/compare.js",
tags: ["compare"],
description: "compare.js implements JavaScript's comparison operators for Node.js and the browser the way you would expect them to be.",
url: "https://github.com/goloroden/compare.js",
source: "https://raw.githubusercontent.com/goloroden/compare.js/master/bin/compare.js"
},
*/
{
name: "vagueTime.js",
github: "philbooth/vagueTime.js",
tags: ["time", "date"],
description: "formats time differences as a vague time, e.g. 'just now' or '3 weeks ago'",
url: "https://github.com/philbooth/vagueTime.js",
source: "https://raw.githubusercontent.com/philbooth/vagueTime.js/master/src/vagueTime.js"
},
{
name: "disTime.js",
github: "SimonWaldherr/disTime.js",
tags: ["time", "date", "dates", "times", "language", "ago"],
description: "converts and updates UNIX-Timestamps to strings like \"5 days ago\" in six languages (en, de, it, es, fr, pt)",
url: "https://github.com/SimonWaldherr/disTime.js",
source: "https://raw.githubusercontent.com/SimonWaldherr/disTime.js/master/disTime.js"
},
{
name: "parseTime.js",
github: "SimonWaldherr/parseTime.js",
tags: ["time", "date", "dates", "times", "language", "parse", "strings"],
description: "convert strings like \"five days ago\" to an integer (with time in milliseconds) in three languages (en, de, pt)",
url: "https://github.com/SimonWaldherr/parseTime.js",
source: "https://raw.githubusercontent.com/SimonWaldherr/parseTime.js/master/parseTime.js"
},
{
name: "is.js",
github: "Cedriking/is.js",
tags: ["condition", "validate"],
description: "Micro javascript library that allows you to do conditions faster.",
url: "https://github.com/Cedriking/is.js",
source: "https://raw.githubusercontent.com/Cedriking/is.js/master/is.js"
},
{
name: "jBone",
github: "kupriyanenko/jbone",
tags: ["base", "events", "html", "performance", "backbone", "jquery", "attributes", "manipulations", "dom", "mobile"],
description: "JavaScript Library for Events and DOM manipulation. Replacement jQuery for Backbone in browsers.",
url: "https://github.com/kupriyanenko/jbone",
source: "https://raw.githubusercontent.com/kupriyanenko/jbone/master/dist/jbone.js"
},
{
name: "bitarray.js",
github: "madrobby/bitarray.js",
tags: ["data"],
description: "simple bit fields and arrays with pure JavaScript",
url: "http://github.com/madrobby/bitarray.js",
source: "https://raw.githubusercontent.com/madrobby/bitarray.js/master/bitarray.js"
},
/* no longer micro
{
name: "Qatrix",
github: "qatrix/Qatrix",
tags: ["framework"],
description: "A lightweight JavaScript framework for easily building up high performance web application with less code",
url: "http://qatrix.com",
source: "http://qatrix.com/files/qatrix-1.0.2"
},
*/
{
name: "Smoothie Charts",
github: "joewalnes/smoothie",
tags: ["canvas", "charts", "graphs"],
description: "Smooooooth JavaScript charts for realtime streaming data",
url: "http://smoothiecharts.org/",
source: "https://raw.githubusercontent.com/joewalnes/smoothie/master/smoothie.js"
},
{
name: "svg-path.js",
tags: ["SVG", "raphael", "graphics"],
description: "Chainable SVG path string generator with some sugar added",
url: "https://github.com/ZIJ/svg-path",
source: "https://raw.githubusercontent.com/ZIJ/svg-path/master/svg-path.js"
},
{
name: "DOMinate",
github: "adius/DOMinate",
tags: ["dom-builder", "dom", "templating"],
description: "DOMinate the DOM with this simple, yet powerful DOM building utility and template engine.",
url: "https://github.com/adius/DOMinate/",
source: "https://raw.githubusercontent.com/adius/DOMinate/master/src/dominate.js"
},
{
name: "soma.js",
github: "somajs/somajs",
tags: ["framework", "mvc", "events", "command", "observer"],
description: "Javascript mvc framework that help developers write loosely-coupled applications to increase scalability and maintainability.",
url: "http://somajs.github.io/somajs/",
source: "https://raw.githubusercontent.com/somajs/somajs/master/build/soma.js"
},
{
name: "Minion",
tags: ["class", "inheritance", "namespace", "dependencies", "pubsub", "notifications"],
description: "Cross-platform & cross-browser classical inheritance in JavaScript",
url: "https://github.com/gigafied/minion",
source: "https://raw.githubusercontent.com/gigafied/minion/master/dist/minion-latest.js"
},
{
name: "Panzer",
tags: ["data"],
description: "A comprehensive node-tree solution, for smart data",
url: "https://github.com/bemson/Panzer",
source: "https://raw.githubusercontent.com/bemson/Panzer/master/src/panzer.js"
},
{
name: "one-color",
tags: ["color"],
description: "Browser/node color library. Implicit color space conversions, chainable channel methods and CSS convenience methods. RGB, HSV, HSL, CMYK with alpha channel",
url: "https://github.com/One-com/one-color",
source: "https://raw.githubusercontent.com/One-com/one-color/master/one-color-debug.js"
},
/* gzipped file too big, 5.9 kB is not "micro"
{
name: "Validation",
tags: ["validation", "testing"],
description: "Browser/node validation library. Functions available. Regex fragments available. Validates: url, email, domain, TLD, uuid, ipv4 and more.",
url: "https://github.com/One-com/one-validation",
source: "https://raw.githubusercontent.com/One-com/one-validation/master/validation.js"
},
*/
{
name: "Histogram",
tags: ["canvas", "color"],
description: "Provides a histogram data structure from a PNG/JPEG/GIF image path. NodeJS, AMD module and vanilla JS support",
url: "https://github.com/Munter/node-histogram",
source: "https://raw.githubusercontent.com/Munter/node-histogram/master/lib/index.js"
},
{
name: "Simplify.js",
tags: ["math", "geometry", "simplification", "polyline"],
description: "A tiny high-performance JavaScript 2D/3D polyline simplification library.",
url: "http://mourner.github.io/simplify-js/",
source: "https://raw.githubusercontent.com/mourner/simplify-js/master/simplify.js"
},
{
name: "TinyDOM",
tags: ["dom"],
description: "A very small DOM manipulation framework",
url: "https://github.com/ctult/TinyDOM",
source: "https://raw.githubusercontent.com/ctult/TinyDOM/master/tinyDOM.js"
},
{
name: "DOMpteur",
github: "SimonWaldherr/DOMpteur",
tags: ["dom", "ready", "html", "getElement", "selector"],
description: "play with the Document Object Model (DOM) tree - change and insert Elements.",
url: "https://github.com/SimonWaldherr/DOMpteur",
source: "https://raw.githubusercontent.com/SimonWaldherr/DOMpteur/master/DOMpteur.js"
},
{
name: "cssFx",
tags: ["css", "css3", "polyfill"],
description: "Standalone polyfill that inserts the vendor-specific CSS3 properties necessary for old and new browsers.",
url: "http://imsky.github.io/cssFx/",
source: "https://raw.githubusercontent.com/imsky/cssFx/master/cssfx.js"
},
{
name: "shorttag.js",
tags: ["templating"],
description: "templating engine for node and browser.",
url: "https://github.com/jeromeetienne/shorttag.js",
source: "https://raw.githubusercontent.com/jeromeetienne/shorttag.js/master/lib/shorttag.js"
},
{
name: "microcache.js",
tags: ["data", "storage", "cache"],
description: "in-memory cache for node and browser.",
url: "https://github.com/jeromeetienne/microcache.js",
source: "https://raw.githubusercontent.com/jeromeetienne/MicroCache.js/master/microcache.js"
},
{
name: "TinyCore.js",
tags: ["architecture","module","scalable","spa"],
description: "A tiny JavaScript modular architecture library.",
url: "https://github.com/mawrkus/tinycore",
source: "https://raw.githubusercontent.com/mawrkus/tinycore/master/build/TinyCore.js"
},
{
name: "microevent.js",
tags: ["events", "node"],
description: "event emitter for any javascript object for node and browser.",
url: "https://github.com/jeromeetienne/microevent.js",
source: "https://raw.githubusercontent.com/jeromeetienne/microevent.js/master/microevent.js"
},
{
name: "dropinrequire.js",
tags: ["loader", "commonjs", "require", "node"],
description: "dropin replacement for require() in browser.",
url: "http://jeromeetienne.github.io/dropinrequire.js/",
source: "https://raw.githubusercontent.com/jeromeetienne/dropinrequire.js/master/dropin_require.js"
},
{
name: "gowiththeflow.js",
tags: ["functional", "async", "defered"],
description: "Async flow control micro library for node and browser.",
url: "https://github.com/jeromeetienne/gowiththeflow.js",
source: "https://raw.githubusercontent.com/jeromeetienne/gowiththeflow.js/master/gowiththeflow.js"
},
{
name: "creatorpattern.js",
tags: ["pattern", "creator", "node", "browser"],
description: "Micro library to easily add the creator pattern to your class.",
url: "https://github.com/jeromeetienne/creatorpattern.js",
source: "https://raw.githubusercontent.com/jeromeetienne/creatorpattern.js/master/creatorpattern.js"
},
/* Too big, 5.5kb
{
name: "Prevel Framework",
tags: ["dom", "ajax", "events", "css"],
description: "All-purpose development tool (CSS query selector, DOM, Ajax, etc).",
url: "https://github.com/chernikovalexey/Prevel",
source: "https://raw.githubusercontent.com/chernikovalexey/Prevel/master/prevel-full.js"
},
*/
{
name: "genData",
tags: ["data"],
description: "A normalization pattern to build, query, and manipulate everything.",
url: "https://github.com/bemson/genData/",
source: "https://raw.githubusercontent.com/bemson/genData/master/src/gendata.js"
},
{
name: "GSet",
tags: ["data", "compose"],
description: "Share and control public proxies of private objects, with same-name getter/setters.",
url: "https://github.com/bemson/GSet/",
source: "https://raw.githubusercontent.com/bemson/GSet/master/src/gset.js"
},
{
name: "nTh",
tags: ["string", "numbers", "formatting", "language","text"],
description: "A micro-library to return ordinal suffixes from integers (ie: 1st, 2nd, 3rd, 7th of 9)",
url: "https://github.com/dperish/nTh.js",
source: "https://raw.githubusercontent.com/dperish/nTh.js/master/nTh.js"
},
{
name: "Slang",
tags: ["string", "functional", "language"],
description: "A collection of utility functions for strings",
url: "https://github.com/devongovett/slang",
source: "https://raw.githubusercontent.com/devongovett/slang/master/slang.js"
},
{
name: "Rococo",
github: "schuttelaar/Rococo",
tags: ["mvc", "data", "functional", "events"],
description: "Rococo is a Micro Framework to create elegant and robust Javascript Applications.",
url: "http://rococojs.org/",
source: "https://raw.githubusercontent.com/schuttelaar/Rococo/master/rococo.js"
},
{
name: "Backbone",
github: "jashkenas/backbone",
tags: ["mvc", "data", "functional"],
description: "Lightweight MVC—models with custom events, collections with rich enumerables, views and RESTful JSON.",
url: "http://backbonejs.org/",
source: "http://backbonejs.org/backbone.js"
},
{
name: "$dom",
tags: ["dom", "events", "animation"],
description: "Selecting, styling, traversing and animating DOM elements.",
url: "https://github.com/julienw/dollardom",
source: "https://raw.githubusercontent.com/julienw/dollardom/master/src/dollardom.js"
},
{
name: "DOMBrew",
tags: ["dom", "dom-builder"],
description: "Clean API high performance DOM builder",
url: "https://github.com/glebm/DOMBrew",
source: "https://raw.githubusercontent.com/glebm/DOMBrew/master/dombrew.js"
},
{
name: "HEX/RGB",
tags: ["color"],
description: "Two way color conversion for Hexadecimal and RGB integer colors",
url: "https://github.com/daniellmb/HEX-RGB-Conversion",
source: "https://raw.githubusercontent.com/daniellmb/HEX-RGB-Conversion/master/hex-rgb.src.js",
tinyminify: true // this source has a ton of comments so the minified version is tiny compared to raw, so
// we overrule the sanity-check that compares the sizes and would otherwise reject this
},
{
name: "server2.js",
tags: ["server", "pubsub", "events", "base"],
description: "Transfer data objects from server to javascript on page load",
url: "https://github.com/thanpolas/server2js",
source: ["https://raw.githubusercontent.com/thanpolas/server2js/master/src/server2.js",
"https://raw.githubusercontent.com/thanpolas/server2js/master/src/server2js.export.js",
"https://raw.githubusercontent.com/thanpolas/server2js/master/lib/goog.string.js",
"https://raw.githubusercontent.com/thanpolas/server2js/master/lib/server2js.node.js"]
},
{
name : "smoke-pure.js",
github : "agamemnus/smoke-pure.js",
tags : ["modal library", "simple modal library", "modal", "simple modal", "alert", "confirm", "prompt"],
description : "A simple modal library for JS.",
url : "https://github.com/agamemnus/smoke-pure.js",
source : "https://raw.githubusercontent.com/agamemnus/smoke-pure.js/gh-pages/smoke-pure.js"
},
{
name: "ready.js",
tags: ["async", "node.js", "watch", "flow", "flow control"],
description: "Monitor multiple async operations and triggers when all or some are complete.",
url: "https://github.com/thanpolas/ready.js",
source: "https://raw.githubusercontent.com/thanpolas/ready.js/master/lib/ready.js"
},
{
name: "VUnit",
tags: ["vw", "vh", "viewport", "CSS", "javascript"],
description: "A fast alternative for viewport-relative dimensions. RIP buggy vh and vw CSS units.",
url: "https://github.com/joaocunha/v-unit",
source: "https://raw.githubusercontent.com/joaocunha/v-unit/master/v-unit.js"
},
{
name: "MinPubSub",
tags: ["events", "pubsub"],
description: "A publish/subscribe messaging framework",
url: "https://github.com/daniellmb/MinPubSub",
source: "https://raw.githubusercontent.com/daniellmb/MinPubSub/master/minpubsub.src.js"
},
{
name: "Modernizr",
github: "Modernizr/Modernizr",
tags: ["feature"],
description: "Detects native CSS3 and HTML5 features available in the current browser.",
url: "http://www.modernizr.com/",
source: "http://modernizr.com/downloads/modernizr-latest.js"
},
{
name: "Namespacer",
tags: ["namespace", "modules"],
description: "A simple library for creating namespaced objects in the browser.",
url: "https://github.com/sporto/namespacer.js",
source: "https://raw.githubusercontent.com/sporto/namespacer.js/master/src/namespacer.js"
},
{
name: "Zepto",
tags: ["base", "dom", "webkit", "jquery", "ajax", "events", "mobile"],
description: "jQuery API-compatible framework for modern web browsers. Optional Ajax, Events, Data and Touch modules.",
url: "http://zeptojs.com",
source: "https://raw.githubusercontent.com/madrobby/zepto/master/src/zepto.js"
},
{
name: "xui",
github: "xui/xui",
tags: ["base", "dom", "mobile", "ajax", "events", "webkit", "animation"],
description: "DOM library for authoring HTML5 mobile web applications, works cross-device and cross-platform.",
url: "http://xuijs.com",
source: ["https://raw.githubusercontent.com/xui/xui/master/src/header.js",
"https://raw.githubusercontent.com/xui/xui/master/src/base.js",
"https://raw.githubusercontent.com/xui/xui/master/src/footer.js"]
},
{
name: "Underscore",
github: "jashkenas/underscore",
tags: ["functional", "language", "data"],
description: "A utility-belt that provides functional programming support that you would expect in Ruby.",
url: "http://underscorejs.org/",
source: "http://underscorejs.org/underscore.js"
},
{
name: "Lemonad",
github: "fogus/lemonad",
tags: ["functional", "monads", "data", "protocols"],
description: "A functional library inspired by Clojure and ClojureScript, built on Underscore",
url: "http://functionaljs.org/",
source: "https://raw.githubusercontent.com/fogus/lemonad/master/lib/lemonad.js"
},
{
name: "Weld",
tags: ["templating"],
description: "Completely unobtrusive, full featured template antimatter. Works in Node.js or the Browser, awesome built-in debugger.",
url: "http://github.com/tmpvar/weld",
source: "https://raw.githubusercontent.com/tmpvar/weld/master/lib/weld.js"
},
{
name: "Mustache",
tags: ["templating"],
description: "Minimal, logic-less templating with {{mustaches}}. Great for server- or client-side templating.",
url: "http://mustache.github.io/",
source: "https://raw.githubusercontent.com/janl/mustache.js/master/mustache.js"
},
{
name: "LABjs",
tags: ["loader"],
description: "The *performance* script loader: on-demand parallel script loading with ordered execution for dependencies.",
url: "http://labjs.com/",
source: "https://raw.githubusercontent.com/getify/LABjs/master/LAB.js"
},
{
name: "Qwery",
tags: ["css"],
description: "Blazing fast query selector engine allowing you to select elements with CSS1, CSS2 & CSS3 selectors.",
url: "https://github.com/ded/qwery",
source: "https://raw.githubusercontent.com/ded/qwery/master/qwery.js"
},
/* Too big, 5.5 kb
{
name: "Slick",
tags: ["css"],
description: "Accurate selector engine w/ CSS3 selectors and extensions like 'reverse combinators'.",
url: "https://github.com/mootools/slick",
source: [ "https://raw.githubusercontent.com/mootools/slick/master/Source/Slick.Finder.js",
"https://raw.githubusercontent.com/mootools/slick/master/Source/Slick.Parser.js",
"https://raw.githubusercontent.com/mootools/slick/master/Source/slick.js" ]
},
*/
{
name: "expando-js",
github: "jtenner/expando-js",
tags: ["template", "emmet", "shorthand", "javascript"],
description: "A blazing fast HTML generation tool that expands shorthand into (X)HTML",
url: "https://github.com/jtenner/expando-js",
source: "https://raw.githubusercontent.com/jtenner/expando-js/master/expando.js"
},
{
name: "Composer.js",
github: "jtenner/Composer.js",
tags: ["oo", "prototype","object", "composition", "mixin"],