forked from tastejs/todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.json
2187 lines (2187 loc) · 66.5 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
{
"angularjs": {
"name": "AngularJS",
"description": "HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.",
"homepage": "angularjs.org",
"examples": [{
"name": "Example",
"url": "examples/angularjs"
}, {
"name": "Example",
"url": "examples/angularjs_require"
}, {
"name": "AngularJS Optimized",
"url": "examples/angularjs-perf"
}, {
"name": "TypeScript & AngularJS",
"url": "examples/typescript-angular"
}, {
"name": "Google Cloud Platform + Express",
"url": "http://gcloud-todos.appspot.com",
"source_url": "https://github.com/GoogleCloudPlatform/gcloud-node-todos",
"type": "backend"
}, {
"name": "Angular2",
"url": "examples/angular2"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Tutorial",
"url": "http://docs.angularjs.org/tutorial"
}, {
"name": "API Reference",
"url": "http://docs.angularjs.org/api"
}, {
"name": "Developer Guide",
"url": "http://docs.angularjs.org/guide"
}, {
"name": "Applications built with AngularJS",
"url": "http://builtwith.angularjs.org"
}, {
"name": "Blog",
"url": "http://blog.angularjs.org"
}, {
"name": "FAQ",
"url": "http://docs.angularjs.org/misc/faq"
}, {
"name": "Videos",
"url": "https://www.youtube.com/user/angularjs"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Code School AngularJS course",
"url": "https://www.codeschool.com/courses/shaping-up-with-angular-js"
}, {
"name": "5 Awesome AngularJS Features",
"url": "http://net.tutsplus.com/tutorials/javascript-ajax/5-awesome-angularjs-features"
}, {
"name": "Using Yeoman with AngularJS",
"url": "http://briantford.com/blog/angular-yeoman.html"
}, {
"name": "me&ngular - an introduction to MVW",
"url": "http://stephenplusplus.github.io/meangular"
}]
}, {
"heading": "Community",
"links": [{
"name": "Walkthroughs and Tutorials on YouTube",
"url": "http://www.youtube.com/playlist?list=PL1w1q3fL4pmgqpzb-XhG7Clgi67d_OHXz"
}, {
"name": "Google Groups mailing list",
"url": "https://groups.google.com/forum/?fromgroups#!forum/angular"
}, {
"name": "angularjs on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/angularjs"
}, {
"name": "AngularJS on Twitter",
"url": "https://twitter.com/angularjs"
}, {
"name": "AngularjS on Google+",
"url": "https://plus.google.com/+AngularJS/posts"
}]
}]
},
"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"
}]
}]
},
"ariatemplates": {
"name": "Aria Templates",
"description": "Aria Templates (aka AT) is an application framework written in JavaScript for building rich and large-scaled enterprise web applications.",
"homepage": "ariatemplates.com",
"examples": [{
"name": "Example",
"url": "examples/ariatemplates"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "http://ariatemplates.com/usermanual"
}, {
"name": "API Reference",
"url": "http://ariatemplates.com/aria/guide/apps/apidocs"
}, {
"name": "Guides",
"url": "http://ariatemplates.com/guides"
}, {
"name": "Blog",
"url": "http://ariatemplates.com/blog"
}, {
"name": "FAQ",
"url": "http://ariatemplates.com/faq"
}, {
"name": "Aria Templates on GitHub",
"url": "https://github.com/ariatemplates"
}]
}, {
"heading": "Community",
"links": [{
"name": "Aria Templates on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/ariatemplates"
}, {
"name": "Forums",
"url": "http://ariatemplates.com/forum"
}, {
"name": "Aria Templates on Twitter",
"url": "http://twitter.com/ariatemplates"
}]
}]
},
"atmajs": {
"name": "Atma.js",
"description": "HMVC and the component-based architecture for building client, server or hybrid applications",
"homepage": "atmajs.com",
"examples": [{
"name": "Example",
"url": "examples/atmajs/"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Get Started",
"url": "http://atmajs.com/get/github"
}, {
"name": "Atma.js on GitHub",
"url": "https://github.com/atmajs"
}, {
"name": "Atma.js DevTool",
"url": "https://chrome.google.com/webstore/detail/atmajs-devtool/bpaepkmcmoablpdahclhdceapndfhdpo"
}]
}, {
"heading": "Overview",
"links": [{
"name": "Libraries",
"url": "https://github.com/tastejs/todomvc/blob/gh-pages/examples/atmajs/readme.md"
}]
}, {
"heading": "Community",
"links": [{
"name": "Atma.js on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/atmajs"
}, {
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/?fromgroups#!forum/atmajs"
}]
}]
},
"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": "http://aurelia.io/get-started.html"
}, {
"name": "Docs",
"url": "http://aurelia.io/docs.html"
}, {
"name": "Aurelia on GitHub",
"url": "https://github.com/aurelia"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Blog",
"url": "http://blog.durandal.io/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Aurelia dicussions on Gitter",
"url": "https://gitter.im/Aurelia/Discuss"
}]
}]
},
"backbonejs": {
"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": "Example",
"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": "http://addyosmani.github.io/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": "http://twitter.com/documentcloud"
}]
}]
},
"ampersand": {
"name": "Ampersand.js",
"description": "A highly modular, loosely coupled, non-frameworky framework for building advanced JavaScript apps.",
"homepage": "ampersandjs.com",
"examples": [{
"name": "Architecture Example",
"url": "examples/ampersand"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Project Site",
"url": "http://ampersandjs.com"
}, {
"name": "Guides",
"url": "http://ampersandjs.com/learn"
}, {
"name": "API Reference",
"url": "http://ampersandjs.com/docs"
}, {
"name": "Curated Front-end Modules",
"url": "http://tools.ampersandjs.com"
}, {
"name": "#&yet IRC Channel on Freenode",
"url": "https://botbot.me/freenode/andyet/"
}]
}, {
"heading": "Related Materials",
"links": [{
"name": "Human JavaScript (free online book)",
"url": "http://learn.humanjavascript.com"
}, {
"name": "Introducing Ampersand Blogpost",
"url": "http://blog.andyet.com/2014/06/25/introducing-ampersand-js/"
}, {
"name": "&yet – The team behind Ampersand.js",
"url": "http://andyet.com"
}]
}]
},
"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": "Guides",
"url": "http://elm-lang.org/Learn.elm"
}, {
"name": "Syntax Reference",
"url": "http://elm-lang.org/learn/Syntax.elm"
}, {
"name": "Libraries",
"url": "http://elm-lang.org/Libraries.elm"
}, {
"name": "#elm IRC Channel on Freenode",
"url": "http://webchat.freenode.net/?channels=elm"
}]
}]
},
"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": "Example",
"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"
}]
}]
},
"chaplin": {
"name": "Chaplin",
"description": "Chaplin is an architecture for JavaScript applications using the Backbone.js library. Chaplin addresses Backbone’s limitations by providing a lightweight and flexible structure that features well-proven design patterns and best practices.",
"homepage": "chaplinjs.org",
"examples": [{
"name": "Example",
"url": "examples/chaplin-brunch/public"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Getting Started",
"url": "http://docs.chaplinjs.org/getting_started.html"
}, {
"name": "Documentation",
"url": "http://docs.chaplinjs.org"
}, {
"name": "Annotated Source Code",
"url": "http://chaplinjs.org/annotated/chaplin.html"
}, {
"name": "Applications built with Chaplin",
"url": "http://chaplinjs.org/examples.html"
}, {
"name": "Cookbook",
"url": "https://github.com/chaplinjs/chaplin/wiki/Cookbook"
}, {
"name": "Chaplin on GitHub",
"url": "https://github.com/chaplinjs"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "JavaScript MVC frameworks: A Comparison of Marionette and Chaplin",
"url": "http://9elements.com/io/index.php/comparison-of-marionette-and-chaplin"
}]
}, {
"heading": "Community",
"links": [{
"name": "Support forum on ost.io",
"url": "http://ost.io/@chaplinjs/chaplin"
}, {
"name": "Chaplin on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/chaplinjs"
}, {
"name": "Chaplin on Twitter",
"url": "http://twitter.com/chaplinjs"
}]
}]
},
"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"
}]
}]
},
"componentjs": {
"name": "ComponentJS",
"description": "Provides a powerful run-time Component System for hierarchically structuring the UI dialogs of complex HTML5-based Clients. Fully isolates each UI segment, with sophisticated hierarchical Event, Service, Hook, Model, Socket and Property mechanisms.",
"homepage": "componentjs.com/",
"source_path": [{
"name": "Example",
"url": "examples/componentjs"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Overview Video",
"url": "http://www.youtube.com/watch?v=gtz7PCMxzVA"
}, {
"name": "Demo",
"url": "http://componentjs.com/demo.html"
}, {
"name": "Tutorial",
"url": "http://componentjs.com/tutorial.html"
}, {
"name": "API Reference",
"url": "http://componentjs.com/api.html"
}]
}, {
"heading": "Community",
"links": [{
"name": "ComponentJS on GitHub",
"url": "https://github.com/rse/componentjs"
}, {
"name": "ComponentJS on Twitter",
"url": "http://twitter.com/componentjs"
}]
}]
},
"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"
}]
}]
},
"dart": {
"name": "Dart",
"description": "Dart is a class-based, object-oriented language with lexical scoping, closures, and optional static typing. Dart helps you build structured modern web apps and is easy to learn for a wide range of developers.",
"homepage": "dartlang.org",
"examples": [{
"name": "Example",
"url": "examples/vanilladart/web"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "https://www.dartlang.org/docs/dart-up-and-running/contents/ch01.html"
}, {
"name": "API Reference",
"url": "http://api.dartlang.org/docs/releases/latest"
}, {
"name": "A Tour of the Dart Language",
"url": "http://www.dartlang.org/docs/dart-up-and-running/contents/ch02.html"
}, {
"name": "Articles",
"url": "http://www.dartlang.org/articles"
}, {
"name": "Tutorials",
"url": "http://www.dartlang.org/docs/tutorials"
}, {
"name": "FAQ",
"url": "http://www.dartlang.org/support/faq.html"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Getting started with Google Dart",
"url": "http://www.techrepublic.com/blog/webmaster/getting-started-with-google-dart/931"
}]
}, {
"heading": "Community",
"links": [{
"name": "Dart on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/dart"
}, {
"name": "Dart on Twitter",
"url": "http://twitter.com/dart_lang"
}, {
"name": "Dart on Google+",
"url": "https://plus.google.com/+dartlang/posts"
}]
}]
},
"deftjs": {
"name": "DeftJS",
"description": "DeftJS enhances Ext JS and Sencha Touch’s APIs with additional building blocks that enable large development teams to rapidly build enterprise scale applications, leveraging best practices and proven patterns discovered by top RIA developers at some of the best consulting firms in the industry.",
"homepage": "deftjs.org",
"examples": [{
"name": "Example",
"url": "examples/extjs_deftjs"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Documentation",
"url": "https://github.com/deftjs/DeftJS/wiki"
}, {
"name": "DeftJS on GitHub",
"url": "https://github.com/deftjs/DeftJS"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Exploring ExtJS with DeftJS",
"url": "http://www.briankotek.com/blog/index.cfm/2012/5/8/Exploring-ExtJS-with-DeftJS"
}]
}, {
"heading": "Community",
"links": [{
"name": "DeftJS on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/deftjs"
}, {
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/?fromgroups#!forum/deftjs"
}, {
"name": "DeftJS on Twitter",
"url": "http://twitter.com/deftjs"
}]
}]
},
"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"
}]
}]
},
"durandal": {
"name": "Durandal",
"description": "Single Page Apps Done Right.",
"homepage": "durandaljs.com",
"examples": [{
"name": "Example",
"url": "examples/durandal/index.html"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Getting Started",
"url": "http://durandaljs.com/pages/get-started/"
}, {
"name": "Documentation",
"url": "http://durandaljs.com/pages/docs"
}, {
"name": "Videos",
"url": "http://durandaljs.com/pages/videos/"
}, {
"name": "Durandal on GitHub",
"url": "https://github.com/BlueSpire/Durandal"
}]
}
, {
"heading": "Articles and Guides",
"links": [{
"name": "HotTowel Template - Durandal with ASP.Net MVC",
"url": "http://www.johnpapa.net/hottowel/"
}, {
"name": "Using Durandal to Create Single Page Apps",
"url": "http://stephenwalther.com/archive/2013/02/08/using-durandal-to-create-single-page-apps"
},{
"name": "nuGet Download",
"url": "http://www.nuget.org/packages/Durandal/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Durandal on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/durandal"
}, {
"name": "Mailing list on Google Groups",
"url": "https://groups.google.com/forum/#!forum/durandaljs"
}, {
"name": "Durandal on Twitter",
"url": "http://twitter.com/durandaljs"
}]
}]
},
"emberjs": {
"name": "Ember.js",
"description": "A framework for creating ambitious web applications.",
"homepage": "emberjs.com",
"examples": [{
"name": "Example",
"url": "examples/emberjs"
}, {
"name": "Example",
"url": "examples/emberjs_require"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "Guides",
"url": "http://emberjs.com/guides"
}, {
"name": "API Reference",
"url": "http://emberjs.com/api"
}, {
"name": "Screencast - Building an App with Ember.js",
"url": "https://www.youtube.com/watch?v=Ga99hMi7wfY"
}, {
"name": "Applications built with Ember.js",
"url": "http://emberjs.com/ember-users"
}, {
"name": "Blog",
"url": "http://emberjs.com/blog"
}]
}, {
"heading": "Articles and Guides",
"links": [{
"name": "Getting Into Ember.js",
"url": "http://net.tutsplus.com/tutorials/javascript-ajax/getting-into-ember-js"
}, {
"name": "EmberWatch",
"url": "http://emberwatch.com"
}]
}, {
"heading": "Community",
"links": [{
"name": "Ember.js on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/ember.js"
}, {
"name": "Ember.js on Twitter",
"url": "http://twitter.com/emberjs"
}, {
"name": "Ember.js on Google+",
"url": "https://plus.google.com/communities/106387049790387471205"
}]
}]
},
"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"
}]
}]
},
"firebase": {
"name": "Firebase",
"description": "Firebase is a scalable realtime backend that lets you build apps fast without managing servers.",
"homepage": "firebase.com",
"examples": [{
"name": "Firebase + AngularJS Realtime Example",
"url": "examples/firebase-angular"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "AngularFire Site",
"url": "http://angularfire.com/"
}, {
"name": "Documentation & Examples",
"url": "https://www.firebase.com/docs/"
}, {
"name": "Blog",
"url": "https://www.firebase.com/blog/"
}, {
"name": "Firebase on GitHub",
"url": "http://firebase.github.io"
}, {
"name": "Tutorial",
"url": "https://www.firebase.com/tutorial/"
}]
}, {
"heading": "Community",
"links": [{
"name": "Firebase + Angular Mailing list on Google Groups",
"url": "https://groups.google.com/forum/#!forum/firebase-angular"
}, {
"name": "Firebase on Stack Overflow",
"url": "http://stackoverflow.com/questions/tagged/firebase"
}, {
"name": "Firebase on Twitter",
"url": "http://twitter.com/Firebase"
}, {
"name": "Firebase on Facebook",
"url": "http://facebook.com/Firebase"
}, {
"name": "Firebase on Google+",
"url": "https://plus.google.com/115330003035930967645/posts"
}]
}]
},
"flight": {
"name": "Flight",
"description": "Flight is a lightweight, component-based JavaScript framework that maps behavior to DOM nodes.",
"homepage": "flightjs.github.io",
"examples": [{
"name": "Example",
"url": "examples/flight"
}],
"link_groups": [{
"heading": "Official Resources",
"links": [{
"name": "GitHub",
"url": "https://github.com/flightjs/flight"
}, {
"name": "Demo Application",
"url": "http://flightjs.github.io/example-app/"
}, {
"name": "Installation",
"url": "https://github.com/flightjs/flight/blob/master/README.md#installation"
}, {
"name": "Collection of Flight components",
"url": "http://flight-components.jit.su/"
}, {
"name": "Flight on Twitter",
"url": "https://twitter.com/flightjs"