-
Notifications
You must be signed in to change notification settings - Fork 13.8k
/
learn.json
1356 lines (1356 loc) · 43.1 KB
/
learn.json
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
{
"angular": {
"name": "Angular",
"description": "Angular is a web framework that empowers developers to build fast, reliable applications.",
"homepage": "angular.dev",
"examples": [{
"name": "Angular",
"url": "examples/angular"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Docs",
"url": "https://angular.dev"
}]
}]
},
"angulardart": {
"name": "AngularDart",
"description": "Dart is a class-based, object-oriented language with lexical scoping, closures, and optional static typing. AngularDart is a port of Angular to Dart.",
"homepage": "github.com/angular/angular.dart",
"examples": [{
"name": "Example",
"url": "examples/angular-dart"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "API Reference",
"url": "http://ci.angularjs.org/view/Dart/job/angular.dart-master/javadoc/"
}, {
"name": "Tutorial",
"url": "https://github.com/angular/angular.dart.tutorial"
}, {
"name": "A Tour of the Dart Language",
"url": "http://www.dartlang.org/docs/dart-up-and-running/contents/ch02.html"
}]
}, {
"heading": "Community",
"links": [{
"name": "AngularDart Mailing List",
"url": "https://groups.google.com/forum/#!forum/angular-dart"
}, {
"name": "AngularDart on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/angulardart"
}, {
"name": "+AngularDart on Google+",
"url": "https://plus.google.com/+AngularJS"
}, {
"name": "@angularjs on Twitter",
"url": "https://twitter.com/angularjs"
}, {
"name": "Bugtracker on GitHub",
"url": "https://github.com/angular/angular.dart/issues?state=open"
}]
}]
},
"aurelia": {
"name": "Aurelia",
"description": "Aurelia is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.",
"homepage": "aurelia.io",
"examples": [{
"name": "Example",
"url": "examples/aurelia"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Get started",
"url": "https://aurelia.io/docs/tutorials/creating-a-todo-app/"
}, {
"name": "Docs",
"url": "https://aurelia.io/docs/"
}, {
"name": "Aurelia on GitHub",
"url": "https://github.com/aurelia"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Blog",
"url": "https://aurelia.io/blog/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Aurelia Discourse forum",
"url": "https://discourse.aurelia.io"
}, {
"name": "Aurelia discussions on Gitter",
"url": "https://gitter.im/Aurelia/Discuss"
}, {
"name": "Aurelia Twitter account",
"url": "https://twitter.com/AureliaEffect"
}]
}]
},
"backbone": {
"name": "Backbone.js",
"description": "Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.",
"homepage": "backbonejs.org",
"examples": [{
"name": "Example",
"url": "examples/backbone"
}, {
"name": "Require.js & Backbone.js",
"url": "examples/backbone_require"
}, {
"name": "Enyo & Backbone.js",
"url": "examples/enyo_backbone"
}, {
"name": "TypeScript & Backbone.js",
"url": "examples/typescript-backbone"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Annotated source code",
"url": "http://backbonejs.org/docs/backbone.html"
}, {
"name": "Applications built with Backbone.js",
"url": "http://backbonejs.org/#examples"
}, {
"name": "FAQ",
"url": "http://backbonejs.org/#faq"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Developing Backbone.js Applications",
"url": "https://github.com/addyosmani/backbone-fundamentals"
}, {
"name": "Collection of tutorials, blog posts, and example sites",
"url": "https://github.com/documentcloud/backbone/wiki/Tutorials%2C-blog-posts-and-example-sites"
}]
}, {
"heading": "Community",
"links": [{
"name": "Backbone.js on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/backbone.js"
}, {
"name": "Google Groups mailing list",
"url": "https://groups.google.com/forum/#!forum/backbonejs"
}, {
"name": "Backbone.js on Twitter",
"url": "https://twitter.com/Backbonejs_"
}]
}]
},
"elm": {
"name": "Elm",
"description": "A functional reactive language for interactive applications",
"homepage": "elm-lang.org",
"examples": [{
"name": "Example",
"url": "examples/elm"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Project Site",
"url": "http://elm-lang.org/"
}, {
"name": "Documentation",
"url": "http://elm-lang.org/docs"
}, {
"name": "An Introduction to Elm",
"url": "https://guide.elm-lang.org/"
}, {
"name": "Syntax Reference",
"url": "http://elm-lang.org/docs/syntax"
}, {
"name": "Libraries",
"url": "http://package.elm-lang.org/"
}, {
"name": "Elm Slack Channel",
"url": "http://elmlang.herokuapp.com/"
}]
}]
},
"canjs": {
"name": "CanJS",
"description": "CanJS is a MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.",
"homepage": "canjs.com",
"examples": [{
"name": "Example",
"url": "examples/canjs"
}, {
"name": "Require.js & CanJS",
"url": "examples/canjs_require"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://canjs.com/docs/index.html"
}, {
"name": "Getting started",
"url": "http://canjs.com/guides/Tutorial.html"
}, {
"name": "Applications built with CanJS",
"url": "http://canjs.com/#examples"
}, {
"name": "Blog",
"url": "http://bitovi.com/blog/tag/canjs"
}, {
"name": "Getting started video",
"url": "http://www.youtube.com/watch?v=GdT4Oq6ZQ68"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Diving into CanJS",
"url": "http://net.tutsplus.com/tutorials/javascript-ajax/diving-into-canjs"
}]
}, {
"heading": "Community",
"links": [{
"name": "CanJS on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/canjs"
}, {
"name": "CanJS Forums",
"url": "http://forum.javascriptmvc.com/#Forum/canjs"
}, {
"name": "CanJS on Twitter",
"url": "http://twitter.com/canjs"
}, {
"name": "#canjs IRC",
"url": "http://webchat.freenode.net/?channels=canjs"
}]
}]
},
"closure": {
"name": "Closure Tools",
"description": "The Closure Tools project is an effort by Google engineers to open source the tools used in many of Google's sites and web applications for use by the wider Web development community.",
"homepage": "developers.google.com/closure",
"examples": [{
"name": "Example",
"url": "examples/closure"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "https://developers.google.com/closure/library/docs/overview"
}, {
"name": "API Reference",
"url": "http://docs.closure-library.googlecode.com/git/index.html"
}, {
"name": "Blog",
"url": "http://closuretools.blogspot.com"
}, {
"name": "FAQ",
"url": "https://developers.google.com/closure/faq"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Examples, walkthroughs, and articles",
"url": "http://www.googleclosure.com"
}, {
"name": "First Adventure in Google Closure",
"url": "http://www.codeproject.com/Articles/265364/First-Adventures-in-Google-Closure"
}]
}, {
"heading": "Community",
"links": [{
"name": "Google Groups mailing list",
"url": "https://groups.google.com/group/closure-library-discuss"
}, {
"name": "Closure Tools on Twitter",
"url": "http://twitter.com/closuretools"
}, {
"name": "Closure Tools on Google+",
"url": "https://plus.google.com/communities/113969319608324762672"
}]
}]
},
"cujo": {
"name": "cujoJS",
"description": "cujo is an architectural toolkit for next generation JavaScript applications. It encourages highly modular development, declarative application assembly, and embraces the asynchronous nature of JavaScript and its fusion of object-oriented and functional programming styles.",
"homepage": "cujojs.com",
"examples": [{
"name": "Example",
"url": "examples/cujo"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "know cujoJS",
"url": "http://know.cujojs.com/"
}, {
"name": "cujoJS on GitHub",
"url": "https://github.com/cujojs"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "An introductory presentation",
"url": "http://www.youtube.com/watch?v=TqX-CqYYwEc"
}]
}, {
"heading": "Community",
"links": [{
"name": "Google Groups mailing list",
"url": "https://groups.google.com/forum/#!forum/cujojs"
}, {
"name": "cujoJS on Twitter",
"url": "http://twitter.com/cujojs"
}]
}]
},
"dijon": {
"name": "Dijon",
"description": "An IOC/DI framework in Javascript, inspired by Robotlegs and Swiftsuspenders.",
"homepage": "github.com/creynders/dijon-framework",
"examples": [{
"name": "Example",
"url": "examples/dijon"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://creynders.github.com/dijon-framework/docs"
}, {
"name": "Dijon on GitHub",
"url": "https://github.com/creynders/dijon-framework"
}]
}, {
"heading": "Community",
"links": [{
"name": "Dijon on Twitter",
"url": "http://twitter.com/camillereynders"
}]
}]
},
"dojo": {
"name": "Dojo",
"description": "Dojo saves you time and scales with your development process, using web standards as its platform. It’s the toolkit experienced developers turn to for building high quality desktop and mobile web applications.",
"homepage": "dojotoolkit.org",
"examples": [{
"name": "Example",
"url": "examples/dojo"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://dojotoolkit.org/documentation"
}, {
"name": "Getting started guide",
"url": "https://dojotoolkit.org/reference-guide/quickstart"
}, {
"name": "API Reference",
"url": "http://dojotoolkit.org/api"
}, {
"name": "Blog",
"url": "http://dojotoolkit.org/blog"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Getting StartED with Dojo",
"url": "http://dojotoolkit.org/documentation/tutorials/1.10/start/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Dojo/MVC on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/dojo+model-view-controller"
}, {
"name": "Mailing list",
"url": "http://dojotoolkit.org/community"
}, {
"name": "Dojo on Twitter",
"url": "http://twitter.com/dojo"
}]
}]
},
"duel": {
"name": "DUEL",
"description": "DUEL is a dual-side templating engine using HTML for layout and 100% pure JavaScript as the binding language. The same views may be executed both directly in the browser (client-side template) and on the server (server-side template).",
"homepage": "bitbucket.org/mckamey/duel/wiki/Home",
"examples": [{
"name": "Example",
"url": "examples/duel/www"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Syntax",
"url": "https://bitbucket.org/mckamey/duel/wiki/Syntax"
}, {
"name": "Examples",
"url": "https://bitbucket.org/mckamey/duel/wiki/Examples"
}, {
"name": "DUEL on BitBucket",
"url": "https://bitbucket.org/mckamey/duel/src"
}]
}]
},
"ember": {
"name": "Ember.js",
"description": "A framework for ambitious web developers.",
"homepage": "emberjs.com",
"examples": [{
"name": "Example",
"url": "examples/emberjs/todomvc/dist/"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Guides",
"url": "http://emberjs.com/guides"
}, {
"name": "API Reference",
"url": "http://emberjs.com/api"
}, {
"name": "Applications built with Ember.js",
"url": "http://emberjs.com/ember-users"
}, {
"name": "Blog",
"url": "http://emberjs.com/blog"
}]
}, {
"heading": "Intertactive",
"links": [{
"name": "Intertactive Tutorial",
"url": "https://tutorial.glimdown.com"
}, {
"name": "One-file REPL / Playground",
"url": "https://limber.glimdown.com"
}, {
"name": "Stackblitz (JavaScript)",
"url": "https://stackblitz.com/github/ember-cli/editor-output/tree/stackblitz-app-output"
}, {
"name": "Stackblitz (TypeScript)",
"url": "https://stackblitz.com/github/ember-cli/editor-output/tree/stackblitz-app-output-typescript"
}]
}, {
"heading": "Community",
"links": [{
"name": "Discord",
"url": "https://discord.gg/emberjs"
}, {
"name": "BlueSky",
"url": "https://bsky.app/profile/emberjs.com"
}, {
"name": "Mastodon",
"url": "https://hachyderm.io/@emberjs"
}, {
"name": "Ember.js on X/Twitter",
"url": "http://x.com/emberjs"
}, {
"name": "Ember.js Community",
"url": "https://emberjs.com/community/"
}, {
"name": "Ember.js on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/ember.js"
}]
}]
},
"enyo": {
"name": "Enyo",
"description": "Use the same framework to develop apps for the web and for all major platforms, desktop and mobile.",
"homepage": "enyojs.com",
"examples": [{
"name": "Example",
"url": "examples/enyo_backbone"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://enyojs.com/docs"
}, {
"name": "About",
"url": "http://enyojs.com/about"
}, {
"name": "Applications built with Enyo",
"url": "http://enyojs.com/showcase"
}, {
"name": "Blog",
"url": "http://blog.enyojs.com"
}, {
"name": "FAQ",
"url": "http://enyojs.com/about/faq"
}, {
"name": "Enyo on GitHub",
"url": "https://github.com/enyojs"
}]
}, {
"heading": "Community",
"links": [{
"name": "Enyo on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/enyo"
}, {
"name": "Forums",
"url": "http://forums.enyojs.com"
}, {
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/#!forum/enyo-development"
}, {
"name": "Enyo on Twitter",
"url": "http://twitter.com/enyojs"
}]
}]
},
"exoskeleton": {
"name": "Exoskeleton",
"description": "A faster and leaner Backbone for your HTML5 apps.",
"homepage": "exosjs.com",
"examples": [{
"name": "Example",
"url": "examples/exoskeleton"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://backbonejs.org"
}, {
"name": "Exoskeleton on GitHub",
"url": "https://github.com/paulmillr/exoskeleton"
}]
}, {
"heading": "Community",
"links": [{
"name": "Exoskeleton on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/exoskeleton"
}, {
"name": "Backbone on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/backbone.js"
}, {
"name": "Exoskeleton's author on Twitter",
"url": "http://twitter.com/paulmillr"
}]
}]
},
"gwt": {
"name": "Google Web Toolkit",
"description": "Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google AdWords and Orkut. It's open source, completely free, and used by thousands of developers around the world.",
"homepage": "developers.google.com/web-toolkit",
"examples": [{
"name": "Example",
"url": "examples/gwt"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "https://developers.google.com/web-toolkit/doc/latest/DevGuide"
}, {
"name": "Getting Started with the GWT SDK",
"url": "https://developers.google.com/web-toolkit/gettingstarted"
}, {
"name": "Articles",
"url": "https://developers.google.com/web-toolkit/articles"
}, {
"name": "Case Studies",
"url": "https://developers.google.com/web-toolkit/casestudies"
}, {
"name": "Blog",
"url": "http://googlewebtoolkit.blogspot.com"
}, {
"name": "FAQ",
"url": "https://developers.google.com/web-toolkit/doc/latest/FAQ"
}]
}, {
"heading": "Community",
"links": [{
"name": "Google Web Toolkit on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/gwt"
}, {
"name": "Mailing list on Google Groups",
"url": "http://groups.google.com/group/Google-Web-Toolkit"
}, {
"name": "Google Web Toolkit on Twitter",
"url": "http://twitter.com/googledevtools"
}]
}]
},
"javascript-es5": {
"name": "JavaScript ES5",
"description": "JavaScript® (often shortened to JS) is a lightweight, interpreted, object-oriented language with first-class functions, most known as the scripting language for Web pages, but used in many non-browser environments as well such as node.js or Apache CouchDB.",
"homepage": "developer.mozilla.org/en-US/docs/JavaScript",
"examples": [{
"name": "Example",
"url": "examples/javascript-es5"
}]
},
"javascript-es6": {
"name": "JavaScript ES6",
"description": "The ECMAScript 6 (ES2015) standard was ratified in 2015 following years of work standardizing improvements to ECMAScript 3. The committee introduced a wide variety of improvements such as arrow functions, const declarations, and native Promises.",
"homepage": "developer.mozilla.org/en-US/docs/JavaScript",
"examples": [{
"name": "Example",
"url": "examples/javascript-es6"
}]
},
"jquery": {
"name": "jQuery",
"description": "jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.",
"homepage": "jquery.com",
"examples": [{
"name": "Example",
"url": "examples/jquery"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "How jQuery Works",
"url": "http://learn.jquery.com/about-jquery/how-jquery-works"
}, {
"name": "API Reference",
"url": "http://api.jquery.com"
}, {
"name": "Plugins",
"url": "http://plugins.jquery.com"
}, {
"name": "Brower Support",
"url": "http://jquery.com/browser-support"
}, {
"name": "Blog",
"url": "http://blog.jquery.com"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Try jQuery",
"url": "http://try.jquery.com"
}, {
"name": "jQuery Annotated Source",
"url": "http://robflaherty.github.io/jquery-annotated-source/"
}, {
"name": "10 Things I Learned From the jQuery Source",
"url": "http://paulirish.com/2010/10-things-i-learned-from-the-jquery-source"
}]
}, {
"heading": "Community",
"links": [{
"name": "jQuery on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/jquery"
}, {
"name": "Forums",
"url": "http://forum.jquery.com"
}, {
"name": "jQuery on Twitter",
"url": "http://twitter.com/jquery"
}]
}]
},
"js_of_ocaml": {
"name": "js_of_ocaml",
"description": "Js_of_ocaml is a compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser.",
"homepage": "ocsigen.org/js_of_ocaml/",
"examples": [{
"name": "Example",
"url": "examples/js_of_ocaml"
}],
"link_groups": [{
"heading": "Resources",
"links": [{
"name": "Manual",
"url": "https://ocsigen.org/js_of_ocaml/manual/"
}, {
"name": "GitHub",
"url": "https://github.com/ocsigen/js_of_ocaml"
}, {
"name": "StackOverflow",
"url": "https://stackoverflow.com/questions/tagged/js-of-ocaml"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "TodoMVC: a reactive version",
"url": "https://ocsigen.github.io/blog/2015/10/07/react-example-todomvc/"
}]
}]
},
"jsblocks": {
"name": "jsblocks",
"description": "From simple user interfaces to complex single-page applications using faster, server-side rendered and easy to learn framework",
"homepage": "jsblocks.com",
"examples": [{
"name": "Example",
"url": "examples/jsblocks"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Official Website",
"url": "http://jsblocks.com"
}, {
"name": "API Reference",
"url": "http://jsblocks.com/api"
}, {
"name": "Documentation",
"url": "http://jsblocks.com/learn"
}, {
"name": "Shopping Example",
"url": "https://github.com/astoilkov/jsblocks-shopping-example"
}]
}, {
"heading": "Community",
"links": [{
"name": "jsblocks on Gitter",
"url": "https://gitter.im/astoilkov/jsblocks?utm_source=github_link"
}, {
"name": "jsblocks on Twitter",
"url": "http://twitter.com/jsblocks"
}, {
"name": "jsblocks on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/jsblocks"
}]
}]
},
"knockback": {
"name": "Knockback.js",
"description": "Both Knockout.js and Backbone.js have their strengths and weaknesses, but together they are amazing! With Knockback.js, you can use the strong ORM provided by Backbone and create dynamic views using Knockout bindings.",
"homepage": "kmalakoff.github.io/knockback",
"examples": [{
"name": "Example",
"url": "examples/knockback"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Getting Started with Knockback.js",
"url": "http://kmalakoff.github.io/knockback/getting_started_introduction.html"
}, {
"name": "Tutorials",
"url": "http://kmalakoff.github.io/knockback/tutorials_introduction.html"
}, {
"name": "API Reference",
"url": "http://kmalakoff.github.io/knockback/doc/index.html"
}, {
"name": "Knockback.js Reference App",
"url": "http://kmalakoff.github.io/knockback/app_knockback_reference.html"
}, {
"name": "Knockback.js on Twitter",
"url": "http://twitter.com/knockbackjs"
}]
}]
},
"knockoutjs": {
"name": "Knockout.js",
"description": "Knockout.js helps you simplify dynamic JavaScript UIs using the Model-View-ViewModel (MVVM) pattern.",
"homepage": "knockoutjs.com",
"examples": [{
"name": "Example",
"url": "examples/knockoutjs"
}, {
"name": "Example",
"url": "examples/knockoutjs_require"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://knockoutjs.com/documentation/introduction.html"
}, {
"name": "Tutorials",
"url": "http://learn.knockoutjs.com"
}, {
"name": "Live examples",
"url": "http://knockoutjs.com/examples"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Getting Started with Knockout.js",
"url": "http://www.adobe.com/devnet/html5/articles/getting-started-with-knockoutjs.html"
}, {
"name": "Into the Ring with Knockout.js",
"url": "http://net.tutsplus.com/tutorials/javascript-ajax/into-the-ring-with-knockout-js"
}, {
"name": "Beginners Guide to Knockout.js",
"url": "http://www.sitepoint.com/beginners-guide-to-knockoutjs-part-1"
}]
}, {
"heading": "Community",
"links": [{
"name": "Knockout.js on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/knockout"
}, {
"name": "Mailing list on Google Groups",
"url": "http://groups.google.com/group/knockoutjs"
}, {
"name": "Knockout.js on Twitter",
"url": "http://twitter.com/knockoutjs"
}, {
"name": "Knockout.js on Google+",
"url": "https://plus.google.com/communities/106789046312204355684/stream/c5bfcfdf-3690-44a6-b015-35aad4f4e42e"
}]
}]
},
"lavaca": {
"name": "Lavaca",
"description": "A curated collection of tools for building mobile web applications.",
"homepage": "getlavaca.com",
"examples": [{
"name": "Example",
"url": "examples/lavaca_require"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Guide",
"url": "http://getlavaca.com/#/guide"
}, {
"name": "API Reference",
"url": "http://getlavaca.com/#/apidoc"
}, {
"name": "Live examples",
"url": "http://getlavaca.com/#/examples"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Why Lavaca is the only sane HTML5 mobile development framework out there",
"url": "http://povolotski.me/2013/09/20/lavaca-intro/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Lavaca on Twitter",
"url": "http://twitter.com/getlavaca"
}]
}]
},
"lit": {
"name": "Lit",
"description": "Lit is a simple library for building fast, lightweight web components.",
"homepage": "lit.dev",
"examples": [{
"name": "Example",
"url": "examples/lit"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Getting Started",
"url": "https://lit.dev/docs/getting-started/"
},{
"name": "Tutorials",
"url": "https://lit.dev/tutorials/"
}]
}]
},
"marionettejs": {
"name": "Backbone.Marionette",
"description": "Marionette simplifies your Backbone application code with robust views and architecture solutions.",
"homepage": "marionettejs.com",
"examples": [{
"name": "Example Basic Marionette",
"url": "examples/backbone_marionette"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Docs",
"url": "http://marionettejs.com/docs/current/"
}, {
"name": "Gitter",
"url": "https://gitter.im/marionettejs/backbone.marionette"
}, {
"name": "YouTube - Dancing with Marionette",
"url": "https://www.youtube.com/channel/UC6dVRPnSACav2AYB5XG7BZw"
}, {
"name": "Marionette Inspector",
"url": "http://marionettejs.com/inspector/"
}, {
"name": "MarionetteJS on GitHub",
"url": "https://github.com/marionettejs/backbone.marionette"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Marionette 101",
"url": "https://www.youtube.com/watch?v=7yZKsgKxziw"
}, {
"name": "Marionette - The Backbone Framework",
"url": "https://www.youtube.com/watch?v=EvQnntaqVdE"
}]
}, {
"heading": "Community",
"links": [{
"name": "Backbone.Marionette on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/backbone.marionette"
}, {
"name": "Backbone.Marionette on Twitter",
"url": "http://twitter.com/marionettejs"
}]
}]
},
"mithril": {
"name": "Mithril",
"description": "Mithril is a modern client-side Javascript framework for building Single Page Applications. It's small (< 8kb gzip), fast and provides routing and XHR utilities out of the box.",
"homepage": "mithril.js.org",
"examples": [{
"name": "Architecture Example",
"url": "examples/mithril"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "https://mithril.js.org/#introduction"
}, {
"name": "API Reference",
"url": "https://mithril.js.org/api.html"
}, {
"name": "Tutorials",
"url": "https://mithril.js.org/simple-application.html"
}, {
"name": "Mithril on Github",
"url": "https://github.com/MithrilJS/mithril.js"
}]
}, {
"heading": "Community",
"links": [{
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/#!forum/mithriljs"
}, {
"name": "StackOverflow",
"url": "http://stackoverflow.com/questions/tagged/mithril.js"
}, {
"name": "Community Projects",
"url": "https://github.com/MithrilJS/mithril.js/wiki/Community-Projects"
}, {
"name": "Recipies and Snippets",
"url": "https://github.com/MithrilJS/mithril.js/wiki/Recipes-and-Snippets"
}]
}]
},
"polymer": {
"name": "Polymer",
"description": "Polymer is a new type of library for the web, built on top of Web Components, and designed to leverage the evolving web platform on modern browsers. It is comprised of core platform features (e.g Shadow DOM, Custom Elements, MDV) enabled with polyfills and a next generation web application framework built on these technologies.",
"homepage": "polymer-project.org",
"examples": [{
"name": "Example",
"url": "examples/polymer"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://www.polymer-project.org/docs/start/usingelements.html"
}, {
"name": "API Reference",
"url": "http://www.polymer-project.org/docs/polymer/polymer.html"
}, {
"name": "Polymer on GitHub",
"url": "https://github.com/polymer"
}, {
"name": "Polymer on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/polymer"
}]
}, {
"heading": "Videos",
"links": [{
"name": "Polymer And The Web Components Revolution",
"url": "https://www.youtube.com/watch?v=yRbOSdAe_JU"
}, {
"name": "Polymer And Web Components Change Everything",
"url": "https://www.youtube.com/watch?v=8OJ7ih8EE7s"
}]
}, {
"heading": "Community",
"links": [{
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/#!msg/polymer-dev/"
}, {
"name": "Web Components on Google+",
"url": "https://plus.google.com/103330502635338602217/"
}]
}]
},
"ractive": {
"name": "Ractive.js",
"description": "Ractive is a next-generation DOM manipulation library for creating reactive user interfaces, optimised for developer sanity. It was originally developed to create interactive news applications at theguardian.com.",
"homepage": "ractivejs.org",
"examples": [{
"name": "Example",
"url": "examples/ractive"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Ractive.js on GitHub",
"url": "https://github.com/RactiveJS/Ractive"
}, {
"name": "Wiki",
"url": "https://github.com/RactiveJS/Ractive/wiki"
}, {
"name": "60-second setup",
"url": "https://github.com/Rich-Harris/Ractive/wiki/60-second-setup"
}, {