forked from microjs/microjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
5252 lines (4597 loc) · 192 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Microjs</title>
<subtitle>Fantastic Micro-Frameworks and Micro-Libraries for Fun and Profit!</subtitle>
<link href="http://microjs.com/atom.xml" rel="self" />
<link href="http://microjs.com/" />
<id>urn:uuid:15dfd290-5830-11e1-be28-87435970e5ad</id>
<updated>2003-12-13T18:30:02Z</updated>
<author>
<name>Thomas Fuchs</name>
</author>
<entry>
<title>Simplify.js</title>
<link href="http://mourner.github.com/simplify-js/" />
<id>urn:uuid:4c108731-5838-11e1-8fd5-0320b0d0ff08</id>
<updated>2012-02-16'T'00:50:58Z</updated>
<summary>A tiny high-performance JavaScript 2D/3D polyline simplification library.</summary>
</entry>
<entry>
<title>microevent.js</title>
<link href="https://github.com/jeromeetienne/microevent.js" />
<id>urn:uuid:4c2f80e0-5838-11e1-8fd5-0320b0d0ff08</id>
<updated>2012-02-16'T'00:50:58Z</updated>
<summary>event emitter for any javascript object for node and browser.</summary>
</entry>
<entry>
<title>Minion</title>
<link href="https://github.com/gigafied/minion" />
<id>urn:uuid:4c4f16d0-5838-11e1-8fd5-0320b0d0ff08</id>
<updated>2012-02-16'T'00:50:58Z</updated>
<summary>Cross-platform & cross-browser classical inheritance in JavaScript</summary>
</entry>
<entry>
<title>cssFx</title>
<link href="http://imsky.github.com/cssFx/" />
<id>urn:uuid:4c502840-5838-11e1-8fd5-0320b0d0ff08</id>
<updated>2012-02-16'T'00:50:58Z</updated>
<summary>Standalone polyfill that inserts the vendor-specific CSS3 properties necessary for old and new browsers.</summary>
</entry>
<entry>
<title>Panzer</title>
<link href="https://github.com/bemson/Panzer" />
<id>urn:uuid:4c5f1c60-5838-11e1-8fd5-0320b0d0ff08</id>
<updated>2012-02-16'T'00:50:58Z</updated>
<summary>A comprehensive node-tree solution, for smart data</summary>
</entry>
<entry>
<title>microcache.js</title>
<link href="https://github.com/jeromeetienne/microcache.js" />
<id>urn:uuid:ef30a120-5838-11e1-9ed8-278efa97a708</id>
<updated>2012-02-16'T'00:55:32Z</updated>
<summary>in-memory cache for node and browser.</summary>
</entry>
<entry>
<title>TinyDOM</title>
<link href="https://github.com/ctult/TinyDOM" />
<id>urn:uuid:ef358320-5838-11e1-9ed8-278efa97a708</id>
<updated>2012-02-16'T'00:55:32Z</updated>
<summary>A very small DOM manipulation framework</summary>
</entry>
<entry>
<title>one-color</title>
<link href="https://github.com/One-com/one-color" />
<id>urn:uuid:008fcdb0-5839-11e1-9ed8-278efa97a708</id>
<updated>2012-02-16'T'00:55:32Z</updated>
<summary>Browser/node color library. Implicit color space conversions, chainable channel methods and CSS convenience methods. RGB, HSV, HSL, CMYK with alpha channel</summary>
</entry>
<entry>
<title>tinyJS</title>
<link href="http://tinyjs.sourceforge.net/tiny.js" />
<id>urn:uuid:8d863ab2-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A tiny yet complete toolkit</summary>
</entry>
<entry>
<title>BuildSugar</title>
<link href="http://jsfiddle.net/SubtleGradient/4W3RR/" />
<id>urn:uuid:8e2d2910-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Bizarrely clean & simple syntax sugar for building HTML/XML strings</summary>
</entry>
<entry>
<title>Lawnchair</title>
<link href="http://westcoastlogic.com/lawnchair/" />
<id>urn:uuid:8ee618d0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Client side JSON document store. Perfect for WebKit mobile apps.</summary>
</entry>
<entry>
<title>mathmethods.js</title>
<link href="https://bitbucket.org/davidchambers/mathmethods.js" />
<id>urn:uuid:8efa1600-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Give `Number.prototype` the `Math` methods it deserves.</summary>
</entry>
<entry>
<title>Base64.js</title>
<link href="https://bitbucket.org/davidchambers/base64.js" />
<id>urn:uuid:8efa1601-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>`window.btoa` and `window.atob` for browsers which don't provide these functions.</summary>
</entry>
<entry>
<title>String::format</title>
<link href="https://bitbucket.org/davidchambers/string-format" />
<id>urn:uuid:8efa3d10-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Adds a `format` method to `String.prototype`. Inspired by Python's `str.format()`.</summary>
</entry>
<entry>
<title>Firmin</title>
<link href="http://extralogical.net/projects/firmin/" />
<id>urn:uuid:8efa8b30-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Animation library that uses CSS transforms and transitions to create smooth, hardware-accelerated animations.</summary>
</entry>
<entry>
<title>Ekho</title>
<link href="https://bitbucket.org/killdream/ekho" />
<id>urn:uuid:8f1ba7c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>DOM-agnostic event library, with bubbling.</summary>
</entry>
<entry>
<title>Bootstrap</title>
<link href="https://bitbucket.org/scott_koon/bootstrap" />
<id>urn:uuid:8f1ba7c1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A small, simple bootloader. No frills. Black and white label.</summary>
</entry>
<entry>
<title>Micro-Templating</title>
<link href="http://ejohn.org/blog/javascript-micro-templating/" />
<id>urn:uuid:8f330050-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Templating function that is fast, caches quickly, and is easy to use.</summary>
</entry>
<entry>
<title>xui</title>
<link href="http://xuijs.com" />
<id>urn:uuid:8f332760-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>DOM library for authoring HTML5 mobile web applications, works cross-device and cross-platform.</summary>
</entry>
<entry>
<title>JSONSelect</title>
<link href="http://jsonselect.org" />
<id>urn:uuid:8f334e70-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>CSS-like selectors for JSON.</summary>
</entry>
<entry>
<title>gowiththeflow.js</title>
<link href="https://github.com/jeromeetienne/gowiththeflow.js" />
<id>urn:uuid:8f52bd50-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Async flow control micro library for node and browser.</summary>
</entry>
<entry>
<title>Underscore</title>
<link href="http://underscorejs.org/" />
<id>urn:uuid:8f7b2ce0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A utility-belt that provides functional programming support that you would expect in Ruby.</summary>
</entry>
<entry>
<title>DOMBrew</title>
<link href="https://github.com/glebm/DOMBrew" />
<id>urn:uuid:8f7c6560-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Clean API high performance DOM builder</summary>
</entry>
<entry>
<title>Slang</title>
<link href="https://github.com/devongovett/slang" />
<id>urn:uuid:8f7d9de0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A collection of utility functions for strings</summary>
</entry>
<entry>
<title>Backbone</title>
<link href="http://backbonejs.org/" />
<id>urn:uuid:8f7e6130-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Lightweight MVC—models with custom events, collections with rich enumerables, views and RESTful JSON.</summary>
</entry>
<entry>
<title>genData</title>
<link href="https://github.com/bemson/genData/" />
<id>urn:uuid:8f8e8dd0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A normalization pattern to build, query, and manipulate everything.</summary>
</entry>
<entry>
<title>MinPubSub</title>
<link href="https://github.com/daniellmb/MinPubSub" />
<id>urn:uuid:8f90d7c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A publish/subscribe messaging framework</summary>
</entry>
<entry>
<title>Morf</title>
<link href="https://github.com/joelambert/morf" />
<id>urn:uuid:8f90fed0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A JavaScript work-around for hardware accelerated CSS3 transitions with custom easing functions.</summary>
</entry>
<entry>
<title>$dom</title>
<link href="https://github.com/julienw/dollardom" />
<id>urn:uuid:8f90fed1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Selecting, styling, traversing and animating DOM elements.</summary>
</entry>
<entry>
<title>Modernizr</title>
<link href="http://www.modernizr.com/" />
<id>urn:uuid:8f921040-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Detects native CSS3 and HTML5 features available in the current browser.</summary>
</entry>
<entry>
<title>Zepto</title>
<link href="http://zeptojs.com" />
<id>urn:uuid:8fabd9d0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>jQuery API-compatible framework for modern web browsers. Optional Ajax, Events, Data and Touch modules.</summary>
</entry>
<entry>
<title>Weld</title>
<link href="http://www.github.com/hij1nx/weld" />
<id>urn:uuid:8fabd9d1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Completely unobtrusive, full featured template antimatter. Works in Node.js or the Browser, awesome built-in debugger.</summary>
</entry>
<entry>
<title>Mustache</title>
<link href="http://mustache.github.com/" />
<id>urn:uuid:8fad3960-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Minimal, logic-less templating with {{mustaches}}. Great for server- or client-side templating.</summary>
</entry>
<entry>
<title>LABjs</title>
<link href="http://labjs.com/" />
<id>urn:uuid:8fc1abc0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>The *performance* script loader: on-demand parallel script loading with ordered execution for dependencies.</summary>
</entry>
<entry>
<title>Qwery</title>
<link href="https://github.com/ded/qwery" />
<id>urn:uuid:8fc5ca70-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Blazing fast query selector engine allowing you to select elements with CSS1, CSS2 & CSS3 selectors.</summary>
</entry>
<entry>
<title>Jaguar</title>
<link href="https://github.com/alpha123/Jaguar" />
<id>urn:uuid:8fc61890-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A lightweight, extensible, and fast selector engine with excellent support for matchesSelector(), commonly used in event delegation. Jaguar supports all CSS1, CSS2, and most CSS3 selectors.</summary>
</entry>
<entry>
<title>Bean</title>
<link href="https://github.com/fat/bean" />
<id>urn:uuid:8fc86280-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Bean is a slick, cross-platform, framework-agnostic event utility designed for desktop, mobile, and touch-based browsers. </summary>
</entry>
<entry>
<title>$script.js</title>
<link href="https://github.com/ded/script.js" />
<id>urn:uuid:8fe00930-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An asynchronous JavaScript loader and dependency manager with an astonishingly impressive footprint.</summary>
</entry>
<entry>
<title>Klass</title>
<link href="https://github.com/ded/klass" />
<id>urn:uuid:8fe03040-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An expressive, cross platform JavaScript Class provider with a slick, classical interface to prototypal inheritance.</summary>
</entry>
<entry>
<title>Bonzo</title>
<link href="https://github.com/ded/bonzo" />
<id>urn:uuid:8fe95800-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Hassle-free, library agnostic, extensible DOM utility.</summary>
</entry>
<entry>
<title>Classy</title>
<link href="http://classy.pocoo.org/" />
<id>urn:uuid:8ff2cde0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Classy is a small JavaScript library that implements Python inspired classes for JavaScript.</summary>
</entry>
<entry>
<title>Director</title>
<link href="https://github.com/flatiron/director" />
<id>urn:uuid:8ffd5530-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A lightweight, full featured client side router for single page apps.</summary>
</entry>
<entry>
<title>Reqwest</title>
<link href="https://github.com/ded/Reqwest" />
<id>urn:uuid:8ffd5531-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Robust wrapper for asynchronous http requests.</summary>
</entry>
<entry>
<title>Ender</title>
<link href="http://ender.no.de" />
<id>urn:uuid:8ffe3f90-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An open, powerful, micro-to-macro API for composing your own custom JavaScript library.</summary>
</entry>
<entry>
<title>Tempo</title>
<link href="http://twigkit.github.com/tempo/" />
<id>urn:uuid:901c9d00-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Tempo is a JSON rendering engine that enables you to craft data templates in pure HTML.</summary>
</entry>
<entry>
<title>scaleApp.js</title>
<link href="http://scaleapp.org/" />
<id>urn:uuid:902b9120-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>scaleApp is a tiny JavaScript framework for scalable one-page-applications</summary>
</entry>
<entry>
<title>Q</title>
<link href="https://github.com/kriskowal/q" />
<id>urn:uuid:902b9121-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>when/defer-style promises for JavaScript (CommonJS/Promises/A,B,D)</summary>
</entry>
<entry>
<title>ICanHaz</title>
<link href="http://icanhazjs.com/" />
<id>urn:uuid:902bb830-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Simple & powerful client-side templating for jQuery or Zepto.js.</summary>
</entry>
<entry>
<title>snack.js</title>
<link href="http://snackjs.com/" />
<id>urn:uuid:902f1390-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A tiny, cross-browser, library with DOM manipulation, events, pub/sub, Ajax and language utilities.</summary>
</entry>
<entry>
<title>Milk</title>
<link href="https://github.com/pvande/Milk" />
<id>urn:uuid:902f1391-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Spec-compatible (v1.1+λ) Mustache templating: written in CoffeeScript, runnable anywhere.</summary>
</entry>
<entry>
<title>domReady</title>
<link href="https://github.com/ded/domready" />
<id>urn:uuid:902f61b0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Lets you know when the DOM is ready</summary>
</entry>
<entry>
<title>JSON2</title>
<link href="https://github.com/douglascrockford/JSON-js" />
<id>urn:uuid:9049c780-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Creates a JSON property in the global object, if there isn't already one, with stringify and parse methods.</summary>
</entry>
<entry>
<title>Kizzy</title>
<link href="https://github.com/ded/Kizzy" />
<id>urn:uuid:90500910-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Cross Browser caching util leveraging LocalStorage and XML Store with a Memcached interface</summary>
</entry>
<entry>
<title>yepnope</title>
<link href="http://yepnopejs.com/" />
<id>urn:uuid:90500911-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>yepnope is an asynchronous conditional resource loader that allows you to load only the scripts that your users need.</summary>
</entry>
<entry>
<title>Bowser</title>
<link href="https://github.com/ded/bowser" />
<id>urn:uuid:905b2ca0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A browser detector. Because when there is no features to detect, sometimes you have to browser sniff</summary>
</entry>
<entry>
<title>Loadrunner</title>
<link href="https://github.com/danwrong/loadrunner" />
<id>urn:uuid:905e60f0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Simple, flexible and sane JavaScript loader and build tool for browsers</summary>
</entry>
<entry>
<title>functools</title>
<link href="https://github.com/azer/functools" />
<id>urn:uuid:90689a20-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A library for functional operations</summary>
</entry>
<entry>
<title>Maddy</title>
<link href="http://kitcambridge.github.com/maddy" />
<id>urn:uuid:906c6ab0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A functional object operations library.</summary>
</entry>
<entry>
<title>ES5-Shim</title>
<link href="https://github.com/kriskowal/es5-shim/" />
<id>urn:uuid:906c91c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Compatibility shims so that legacy JavaScript engines behave as closely as possible to ES5.</summary>
</entry>
<entry>
<title>LazyLoad</title>
<link href="https://github.com/rgrove/lazyload" />
<id>urn:uuid:906eb4a0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Async JavaScript and CSS loader.</summary>
</entry>
<entry>
<title>observer</title>
<link href="https://github.com/azer/observer" />
<id>urn:uuid:906eb4a1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>CommonJS implementation of the observer design pattern</summary>
</entry>
<entry>
<title>H5F.js</title>
<link href="https://github.com/ryanseddon/H5F" />
<id>urn:uuid:90823ca0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Adds support for HTML5 Forms chapters new field input types, attributes and constraint validation API in non-supporting browsers.</summary>
</entry>
<entry>
<title>Store.js</title>
<link href="https://github.com/marcuswestin/store.js" />
<id>urn:uuid:908f34f0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>localStorage wrapper for all browsers without using cookies or flash</summary>
</entry>
<entry>
<title>Valentine</title>
<link href="https://github.com/ded/valentine" />
<id>urn:uuid:908f5c00-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>JavaScripts functional sister providing iterators, type checking, and basic utils</summary>
</entry>
<entry>
<title>jWorkflow</title>
<link href="http://github.com/tinyhippos/jWorkflow" />
<id>urn:uuid:90adb970-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Simple, buildable, repeatable workflows for client or serverside javascript</summary>
</entry>
<entry>
<title>nimble</title>
<link href="http://caolan.github.com/nimble/" />
<id>urn:uuid:90afb540-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Functional flow-control for JavaScript. Combines features of the underscore and async libraries.</summary>
</entry>
<entry>
<title>EventEmitter</title>
<link href="https://github.com/Wolfy87/EventEmitter" />
<id>urn:uuid:90b3d3f0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Evented JavaScript for the browser</summary>
</entry>
<entry>
<title>Objs</title>
<link href="https://github.com/tekool/objs" />
<id>urn:uuid:90bed070-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A minimalistic library intended to help in using namespaces and class inheritance in JavaScript.</summary>
</entry>
<entry>
<title>Crossroads.js</title>
<link href="http://millermedeiros.github.com/crossroads.js/" />
<id>urn:uuid:90ca1b10-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Powerful JavaScript URL routing/dispatch for server-side and client-side applications.</summary>
</entry>
<entry>
<title>Fermata</title>
<link href="https://github.com/andyet/fermata" />
<id>urn:uuid:90d824d0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Succinct native REST client, for client-side web apps and node.js. Turns URLs into magic JavaScript objects.</summary>
</entry>
<entry>
<title>JS-Signals</title>
<link href="http://millermedeiros.github.com/js-signals/" />
<id>urn:uuid:90d9ab70-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Custom Event/Messaging system for JavaScript.</summary>
</entry>
<entry>
<title>Hasher</title>
<link href="https://github.com/millermedeiros/Hasher" />
<id>urn:uuid:91052840-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Browser history manager for rich-media applications.</summary>
</entry>
<entry>
<title>SubtleLocationProxy</title>
<link href="https://github.com/subtleGradient/SubtleLocationProxy.js" />
<id>urn:uuid:910f8880-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Proxy the location of one window, frame or iframe to the hash of another and vice-versa.</summary>
</entry>
<entry>
<title>LeviRoutes</title>
<link href="http://leviroutes.com" />
<id>urn:uuid:9114dfb0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A basic routes framework for JS that hooks in to HTML5 history</summary>
</entry>
<entry>
<title>jaylist</title>
<link href="http://benbscholz.github.com/jaylist" />
<id>urn:uuid:91152dd0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A simple wrapper for JavaScript's built-in hash storage.</summary>
</entry>
<entry>
<title>JSON.minify</title>
<link href="http://github.com/getify/JSON.minify" />
<id>urn:uuid:911554e0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Strip out // and /*..*/ comments from JSON before parsing.</summary>
</entry>
<entry>
<title>thumbs.js</title>
<link href="http://mwbrooks.github.com/thumbs.js/" />
<id>urn:uuid:91200340-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Add touch event support to the desktop and other mouse-based browsers.</summary>
</entry>
<entry>
<title>Events.js</title>
<link href="https://github.com/kbjr/Events.js" />
<id>urn:uuid:91202a50-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Cross-browser DOM events, with keystroke handling, hashchange, mouseenter/leave.</summary>
</entry>
<entry>
<title>Augment.js</title>
<link href="http://augmentjs.com" />
<id>urn:uuid:91490f10-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Enables use of modern JavaScript by augmenting built in objects with the latest JavaScript methods.</summary>
</entry>
<entry>
<title>Head JS</title>
<link href="http://headjs.com/" />
<id>urn:uuid:916597c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An asynchronous loader library, with HTML5 and CSS3 polyfills</summary>
</entry>
<entry>
<title>binary.js</title>
<link href="https://github.com/jussi-kalliokoski/binary.js" />
<id>urn:uuid:9168a500-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A fast, small, robust and extensible binary conversion library.</summary>
</entry>
<entry>
<title>ClassIE</title>
<link href="https://github.com/pyrsmk/ClassIE" />
<id>urn:uuid:9171a5b0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>ClassIE is an unobstrusive library which detects Internet Explorer version for JS and CSS sides</summary>
</entry>
<entry>
<title>Sheethub</title>
<link href="https://github.com/pyrsmk/Sheethub" />
<id>urn:uuid:917a5840-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A CSS backdoor API for providing awesome scripts in a centralized way</summary>
</entry>
<entry>
<title>nut</title>
<link href="https://github.com/pyrsmk/nut" />
<id>urn:uuid:91a47580-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>The concise CSS selector engine</summary>
</entry>
<entry>
<title>molt</title>
<link href="https://github.com/pyrsmk/molt" />
<id>urn:uuid:91a538d0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Image updater for responsive designs</summary>
</entry>
<entry>
<title>lscache</title>
<link href="https://github.com/pamelafox/lscache" />
<id>urn:uuid:91d26350-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A localStorage-based memcache-inspired client-side caching library.</summary>
</entry>
<entry>
<title>W</title>
<link href="https://github.com/pyrsmk/W" />
<id>urn:uuid:91d28a60-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Width management tool for responsive designs</summary>
</entry>
<entry>
<title>DOMBuilder</title>
<link href="https://github.com/insin/DOMBuilder" />
<id>urn:uuid:91d2b170-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Declarative builder with (mostly) interchangeable DOM or HTML output</summary>
</entry>
<entry>
<title>DragDrop</title>
<link href="https://github.com/kbjr/DragDrop" />
<id>urn:uuid:91d41100-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Drag-and-Drop functionality for advanced UI development.</summary>
</entry>
<entry>
<title>mediatizr</title>
<link href="https://github.com/pyrsmk/mediatizr" />
<id>urn:uuid:91d4fb60-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Adds media queries support to incapable browsers</summary>
</entry>
<entry>
<title>toast</title>
<link href="https://github.com/pyrsmk/toast" />
<id>urn:uuid:91e57620-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A tiny and powerful resource loader</summary>
</entry>
<entry>
<title>Morpheus</title>
<link href="https://github.com/ded/morpheus" />
<id>urn:uuid:92024cf0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An animator that lets you tween in parallel on multiple elements, from integers to colors in a single high-performant loop</summary>
</entry>
<entry>
<title>state-machine</title>
<link href="https://github.com/jakesgordon/javascript-state-machine" />
<id>urn:uuid:9228e7c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A finite state machine, useful in game development</summary>
</entry>
<entry>
<title>environ</title>
<link href="https://github.com/azer/environ" />
<id>urn:uuid:922b31b0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Cross platform environment detection library.</summary>
</entry>
<entry>
<title>System.js</title>
<link href="https://github.com/mrdoob/system.js" />
<id>urn:uuid:922cdf60-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Generates a JavaScript object with the user's system information.</summary>
</entry>
<entry>
<title>extend.js</title>
<link href="https://github.com/searls/extend.js" />
<id>urn:uuid:922d0670-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A simple way to define and extend namespaces</summary>
</entry>
<entry>
<title>Include.js</title>
<link href="http://capmousse.github.com/include.js/" />
<id>urn:uuid:92604b70-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A tiny on-demand async javascript loader.</summary>
</entry>
<entry>
<title>Obscura</title>
<link href="https://github.com/OiNutter/Obscura" />
<id>urn:uuid:92604b71-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Canvas based image manipulation library</summary>
</entry>
<entry>
<title>Hypher</title>
<link href="https://github.com/bramstein/Hypher" />
<id>urn:uuid:926de000-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Fast and small hyphenation engine for Node.js and the browser</summary>
</entry>
<entry>
<title>asEvented</title>
<link href="https://github.com/mkuklis/asEvented" />
<id>urn:uuid:9271feb0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Micro event emitter which provides the observer pattern to JavaScript objects.</summary>
</entry>
<entry>
<title>Keymaster</title>
<link href="https://github.com/madrobby/keymaster" />
<id>urn:uuid:927225c0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Define scoped keyboard shortcuts, including modifier keys.</summary>
</entry>
<entry>
<title>Vine</title>
<link href="https://github.com/arexkun/Vine" />
<id>urn:uuid:927225c1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An events library that supports binding, unbinding, and triggering events on DOM elements or JavaScript Objects</summary>
</entry>
<entry>
<title>resistance</title>
<link href="https://github.com/jgallen23/resistance" />
<id>urn:uuid:92816800-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A tiny javascript async flow control library.</summary>
</entry>
<entry>
<title>Species</title>
<link href="https://github.com/k33g/species" />
<id>urn:uuid:9281dd30-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Java style OOP, and AOP ability, watchable members, inheritance and ability to call super members.</summary>
</entry>
<entry>
<title>Date-Utils</title>
<link href="https://github.com/JerrySievert/node-date-utils" />
<id>urn:uuid:92a76690-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Lightweight Date Polyfill with a lot of flexibility.</summary>
</entry>
<entry>
<title>swipe</title>
<link href="https://github.com/bradbirdsall/Swipe" />
<id>urn:uuid:92a7b4b0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A lightweight 1-to-1 mobile slider. Optimized for touch devices.</summary>
</entry>
<entry>
<title>Platform.js</title>
<link href="https://github.com/bestiejs/platform.js" />
<id>urn:uuid:92a7b4b1-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A platform detection library that works on nearly all JavaScript platforms.</summary>
</entry>
<entry>
<title>typogr.js</title>
<link href="https://github.com/ekalinin/typogr.js" />
<id>urn:uuid:92ab1010-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Provides ransformations to plain text for typographically-improved HTML.</summary>
</entry>
<entry>
<title>EditrJS</title>
<link href="https://github.com/narfdre/Editr" />
<id>urn:uuid:92b32660-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A very simple image editing library with a chainable api.</summary>
</entry>
<entry>
<title>Cookie Monster</title>
<link href="https://github.com/jgallen23/cookie-monster" />
<id>urn:uuid:92b34d70-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A lightweight cookie library</summary>
</entry>
<entry>
<title>audio-fx</title>
<link href="https://github.com/jakesgordon/javascript-audio-fx" />
<id>urn:uuid:92b76c20-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A HTML5 Audio Library</summary>
</entry>
<entry>
<title>zest</title>
<link href="https://github.com/chjj/zest" />
<id>urn:uuid:92b7ba40-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>An absurdly fast selector engine. Supports CSS3/CSS4 selectors - faster than Sizzle.</summary>
</entry>
<entry>
<title>Happen</title>
<link href="https://github.com/tmcw/happen" />
<id>urn:uuid:92d07260-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>General purpose event triggering</summary>
</entry>
<entry>
<title>hsi.js</title>
<link href="https://github.com/e-/hsi.js" />
<id>urn:uuid:92d5f0a0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A small RGB <-> HSI converter.</summary>
</entry>
<entry>
<title>wru</title>
<link href="https://github.com/WebReflection/wru" />
<id>urn:uuid:92d63ec0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>essential unit test framework compatible with browsers, node.js, and Rhino</summary>
</entry>
<entry>
<title>Shifty</title>
<link href="https://github.com/jeremyckahn/shifty" />
<id>urn:uuid:92d83a90-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A teeny tiny tweening engine in JavaScript.</summary>
</entry>
<entry>
<title>marked</title>
<link href="https://github.com/chjj/marked" />
<id>urn:uuid:92dbe410-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A markdown parser and compiler. Built for speed.</summary>
</entry>
<entry>
<title>uuid-v4.js</title>
<link href="https://github.com/makeable/uuid-v4.js" />
<id>urn:uuid:92e3fa60-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>RFC-4122 Compliant Random (v4) UUID Generator</summary>
</entry>
<entry>
<title>Fayer</title>
<link href="https://github.com/sandeepjain/fayer" />
<id>urn:uuid:92e44880-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Easily kick-off page specific JavaScript.</summary>
</entry>
<entry>
<title>notificon.js</title>
<link href="https://github.com/makeable/Notificon" />
<id>urn:uuid:92e4bdb0-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Dynamic tab favicon notifications/alerts</summary>
</entry>
<entry>
<title>colorspaces.js</title>
<link href="http://boronine.github.com/colorspaces.js" />
<id>urn:uuid:92ff2380-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Convert between RGB and several CIE color spaces for smarter color manipulation.</summary>
</entry>
<entry>
<title>SpeculOOs</title>
<link href="https://github.com/k33g/speculoos" />
<id>urn:uuid:93034230-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>Simple JavaScript Class notation, fully CoffeeScript compliant</summary>
</entry>
<entry>
<title>Supplement.js</title>
<link href="http://supplementjs.com" />
<id>urn:uuid:93040580-5839-11e1-b6d9-ed92c789bce0</id>
<updated>2012-02-16'T'00:59:56Z</updated>
<summary>A small collection of utility functions to make working with JavaScript that much sweeter and more expressive.</summary>
</entry>
<entry>
<title>path.js</title>
<link href="http://mtrpcic.github.com/pathjs/" />
<id>urn:uuid:93056510-5839-11e1-b6d9-ed92c789bce0</id>