-
Notifications
You must be signed in to change notification settings - Fork 1
/
Javascript.py
993 lines (950 loc) · 59 KB
/
Javascript.py
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
"Javascript":{
"Angular":[
"http://www.webcodegeeks.com/javascript/angular-js/angular-2-hello-world/"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-angularjs-and-firebase-part-7--cms-23084"
"http://www.webcodegeeks.com/javascript/angular-js/top-5-mistakes-angularjs-developers-make-part-1-relying-scope/"
"https://www.airpair.com/angularjs/posts/material-design-with-angularjs"
"http://ngmodules.com/"
"http://code.tutsplus.com/tutorials/build-an-angularjs-app-from-scratch-powered-by-python-eve--cms-23063"
"http://code.ciphertrick.com/2015/05/25/display-time-relatively-in-angularjs/"
"http://code.tutsplus.com/tutorials/create-a-simple-shopping-cart-using-angularjs-part-1--cms-23535"
"https://www.youtube.com/watch?v=o9c3U5_8tGY&feature=youtu.be&t=102"
"http://www.sitepoint.com/building-twitter-app-using-angularjs/"
"http://conceptf1.blogspot.com/p/learning-angularjs.html"
"http://ryanchenkie.com/angularjs-custom-filters/"
"http://victorsavkin.com/post/118372404541/the-core-concepts-of-angular-2"
"http://www.infoq.com/news/2015/04/angularjs-14-ngAnimate"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-angularjs-and-firebase-part-5--cms-22809"
"http://brianhann.com/pass-data-to-a-ui-bootstrap-modal-without-scope/"
"http://www.toptal.com/web/cookie-free-authentication-with-json-web-tokens-an-example-in-laravel-and-angularjs"
"http://tutorials.jenkov.com/angularjs/dependency-injection.html"
"https://github.com/angular/angular.js/wiki/Understanding-Dependency-Injection"
"http://blog.mgechev.com/2015/04/11/immutability-in-angularjs-immutablejs-part-2/"
"https://qconnewyork.com/workshop/introduction-angularjs"
"http://blog.backand.com/time-saving-angularjs-tips"
"http://stackoverflow.com/questions/17922557/angularjs-how-to-check-for-changes-in-file-input-fields"
"http://blog.mgechev.com/2015/04/06/angular2-first-impressions/"
"http://www.webcodegeeks.com/javascript/angular-js/angular-js-controller-example/"
"http://thejackalofjavascript.com/getting-started-with-angular-2-0/"
"http://www.webcodegeeks.com/javascript/angular-js/real-time-communication-angularjs-qorlate/"
"http://www.webcodegeeks.com/javascript/angular-js/learning-angular-access-directive-scope-variables-from-directive-controllers-and-vice-versa/"
"http://www.webcodegeeks.com/javascript/angular-js/angularjs-ui-router-components/"
"http://www.knowarth.com/single-page-application-angular-js/"
"http://www.webcodegeeks.com/javascript/angular-js/angular-not-single-page-web-apps/"
"www.techtalky.com/modules-angular-js/"
"http://www.jasonwatmore.com/post/2014/05/26/AngularJS-Basic-HTTP-Authentication-Example.aspx"
"http://nathanleclaire.com/blog/2014/04/19/5-angularjs-antipatterns-and-pitfalls/"
"https://www.youtube.com/watch?v=z8UgDZ4rXBU&feature=youtu.be"
"http://www.pro-tekconsulting.com/blog/scope-inheritance-in-angular-js/"
"http://www.infoq.com/news/2015/04/angular-react-collaborate"
"http://www.webcodegeeks.com/javascript/angular-js/angularjs-borrow-concepts-jsf/"
"http://java.dzone.com/articles/using-oauth-20-your-web"
"http://blog.mgechev.com/2015/04/06/angular2-first-impressions/"
"http://www.webcodegeeks.com/javascript/angular-js/angular-js-form-validation-example/"
"http://code.tutsplus.com/tutorials/token-based-authentication-with-angularjs-nodejs--cms-22543"
"http://blog.npmjs.org/post/114584444410/using-angulars-new-improved-browserify-support"
"https://medium.com/@KamilLelonek/angularjs-and-scope-apply-best-practices-d07353175024"
"https://medium.com/@tomastrajan/component-paradigm-cf32e94ba78b"
"http://blog.durandal.io/2015/05/20/porting-an-angular-2-0-app-to-aurelia/"
"http://eisenbergeffect.bluespire.com/aurelia-angular-2-0-code-side-by-side-part-2/"
"http://www.javacodegeeks.com/2014/07/server-vs-client-side-rendering-angularjs-vs-server-side-mvc.html"
"http://blog.durandal.io/2015/05/01/aurelia-may-status-and-releases/"
"http://www.encodedna.com/angularjs/tutorial/format-text-using-angularjs-currency-filter.htm"
"http://blog.crowdint.com/2015/03/18/angularjs-providers-under-the-hood.html"
"http://www.htmlxprs.com/post/54/creating-a-super-simple-todo-app-using-angular-2-tutorial"
"http://victorsavkin.com/post/114168430846/two-phases-of-angular-2-applications"
"http://angularjs.blogspot.com/2015/03/forms-in-angular-2.html"
"http://www.webcodegeeks.com/javascript/angular-js/interception-using-decorator-and-lazy-loading-with-angularjs"
"https://www.airpair.com/angularjs/posts/ngmodeloptions-total-model-control"
"http://www.jackyen.com/unit-test-a-controller-in-angularjs/"
"https://angular.io/features.html"
"https://stormpath.com/blog/angular-node-15-minutes/"
"http://www.ciappara.com/2015/03/20/convert-json-object-from-angularjs-to-class-object-in-webapi/"
"https://css-tricks.com/using-angularjs-for-data-visualisations/"
"http://www.webcodegeeks.com/javascript/angular-js/angular-js-routing-example/"
"http://www.jackyen.com/how-to-unit-test-an-angular-application-service-with-requests-to-backend/"
"http://www.aurorasolutions.io/step-by-step-guide-to-configure-angular-routing-using-angular-route/"
"http://www.aurorasolutions.io/angularjs-cross-component-communication/"
"http://frontendcollisionblog.com/angular_init/",
"https://www.airpair.com/angularjs/posts/angularjs-promises"
"http://blog.ionic.io/angular-2-series-introduction/",
"https://www.airpair.com/angularjs/posts/angularjs-promises"
"https://medium.com/@TK_CodeBear/getting-started-with-angular-part-1-bd448458566e",
"https://docs.google.com/document/d/1M9FmT05Q6qpsjgvH1XvCm840yn2eWEg0PMskSQz7k4E/preview?sle=true",
"http://trendytechhub.blogspot.com/2015/02/how-to-build-single-page-application.html",
"http://dailyjs.com/2015/03/31/angular-grid-react-native/",
"https://devcenter.appery.io/tutorials/angularjs/bootstrap/",
"http://jaysoo.ca/2015/03/30/container-component-pattern-in-angular-1/",
"http://conceptf1.blogspot.com/p/learning-angularjs.html",
"http://jpeyatt.com/angularjs-ui-bootstrap-modals/"
"http://aakilfernandes.github.io/angular-scopelogger/"
"http://www.webcodegeeks.com/javascript/angular-js/learning-angular-useful-utility-functions/"
"http://victorsavkin.com/post/114050927521/two-phases-of-angular-2-applications"
"http://www.zainabed.com/2015/03/angularjs-tutorials-bootstrap.html"
"https://blog.codecentric.de/en/2015/03/five-ways-to-write-better-angular-services/"
"http://www.angularjsbook.com/angular-basics/chapters/basics/"
"http://www.pro-tekconsulting.com/blog/advancing-from-jquery-to-angularjs/"
"https://blog.nraboy.com/2015/03/using-oauth-2-0-in-your-web-browser-with-angularjs/"
"http://blog.carbonfive.com/2015/03/25/communication-between-collaborating-directives-in-angular/"
"https://www.airpair.com/javascript/posts/build-a-realtime-sms-call-center-with-data-mcfly-and-twilio"
"http://www.webcodegeeks.com/javascript/angular-js/learning-angular-set-language-culture-ui-displayed/"
"https://medium.com/angularjs-meetup-south-london/angular-new-router-preview-8002340e5427"
"https://github.com/swirlycheetah/generator-angular2"
"http://blog.jhades.org/what-every-angular-project-likely-needs-and-a-gulp-build-to-provide-it/"
"http://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/#hnhttp://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/#hn"
"https://www.airpair.com/pubnub/posts/realtime-angularjs-pubsub-messaging-using-pubnub1"
"http://blog.sodhanalibrary.com/2015/04/angularjs-directive-for-mouse-wheel.html"
],
"JXCore":[
"http://www.goland.org/jxcore/"
]
"FireBase":[
"https://www.youtube.com/watch?v=umZLJThityQ"
"https://www.firebase.com/blog/2015-05-15-introducing-firebase-queue.html"
"https://www.firebase.com/blog/2015-05-15-introducing-firebase-queue.html"
"https://www.twilio.com/blog/2015/04/get-notified-when-someone-posts-an-article-from-your-domain-on-hacker-news-using-node-js-firebase-and-twilio.html"
"https://www.firebase.com/blog/2015-04-10-realtime-maps-cartodb-firebase.html"
"http://java.dzone.com/articles/sign-firebase-facebook-using"
"https://www.firebase.com/docs/ios/examples.html"
"https://www.firebase.com/blog/2015-03-20-fireside-chat-testlio.html"
"https://code4startup.com/projects/ninja-learn-angularjs-firebase-by-cloning-udemy"
"https://www.youtube.com/watch?v=D-k0MeWdpao&list=PLT-DLWOBKbB6gEvXXbznfNY_opQonXMsk"
],
"Polymer":[
"https://blog.polymer-project.org/announcements/2015/05/14/0.9-release/"
"http://futurice.com/blog/declarative-apps-with-polymers-two-way-data-binding"
]
"StrongLoop":[
"https://strongloop.com/strongblog/loopback-geolocation-node-js-user-registration-app/"
"https://strongloop.com/strongblog/rethinkdb-connector-loopback-node-js-framework/"
"https://strongloop.com/strongblog/node-js-process-manager-production-docker/"
"https://strongloop.com/strongblog/es6-variable-declarations/"
]
"iojs":[
"https://www.codeschool.com/blog/2015/05/08/whats-new-in-io-js-2-0-0/"
"https://medium.com/node-js-javascript/io-js-week-of-april-3rd-a4e1fe0c38c1"
"https://iojs.org/en/faq.html"
],
"FireBase":[
"https://www.youtube.com/watch?v=umZLJThityQ"
"https://www.firebase.com/blog/2015-05-15-introducing-firebase-queue.html"
"https://www.firebase.com/blog/2015-05-15-introducing-firebase-queue.html"
"https://www.twilio.com/blog/2015/04/get-notified-when-someone-posts-an-article-from-your-domain-on-hacker-news-using-node-js-firebase-and-twilio.html"
"https://www.firebase.com/blog/2015-04-10-realtime-maps-cartodb-firebase.html"
"http://java.dzone.com/articles/sign-firebase-facebook-using"
"https://www.firebase.com/docs/ios/examples.html"
"https://www.firebase.com/blog/2015-03-20-fireside-chat-testlio.html"
"https://code4startup.com/projects/ninja-learn-angularjs-firebase-by-cloning-udemy"
"https://www.youtube.com/watch?v=D-k0MeWdpao&list=PLT-DLWOBKbB6gEvXXbznfNY_opQonXMsk"
],
"Polymer":[
"https://blog.polymer-project.org/announcements/2015/05/14/0.9-release/"
"http://futurice.com/blog/declarative-apps-with-polymers-two-way-data-binding"
]
"StrongLoop":[
"https://strongloop.com/strongblog/loopback-geolocation-node-js-user-registration-app/"
"https://strongloop.com/strongblog/rethinkdb-connector-loopback-node-js-framework/"
"https://strongloop.com/strongblog/node-js-process-manager-production-docker/"
"https://strongloop.com/strongblog/es6-variable-declarations/"
]
"iojs":[
"https://www.codeschool.com/blog/2015/05/08/whats-new-in-io-js-2-0-0/"
"https://medium.com/node-js-javascript/io-js-week-of-april-3rd-a4e1fe0c38c1"
"https://iojs.org/en/faq.html"
],
"Emberjs":[
"http://www.toptal.com/emberjs/the-8-most-common-ember-js-developer-mistakes"
"http://www.emberscreencasts.com/"
'http://emberjs.com/blog/2015/05/10/run-up-to-two-oh.html'
"http://emberjs.com/blog/2015/05/13/ember-1-12-released.html"
"http://emberjs.com/blog/2015/01/08/inside-fastboot-faking-the-dom-in-node.html"
"http://blog.yodersolutions.com/why-i-recommend-emberjs-over-angularjs/"
"http://madhatted.com/2015/3/6/aligning-ember-js-with-web-standards-emberconf-2015"
"http://www.sitepoint.com/twitter-authentication-ember-js-torii/"
],
"Hapijs":[
"http://stackshare.io/lob/verify-user-addresses-via-postcard-with-lob---mandrill---hapi"
"http://rafaelcorral.com/blog/building-a-restful-api-in-node-using-hapi-js-8"
"http://dailyjs.com/2015/03/16/hapijs-fullstack-stringformatter/"
]
"React":[
"http://www.infoq.com/news/2014/05/facebook-mvc-flux"
"https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html"
"http://jxnblk.com/react-icons/"
"http://www.christianalfoni.com/articles/2015_05_18_Cerebral-developer-preview"
"https://medium.com/javascript-scene/jsx-looks-like-an-abomination-1c1ec351a918"
"http://www.sitepoint.com/video-getting-started-react/"
"http://blog.atom.io/2015/05/15/new-autocomplete.html"
"http://firstdoit.com/react-1/"
"http://www.sitepoint.com/immutability-react/"
"https://facebook.github.io/react/blog/2015/05/08/react-v0.13.3.html"
"http://www.tabforacause.org/blog/2015/01/29/using-reactjs-and-application-cache-fast-synced-app/"
"https://facebook.github.io/react/blog/2015/05/01/graphql-introduction.html"
"http://brentvatne.ca/react-native-newsletter/23-04-2015.html"
"http://www.smashingmagazine.com/2015/04/21/react-to-the-future-with-isomorphic-apps/"
"http://arc.applause.com/2015/04/21/facebook-app-developers-react-native/"
"https://auth0.com/blog/2015/04/09/adding-authentication-to-your-react-flux-app/"
"http://facebook.github.io/flux/docs/overview.html#content"
"http://blog.risingstack.com/the-react-way-getting-started-tutorial/"
"https://scotch.io/courses/getting-started-with-facebooks-react-js"
"https://reactjsnews.com/building-components-with-react-js-and-flux/"
"https://codepicnic.com/posts/a-quick-start-to-react-in-4-steps-iii-f2217062e9a397a1dca429e7d70bc6ca/"
"https://codepicnic.com/posts/a-quick-start-to-react-in-4-steps-i-a5e00132373a7031000fd987a3c9f87b/"
"http://zippyui.github.io/react-datagrid/#/"
"http://fluxxor.com/what-is-flux.html"
"http://attackofzach.com/react-components-for-google-maps-part-2/"
"http://blog.tryolabs.com/2015/04/07/react-examples-mailbox"
"https://medium.com/@PhilPlckthun/react-to-this-nonsense-and-move-on-3d9f9111a77d"
"http://react.parts/native-ios"
"http://almostobsolete.net/react-native/custom-ios-views-with-react-native.html"
"http://madscript.com/halogen/"
"http://moduscreate.com/react_native_custom_components_ios/"
"http://scotch.io/tutorials/javascript/build-a-real-time-twitter-stream-with-node-and-react-js"
"https://www.codementor.io/reactjs/tutorial"
"https://scotch.io/tutorials/learning-react-getting-started-and-concepts"
"http://tutorialzine.com/2014/07/5-practical-examples-for-learning-facebooks-react-framework/"
"https://medium.com/@dan_abramov/two-weird-tricks-that-fix-react-7cf9bbdef375"
"http://www.bimeanalytics.com/engineering-blog/you-put-your-react-into-my-angular/"
"https://facebook.github.io/react/blog/2015/03/19/building-the-facebook-news-feed-with-relay.html"
"http://facebook.github.io/react/blog/2015/03/19/building-the-facebook-news-feed-with-relay.html"
"http://swizec.com/reactd3js/"
"https://www.airpair.com/javascript/posts/creating-container-components-part-1-shadow-dom"
"http://blogs.atlassian.com/2014/08/flux-architecture-step-by-step/"
"https://reactjsnews.com/getting-started-with-flux/"
"https://github.com/RickWong/react-transmit"
"http://blog.parse.com/2015/03/25/parse-and-react-shared-chemistry/"
"http://adtmag.com/articles/2015/03/26/facebook-releases-react-native-for-building-native-mobile-apps-in-javascript.aspx"
"http://brianpfeil.com/react-native-initial-thoughts/"
"https://www.youtube.com/watch?v=X6YbAKiLCLU&list=PLb0IAmt7-GS1_7FcSupSJoUe21tF12eu8&index=1"
"https://weluse.de/blog/first-impressions-on-react-native.html"
"http://facebook.github.io/react/blog/2015/03/30/community-roundup-26.html"
"http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript"
"http://www.syncano.com/getting-started-reactjs-tutorial/",
"http://react-components.com/",
"http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript"
"https://www.codementor.io/reactjs/tutorial/understanding-react-js-rendering"
"https://www.airpair.com/node.js/posts/nodejs-framework-comparison-express-koa-hapi"
],
"Express":[
"http://www.codekitchen.ca/guide-to-structuring-and-building-a-restful-api-using-express-4/?utm_campaign=linkplug&utm_content=linkplug-Rbk4&utm_medium=linkplug&utm_source=linkplug&utm_term=linkplug-angularjs-job-board-contractor-listings"
"https://www.airpair.com/javascript/posts/using-rethinkdb-with-expressjs"
"http://webapplog.com/jade-handlebars-express"
"http://throwerr.com/2015/05/15/get-started-with-routing-in-express-4-0/"
"http://webapplog.com/url-parameters-and-routing-in-express-js/"
"https://stormpath.com/blog/build-nodejs-express-stormpath-app/%20weekly&utm_medium=email&utm_campaign=express%20tutorial"
"https://blog.nraboy.com/2015/01/session-management-expressjs-web-application/"
"http://mherman.org/blog/2015/01/31/local-authentication-with-passport-and-express-4/#.VNKnnfWsWIR"
"http://nodejs.blog.br/2015/02/caching-views-redis-express-framework"
"https://www.airpair.com/javascript/complete-expressjs-nodejs-mongodb-crud-skeleton"
],
"Sails":[
"http://www.hutchinson.io/ember-and-sails-js-getting-started/"
"http://www.ultrasaurus.com/2015/01/getting-started-sailsjs/"
"http://sanestack.com/"
"https://www.digitalocean.com/community/tutorials/how-to-create-an-node-js-app-using-sails-js-on-an-ubuntu-vps"
"https://everystack.io/#!/catalog/components/sails"
],
"Phantomjs":[
"http://engineering.shapesecurity.com/2015/01/detecting-phantomjs-based-visitors.html"
]
"Cylon.js":[
"http://cylonjs.com/blog/2015/04/08/cylon-1.0.0/"
]
"Nodejs":[
"http://www.brandonwerner.com/2015/07/14/building-a-node-js-rest-api-todo-server-with-mongodb-and-oauth2-protection/"
"http://www.tamas.io/simple-chat-application-using-node-js-and-socket-io/"
"http://www.tamas.io/advanced-chat-using-node-js-and-socket-io-episode-1/"
"https://www.airpair.com/javascript/posts/the-chemical-wedding-of-rethinkdb-and-nodejs"
"https://www.airpair.com/javascript/posts/using-rethinkdb-with-expressjs"
"https://www.youtube.com/watch?v=LFw_wPcIm8k&feature=youtu.be"
"https://nodesource.com/blog/was-this-trip-really-necessary"
"http://www.passportjs.org/
"http://blog.turret.io/hmac-in-go-python-ruby-php-and-nodejs"
"https://blog.indutny.com/c.cpp-in-node"
"https://changelog.com/155/"
"https://changelog.com/155/"
"http://java.dzone.com/articles/websockets-support-apache"
"http://blog.nodejs.org/2015/05/15/the-nodejs-foundation-benefits-all/"
"https://medium.com/@nodesource/node-and-arm-b5e3eebf449"
"http://tech.pro/tutorial/6781/series-getting-started-node-part-2-basic-routing"
"https://www.airpair.com/docker/posts/getting-started-with-docker-for-the-nodejs-dev"
"http://binary-studio.com/2015/04/16/handle-http-code-express-like-pro"
"https://semaphoreci.com/community/tutorials/getting-started-with-node-js-and-mocha"
"http://js-for.ninja/simple-way-to-manage-local-node-module-using-npm-link.html"
"https://semaphoreci.com/community/tutorials/how-to-deploy-node-js-applications-with-capistrano"
"http://www.jayway.com/2015/04/13/600k-concurrent-websocket-connections-on-aws-using-node-js/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-node-mongodb-socket/"
"http://www.javacodegeeks.com/2013/12/node-js-synchronous-and-asynchronous-functions.html"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-connecting-websockets/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-chatroom-ui-bootstrap/"
"http://www.mongodb.com/blog/post/introducing-version-40-mongoose-nodejs-odm"
"http://www.sitepoint.com/building-recipe-search-site-angular-elasticsearch/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-getting-started/"
"https://strongloop.com/strongblog/node-js-performance-heap-profiling-tip/"
"https://strongloop.com/strongblog/node-js-performance-tip-of-the-week-memory-leak-diagnosis/"
"http://www.nearform.com/nodecrunch/node-js-develop-debugging-techniques/"
"http://blogs.ancestry.com/techroots/scaling-node-js-in-the-enterprise/"
"http://www.robotlovesyou.com/bdd-tdd/"
"http://code.tutsplus.com/tutorials/multi-instance-nodejs-app-in-paas-using-redis-pubsub--cms-22239"
"https://medium.com/@Philmod/debugging-node-js-29b2097df36c"
"http://blog.backand.com/github-webhook-node/"
"http://www.sitepoint.com/basics-node-js-streams/"
"https://stormpath.com/blog/everything-you-ever-wanted-to-know-about-node-dot-js-sessions/"
"http://futurice.com/blog/reactive-mvc-and-the-virtual-dom"
"http://blog.risingstack.com/functional-reactive-programming-with-the-power-of-nodejs-streams/"
"http://bites.goodeggs.com/posts/selenium-webdriver-nodejs-tutorial/"
"http://tutorialzine.com/2015/01/your-first-node-webkit-app/"
"http://psteeleidem.com/node-module-factory-pattern/"
"https://nodesource.com/blog/understanding-the-nodejs-event-loop"
"https://gist.github.com/hueniverse/a06f6315ea736ed1b46d"
"http://nodejs.blog.br/2015/01/using-nodejs-with-mysql"
"http://www.sitepoint.com/deploying-heroku-using-gulp-node-git/"
"http://mherman.org/blog/2015/02/12/postgresql-and-nodejs/"
"http://blog.robertonodi.me/managing-files-with-node-js-and-mongodb-gridfs/"
"http://blog.justonepixel.com/geek/2015/02/15/batch-operations-writable-streams/"
"http://www.datastax.com/dev/blog/nodejs-cassandra-javascript-type-support"
"https://engineering.gosquared.com/optimise-node-http-server"
"https://raygun.io/blog/2015/03/node-performance-hapi-express-js-restify/"
"https://egghead.io/lessons/nodejs-first-api-with-node-js-express-and-mongodb"
"https://strongloop.com/strongblog/nodejs-testing-documenting-apis-mocha-acquit/"
"http://www.bennadel.com/blog/2797-creating-objects-with-a-null-prototype-in-node-js.htm"
"http://rancher.com/building-a-nodejs-app-using-mongodb-and-rancher-part-1/"
"http://vansande.org/2015/03/22/unit_testing_with_mocks_in_node_js"
"https://sendgrid.com/docs/Utilities/code_workshop.html"
"http://www.nearform.com/nodecrunch/node-js-develop-debugging-techniques/"
"http://code.tutsplus.com/tutorials/nodejs-succinctly-arrays--cms-23291"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-getting-started"
"http://omarfouad.com/blog/2015/03/21/advanced-angularjs-structure-with-gulp-node-and-browserify/"
"http://blog.hiphipjorge.com/tutorial-building-a-realtime-image-sharing-app/"
"https://semaphoreci.com/community/tutorials/getting-started-with-node-js-and-jasmine"
"http://www.sys-con.com/node/3318327",
"https://www.airpair.com/node.js/posts/microservices-nodejs-containers"
"http://www.sitepoint.com/getting-started-wintersmith-nodejs-static-site-generator/"
"https://keymetrics.io/2015/03/26/pm2-clustering-made-easy/"
"http://blog.ragingflame.co.za/2015/4/1/how-i-build-nodejs-applications"
"http://rancher.com/nodejs-mongodb-application-with-rancher-part-2/"
"https://keymetrics.io/2015/03/26/pm2-clustering-made-easy/",
"http://blog.npmjs.org/post/115305091285/introducing-the-npm-semantic-version-calculator"
"http://www.sitepoint.com/6-nodejs-static-site-generators/"
"http://code.tutsplus.com/articles/social-authentication-for-nodejs-apps-with-passport--cms-21618"
],
"Socket.io":[
"http://psitsmike.com/2011/10/node-js-and-socket-io-multiroom-chat-tutorial/"
"http://www.giacomovacca.com/2015/02/websockets-over-nodejs-from-plain-to.html"
"http://tutorialzine.com/2015/02/smartphone-remote-control-for-presentations/"
"http://knowthen.com/episode-10-building-realtime-applications-just-got-easy/"
]
"BackBonejs":[
"http://www.zsoltnagy.eu/ten-tips-for-writing-maintainable-code-in-backbonejs/"
"http://danhough.com/blog/backbone-mixins/"
"https://roost.bocoup.com/2015/austin/blog/why-backbone/"
"http://www.webcodegeeks.com/javascript/backbone-js/backbone-js-events-example"
"https://code.mixpanel.com/2015/04/08/straightening-our-backbone-a-lesson-in-event-driven-ui-development/"
"http://www.webcodegeeks.com/javascript/backbone-js/backbone-js-events-example/"
],
"Webrtc":[
"http://sdelements.github.io/lets-chat/"
"http://thejackalofjavascript.com/node-webkit-webrtc-and-angularjs-a-video-chat-client/"
],
"Ionic":[
"https://devcenter.appery.io/2015/05/new-ionic-angularjs-tutorial/"
"http://www.gajotres.net/storing-data-in-ionic-framework-and-onsenui/"
"http://java.dzone.com/articles/using-mobilefirst-sql-adapters"
"http://thejackalofjavascript.com/ionic-twilio-and-node-scheduler-part-1/"
"http://www.webspeaks.in/2015/03/html5-offline-mobile-app-using-ionic-pouchdb.html"
"http://devdactic.com/shrinking-headers-with-ionic/"
],
"Phonegap":[],
"Knockout":[],
"Jquery":[
"http://www.sitepoint.com/10-jqueryhtmlcss-presentation-slides-plugins/"
"http://jquerymy.com/"
"http://dimsemenov.com/plugins/magnific-popup/"
"http://www.jqueryrain.com/demo/jquery-file-upload/"
"http://blueimp.github.io/jQuery-File-Upload/index.html"
"http://sachinchoolur.github.io/lightslider/"
"http://java.dzone.com/articles/packaging-jquery-mobile"
"http://genius.it/ejohn.org/blog/annotated-version-of-the-original-jquery-release/"
"http://dailyjs.com/2015/03/30/flowtype-jquery-frontend/"
"http://www.webcodegeeks.com/javascript/jquery/jquery-dialog-example/"
],
"TYpeScript":[
"http://blogs.msdn.com/b/typescript/archive/2015/07/20/announcing-typescript-1-5.aspx"
"http://jj09.net/building-large-scale-web-applications-with-typescript/"
"http://blogs.msdn.com/b/typescript/archive/2015/04/30/announcing-typescript-1-5-beta.aspx"
"http://blog.mgechev.com/2015/04/06/angular2-first-impressions/"
"http://cacodaemon.de/index.php?id=67
"http://www.infoq.com/news/2015/04/typescript-1-5"
"https://www.airpair.com/typescript/posts/typescript-development-with-gulp-and-sublime-text"
],
"CofferScript":[
""
"http://www.developwithpurpose.com/coffeescript-is-dead-long-live-coffeescript/"
],
"Gulp":[
"http://www.webcodegeeks.com/javascript/node-js/boilerplate-template-node-js-backbone-using-gulp-browserify/"
"https://bugsnag.com/blog/replacing-the-rails-asset-pipeline-with-gulp"
"http://www.angularonrails.com/how-to-wire-up-ruby-on-rails-and-angularjs-as-a-single-page-application-gulp-version/"
]
"ECMASCript":[
"http://news.softpedia.com/news/ECMAScript-6-the-Latest-Version-of-JavaScript-Finally-Released-484657.shtml"
"http://teeohhem.com/why-destructuring-is-a-terrible-idea-in-es6/"
"http://es6katas.org/"
"http://raganwald.com/2015/06/04/classes-are-expressions.html"
"https://medium.com/ecmascript-2015/es6-classes-and-inheritance-607804080906"
"http://www.slideshare.net/NeilGreen1/type-script-vs-coffeescript-vs-es6"
"http://reactjsnews.com/es6-gotchas/"
"http://es6-features.org/#Constants"
"http://blog.codepen.io/2015/05/19/babel-now-on-codepen-write-es6-javascript-and-react-jsx/"
"http://codemix.com/blog/why-babel-matters"
"http://babeljs.io/blog/2015/05/14/function-bind/"
"https://medium.com/@mrzepinski/es6-destructuring-13ca399f993a"
"https://webpack.github.io/docs/hot-module-replacement.html"
"http://shiroyasha.github.io/oop-in-the-age-of-es6.html"
"http://www.2ality.com/2015/04/numbers-math-es6.html"
"http://rangle.io/blog/understanding-the-real-advantages-of-using-eslint/"
"http://martyjs.org/guides/fetching-state/index.html"
"http://www.2ality.com/2015/04/deploying-es6.html"
"http://www.noupe.com/development/understanding-ecmascript-6-class-and-inheritance-90966.html"
"http://www.2ality.com/2015/04/node-es6-transpiled.html"
"http://www.ifwe.co/code/posts/easing-the-transition-to-es6/"
"http://www.sitepoint.com/simplifying-asynchronous-coding-es7-async-functions/"
"http://tech.pro/blog/6742/callback-to-future-functor-applicative-monad"
"http://es6-features.org/"
"http://www.2ality.com/2015/04/webpack-es6.html"
"http://raganwald.com/2015/04/01/partial-application.html"
"http://schempy.com/async_tasks_with_es6_generators"
"http://pouchdb.com/2015/03/05/taming-the-async-beast-with-es7.html"
"http://derickbailey.com/2015/03/12/serially-iterating-an-array-asynchronously/"
"http://www.2ality.com/2015/03/babel-on-node.html"
"http://www.sitepoint.com/understanding-ecmascript-6-class-inheritance/"
"http://babeljs.io/blog/2015/03/31/5.0.0/"
"http://wiki.ecmascript.org/doku.php?id=harmony%3Aspecification_drafts#march_17_2015_rev_36_release_candidate_3"
"http://tonyfreed.com/blog/top_javascript_interview_question_2015"
"http://www.2ality.com/2015/03/es6-generators.html"
],
"D3":[
"http://www.datavizualization.com/blog/d3-data-visualizations-case-study-apple-patents"
]
"Meteor":[
"https://www.twilio.com/blog/2015/07/building-a-group-messaging-app-with-meteor-mongodb-and-twilio.html?utm_content=18576446&utm_medium=social&utm_source=twitter"
"https://rocket.chat/"
"http://meteortips.com/second-meteor-tutorial"
"https://scotch.io/tutorials/building-a-slack-clone-in-meteor-js-part-4-channels-and-chat-rooms?"
"https://www.compose.io/articles/meteor-sql-and-other-databases"
"http://blog.differential.com/scaling-meteor-to-20000-users-in-7-days/"
"https://www.youtube.com/playlist?list=PLLnpHn493BHECNl9I8gwos-hEfFrer7TV"
"http://learntocodewith.me/women/ciara-burkett/"
"https://medium.com/@grigi0/todomvc-meteor-react-with-router-animations-ae3836efe0b1"
"http://kipalog.com/posts/A93eb-IvcpGoFM1FS1LFgQ"
"https://www.youtube.com/watch?v=kI_GLX2Qq-Y&feature=youtu.be&list=PLTUf4ytkmI8TntQ72WVvQIHKja4KaAXUc"
"http://meteortips.com/"
"http://dataconomy.com/meteor-unleashes-1-1-allowing-one-codebase-for-windows-os-x-and-linux/"
"https://www.youtube.com/watch?v=-QtrkXKvQFc&feature=youtu.be&list=PLTUf4ytkmI8Q3mSRIrkPfjkERTxHopzKG"
"http://docs.meteor.com/#/full/blaze_render"
"http://blog.percolatestudio.com/engineering/reactive-user-interfaces/"
"https://medium.com/@stubailo/data-flow-from-the-database-to-the-ui-three-layers-of-meteor-d5e208b466c3"
"http://blog.differential.com/this-week-in-meteor-8/"
"https://www.youtube.com/watch?v=akWn_WD2cyA"
"http://joshowens.me/getting-started-with-meteor-js/"
"https://www.meteor.com/blog/2015/03/17/meteor-104-mongo-cordova-template-subscriptions"
],
"Mean":[
"http://engineering.paiza.io/entry/2015/07/09/154028"
"http://www.sitepoint.com/creating-a-web-app-with-matlab-and-the-mean-stack/"
"https://hackhands.com/how-to-get-started-on-the-mean-stack/"
],
"FOAM":[
"http://foam-framework.github.io/foam/"
]
"Others":[
"https://codewords.recurse.com/issues/three/pseudosynchronous-javascript"
"www.computing.co.uk/ctg/analysis/2414546/why-the-washington-post-chose-mongodb-over-couchbase-for-its-submission-platform-app"
"http://osvaldas.info/detecting-css-animation-transition-end-with-javascript"
"http://www.sitepoint.com/9-javascript-libraries-working-with-local-storage/"
"https://mbebenita.github.io/LLJS/"
"http://angular-tips.com/blog/2015/06/using-angular-1-dot-x-with-es6-and-webpack/"
"https://leanpub.com/exploring-es6/read"
"http://www.2ality.com/2015/06/web-assembly.htmlhttp://www.2ality.com/2015/06/web-assembly.html"
"http://www.infoworld.com/article/2937159/application-development/mean-vs-lamp-your-next-programming-project.html"
"https://hacks.mozilla.org/2015/06/es6-in-depth-collections/"
"https://blog.engineyard.com/2015/7-patterns-refactor-javascript-query-objects"
"http://influxdb.com/blog/2015/06/03/InfluxDB_clustering_design.html"
"http://www.sitepoint.com/testing-javascript-jasmine-travis-karma/"
"http://ideasintosoftware.com/practical-guide-to-promises/"
"http://babeljs.io/users/#React"
"http://ryanmorr.com/true-hash-maps-in-javascript/"
"http://tech.pro/tutorial/1453/7-javascript-basics-many-developers-aren-t-using-properly"
"http://www.sitepoint.com/introduction-functional-javascript/"
"http://www.sitepoint.com/using-closure-space-create-real-private-members-javascript/"
"https://back.io/#docs/basics"
"http://java.dzone.com/articles/front-end-logging-made-easy"
"http://java.dzone.com/articles/9-unavoidable-reasons-which-0"
"http://www.sitepoint.com/comparison-javascript-http-libraries/"
"http://code.tutsplus.com/tutorials/javascript-loop-optimization--cms-23997"
"http://java.dzone.com/articles/php-dumper-using-websockets"
"www.infoq.com/research/javascript-frameworks-2015"
"http://dailyjs.com/2015/05/01/flyd-reactive-functional-programming"
"http://www.theregister.co.uk/2015/05/01/google_password_alert_easily_disabled_6_lines_javascript/"
"https://hacks.mozilla.org/2015/04/es6-in-depth-iterators-and-the-for-of-loop/"
"https://www.codepunker.com/blog/the-basics-of-variable-scope-in-javascript"
"http://www.infoq.com/news/2015/04/t3-javascript-framework-box"
"https://laracasts.com/lessons"
"http://thatmikeflynn.com/egg.js/"
"https://www.box.com/blog/introducing-t3-enabling-large-scale-javascript-applications/"
"http://www.rq.crockford.com/"
"http://www.webcodegeeks.com/javascript/pack-it-up-pack-it-in/"
"http://dailyjs.com/2015/04/14/custom-elements-function-plot/"
"https://blog.korelogic.com/blog/2015/01/12/javascript_deobfuscation"
"http://noeticforce.com/best-Javascript-frameworks-for-single-page-modern-web-applications"
"http://codingatwork.com/2015/03/promises-cookbook/"
"http://jlongster.com/Stop-Trying-to-Catch-Me"
"http://examples.javacodegeeks.com/enterprise-java/rest/resteasy/json-example-with-resteasy-jackson/"
"http://www.webcodegeeks.com/javascript/javascript-promises-essentials/"
"http://www.json2yaml.com/"
"https://www.airpair.com/sendgrid/posts/making-a-dashboard-with-keen-io-sendgrid-events"
"http://tholman.com/elevator.js/"
"http://codecanyon.net/item/sismo-navigation/10985032"
"http://www.sitepoint.com/simple-inheritance-javascript/"
"https://medium.com/@jyotiska/json-vs-simplejson-vs-ujson-a115a63a9e26"
"http://codejets.com/javascript-best-practices-part-1/"
"https://javascriptweblog.wordpress.com/2015/01/05/if-hemingway-wrote-javascript-explained/"
"http://discourse.codecombat.com/t/javascript-this-vs-self/3143"
"https://developers.google.com/v8/experiments"
"http://www.sys-con.com/node/3313595"
"https://twitter.com/gdi2290/status/578797776760385537"
"https://everystack.io/#!/catalog/components/socketstream"
"http://synaptic.juancazala.com/#/"
"http://richardtier.com/2015/03/18/memoizing-ajax-requests-without-the-data-inconsistency/"
"https://everystack.io/#!/catalog/components/noflo"
"http://burakkanber.com/blog/machine-learning-full-text-search-in-javascript-relevance-scoring/"
"http://www.infoq.com/news/2015/03/lodash-utility-library"
"https://medium.com/@slsoftworks/javascript-world-domination-af9ca2ee5070"
"http://www.webcodegeeks.com/javascript/dependency-injection-explained-via-javascript/"
"http://www.infoworld.com/article/2901436/internet/faster-web-page-loading-without-javascript.html?phint=newt%3Dinfoworld_todays_blogs&phint=idg_eid%3D4b6859d3cf29bea2fdce1fcba704bf5e#tk.IFWNLE_nlt_blogs_2015-03-25"
"http://blog.chromium.org/2015/03/new-javascript-techniques-for-rapid.html"
"http://jakearchibald.com/2015/thats-so-fetch/"
"https://developer.atlassian.com/blog/2015/03/i-keep-my-promises/"
"https://developer.mozilla.org/en-US/Learn"
"http://www.sitepoint.com/building-mobile-javascript-powered-audio-player/"
"http://blog.bitovi.com/introducing-stealjs/"
"http://www.conductor.com/nightlight/guide-publishing-javascript-open-source-projects/"
"https://medium.com/clayallsopp/a-dynamic-crazy-native-mobile-future-powered-by-javascript-70f2d56b1987"
"https://www.airpair.com/javascript/posts/unit-testing-ajax-requests-with-mocha"
"http://tonyfreed.com/blog/introduction_to_fetch_api"
"http://blog.webkid.io/javascript-chart-libraries/",
"http://caspervonb.com/javascript/an-overview-of-javascript-in-2015-ecmascript-6/",
"http://educationware.net/exercism-io-become-a-better-programmer/"
"https://everystack.io/#!/catalog/components/davis-js"
"http://nicolaiarocci.com/new-releases-for-cerberus-and-eve/"
"https://frontendmasters.com/courses/advanced-javascript/"
"http://arasatasaygin.github.io/is.js/"
"http://www.objectplayground.com"
"http://www.webcodegeeks.com/javascript/javascript-history-back-example/"
"https://www.twilio.com/blog/2015/03/create-a-browser-based-photobooth-with-javascript-php-and-twilio.html"
],
"Compiler&Interpyer":[
"http://howjs.com/zFiG/2"
]
"Reactjs":[
"http://binarylies.ghost.io/reactjs-nestable-menu-manager/"
"http://brentvatne.ca/react-native-newsletter/28-06-2015.html"
"http://www.sitepoint.com/video-understanding-react-events/"
"http://antjanus.com/blog/web-development-tutorials/front-end-development/comprehensive-beginners-guide-to-reactjs/"
"https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html"
"http://jxnblk.com/react-icons/"
"https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html"
<<<<<<< Updated upstream
=======
"React":[
"https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html"
<<<<<<< Updated upstream
<<<<<<< Updated upstream
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
"http://www.christianalfoni.com/articles/2015_05_18_Cerebral-developer-preview"
"https://medium.com/javascript-scene/jsx-looks-like-an-abomination-1c1ec351a918"
"http://www.sitepoint.com/video-getting-started-react/"
"http://blog.atom.io/2015/05/15/new-autocomplete.html"
"http://firstdoit.com/react-1/"
"http://www.sitepoint.com/immutability-react/"
"https://facebook.github.io/react/blog/2015/05/08/react-v0.13.3.html"
"http://www.tabforacause.org/blog/2015/01/29/using-reactjs-and-application-cache-fast-synced-app/"
"https://facebook.github.io/react/blog/2015/05/01/graphql-introduction.html"
"http://brentvatne.ca/react-native-newsletter/23-04-2015.html"
"http://www.smashingmagazine.com/2015/04/21/react-to-the-future-with-isomorphic-apps/"
"http://arc.applause.com/2015/04/21/facebook-app-developers-react-native/"
"https://auth0.com/blog/2015/04/09/adding-authentication-to-your-react-flux-app/"
"http://facebook.github.io/flux/docs/overview.html#content"
"http://blog.risingstack.com/the-react-way-getting-started-tutorial/"
"https://scotch.io/courses/getting-started-with-facebooks-react-js"
"https://reactjsnews.com/building-components-with-react-js-and-flux/"
"https://codepicnic.com/posts/a-quick-start-to-react-in-4-steps-iii-f2217062e9a397a1dca429e7d70bc6ca/"
"https://codepicnic.com/posts/a-quick-start-to-react-in-4-steps-i-a5e00132373a7031000fd987a3c9f87b/"
"http://zippyui.github.io/react-datagrid/#/"
"http://fluxxor.com/what-is-flux.html"
"http://attackofzach.com/react-components-for-google-maps-part-2/"
"http://blog.tryolabs.com/2015/04/07/react-examples-mailbox"
"https://medium.com/@PhilPlckthun/react-to-this-nonsense-and-move-on-3d9f9111a77d"
"http://react.parts/native-ios"
"http://almostobsolete.net/react-native/custom-ios-views-with-react-native.html"
"http://madscript.com/halogen/"
"http://moduscreate.com/react_native_custom_components_ios/"
"http://scotch.io/tutorials/javascript/build-a-real-time-twitter-stream-with-node-and-react-js"
"https://www.codementor.io/reactjs/tutorial"
"https://scotch.io/tutorials/learning-react-getting-started-and-concepts"
"http://tutorialzine.com/2014/07/5-practical-examples-for-learning-facebooks-react-framework/"
"https://medium.com/@dan_abramov/two-weird-tricks-that-fix-react-7cf9bbdef375"
"http://www.bimeanalytics.com/engineering-blog/you-put-your-react-into-my-angular/"
"https://facebook.github.io/react/blog/2015/03/19/building-the-facebook-news-feed-with-relay.html"
"http://facebook.github.io/react/blog/2015/03/19/building-the-facebook-news-feed-with-relay.html"
"http://swizec.com/reactd3js/"
"https://www.airpair.com/javascript/posts/creating-container-components-part-1-shadow-dom"
"http://blogs.atlassian.com/2014/08/flux-architecture-step-by-step/"
"https://reactjsnews.com/getting-started-with-flux/"
"https://github.com/RickWong/react-transmit"
"http://blog.parse.com/2015/03/25/parse-and-react-shared-chemistry/"
"http://adtmag.com/articles/2015/03/26/facebook-releases-react-native-for-building-native-mobile-apps-in-javascript.aspx"
"http://brianpfeil.com/react-native-initial-thoughts/"
"https://www.youtube.com/watch?v=X6YbAKiLCLU&list=PLb0IAmt7-GS1_7FcSupSJoUe21tF12eu8&index=1"
"https://weluse.de/blog/first-impressions-on-react-native.html"
"http://facebook.github.io/react/blog/2015/03/30/community-roundup-26.html"
"http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript"
"http://www.syncano.com/getting-started-reactjs-tutorial/",
"http://react-components.com/",
"http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript"
"https://www.codementor.io/reactjs/tutorial/understanding-react-js-rendering"
"https://www.airpair.com/node.js/posts/nodejs-framework-comparison-express-koa-hapi"
],
"Express":[
"http://webapplog.com/jade-handlebars-express"
"http://throwerr.com/2015/05/15/get-started-with-routing-in-express-4-0/"
"http://webapplog.com/url-parameters-and-routing-in-express-js/"
"https://stormpath.com/blog/build-nodejs-express-stormpath-app/%20weekly&utm_medium=email&utm_campaign=express%20tutorial"
"https://blog.nraboy.com/2015/01/session-management-expressjs-web-application/"
"http://mherman.org/blog/2015/01/31/local-authentication-with-passport-and-express-4/#.VNKnnfWsWIR"
"http://nodejs.blog.br/2015/02/caching-views-redis-express-framework"
"https://www.airpair.com/javascript/complete-expressjs-nodejs-mongodb-crud-skeleton"
],
"Sails":[
"http://www.hutchinson.io/ember-and-sails-js-getting-started/"
"http://www.ultrasaurus.com/2015/01/getting-started-sailsjs/"
"http://sanestack.com/"
"https://www.digitalocean.com/community/tutorials/how-to-create-an-node-js-app-using-sails-js-on-an-ubuntu-vps"
"https://everystack.io/#!/catalog/components/sails"
],
"Phantomjs":[
"http://engineering.shapesecurity.com/2015/01/detecting-phantomjs-based-visitors.html"
]
"Cylon.js":[
"http://cylonjs.com/blog/2015/04/08/cylon-1.0.0/"
]
"Nodejs":[
"http://cryto.net/~joepie91/blog/2015/05/14/using-promises-bluebird-with-express/"
"http://danialk.github.io/blog/2013/02/20/simple-authentication-in-nodejs/"
"https://www.airpair.com/javascript/posts/the-chemical-wedding-of-rethinkdb-and-nodejs"
"https://www.airpair.com/javascript/posts/using-rethinkdb-with-expressjs"
"https://www.youtube.com/watch?v=LFw_wPcIm8k&feature=youtu.be"
"https://nodesource.com/blog/was-this-trip-really-necessary"
"http://www.passportjs.org/
"http://blog.turret.io/hmac-in-go-python-ruby-php-and-nodejs"
"https://blog.indutny.com/c.cpp-in-node"
"https://changelog.com/155/"
"https://changelog.com/155/"
"http://java.dzone.com/articles/websockets-support-apache"
"http://blog.nodejs.org/2015/05/15/the-nodejs-foundation-benefits-all/"
"https://medium.com/@nodesource/node-and-arm-b5e3eebf449"
"http://tech.pro/tutorial/6781/series-getting-started-node-part-2-basic-routing"
"https://www.airpair.com/docker/posts/getting-started-with-docker-for-the-nodejs-dev"
"http://binary-studio.com/2015/04/16/handle-http-code-express-like-pro"
"https://semaphoreci.com/community/tutorials/getting-started-with-node-js-and-mocha"
"http://js-for.ninja/simple-way-to-manage-local-node-module-using-npm-link.html"
"https://semaphoreci.com/community/tutorials/how-to-deploy-node-js-applications-with-capistrano"
"http://www.jayway.com/2015/04/13/600k-concurrent-websocket-connections-on-aws-using-node-js/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-node-mongodb-socket/"
"http://www.javacodegeeks.com/2013/12/node-js-synchronous-and-asynchronous-functions.html"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-connecting-websockets/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-chatroom-ui-bootstrap/"
"http://www.mongodb.com/blog/post/introducing-version-40-mongoose-nodejs-odm"
"http://www.sitepoint.com/building-recipe-search-site-angular-elasticsearch/"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-getting-started/"
"https://strongloop.com/strongblog/node-js-performance-heap-profiling-tip/"
"https://strongloop.com/strongblog/node-js-performance-tip-of-the-week-memory-leak-diagnosis/"
"http://www.nearform.com/nodecrunch/node-js-develop-debugging-techniques/"
"http://blogs.ancestry.com/techroots/scaling-node-js-in-the-enterprise/"
"http://www.robotlovesyou.com/bdd-tdd/"
"http://code.tutsplus.com/tutorials/multi-instance-nodejs-app-in-paas-using-redis-pubsub--cms-22239"
"https://medium.com/@Philmod/debugging-node-js-29b2097df36c"
"http://blog.backand.com/github-webhook-node/"
"http://www.sitepoint.com/basics-node-js-streams/"
"https://stormpath.com/blog/everything-you-ever-wanted-to-know-about-node-dot-js-sessions/"
"http://futurice.com/blog/reactive-mvc-and-the-virtual-dom"
"http://blog.risingstack.com/functional-reactive-programming-with-the-power-of-nodejs-streams/"
"http://bites.goodeggs.com/posts/selenium-webdriver-nodejs-tutorial/"
"http://tutorialzine.com/2015/01/your-first-node-webkit-app/"
"http://psteeleidem.com/node-module-factory-pattern/"
"https://nodesource.com/blog/understanding-the-nodejs-event-loop"
"https://gist.github.com/hueniverse/a06f6315ea736ed1b46d"
"http://nodejs.blog.br/2015/01/using-nodejs-with-mysql"
"http://www.sitepoint.com/deploying-heroku-using-gulp-node-git/"
"http://mherman.org/blog/2015/02/12/postgresql-and-nodejs/"
"http://blog.robertonodi.me/managing-files-with-node-js-and-mongodb-gridfs/"
"http://blog.justonepixel.com/geek/2015/02/15/batch-operations-writable-streams/"
"http://www.datastax.com/dev/blog/nodejs-cassandra-javascript-type-support"
"https://engineering.gosquared.com/optimise-node-http-server"
"https://raygun.io/blog/2015/03/node-performance-hapi-express-js-restify/"
"https://egghead.io/lessons/nodejs-first-api-with-node-js-express-and-mongodb"
"https://strongloop.com/strongblog/nodejs-testing-documenting-apis-mocha-acquit/"
"http://www.bennadel.com/blog/2797-creating-objects-with-a-null-prototype-in-node-js.htm"
"http://rancher.com/building-a-nodejs-app-using-mongodb-and-rancher-part-1/"
"http://vansande.org/2015/03/22/unit_testing_with_mocks_in_node_js"
"https://sendgrid.com/docs/Utilities/code_workshop.html"
"http://www.nearform.com/nodecrunch/node-js-develop-debugging-techniques/"
"http://code.tutsplus.com/tutorials/nodejs-succinctly-arrays--cms-23291"
"http://www.sitepoint.com/build-node-js-powered-chatroom-web-app-getting-started"
"http://omarfouad.com/blog/2015/03/21/advanced-angularjs-structure-with-gulp-node-and-browserify/"
"http://blog.hiphipjorge.com/tutorial-building-a-realtime-image-sharing-app/"
"https://semaphoreci.com/community/tutorials/getting-started-with-node-js-and-jasmine"
"http://www.sys-con.com/node/3318327",
"https://www.airpair.com/node.js/posts/microservices-nodejs-containers"
"http://www.sitepoint.com/getting-started-wintersmith-nodejs-static-site-generator/"
"https://keymetrics.io/2015/03/26/pm2-clustering-made-easy/"
"http://blog.ragingflame.co.za/2015/4/1/how-i-build-nodejs-applications"
"http://rancher.com/nodejs-mongodb-application-with-rancher-part-2/"
"https://keymetrics.io/2015/03/26/pm2-clustering-made-easy/",
"http://blog.npmjs.org/post/115305091285/introducing-the-npm-semantic-version-calculator"
"http://www.sitepoint.com/6-nodejs-static-site-generators/"
"http://code.tutsplus.com/articles/social-authentication-for-nodejs-apps-with-passport--cms-21618"
],
"Socket.io":[
"http://psitsmike.com/2011/10/node-js-and-socket-io-multiroom-chat-tutorial/"
"http://www.giacomovacca.com/2015/02/websockets-over-nodejs-from-plain-to.html"
"http://tutorialzine.com/2015/02/smartphone-remote-control-for-presentations/"
"http://knowthen.com/episode-10-building-realtime-applications-just-got-easy/"
]
"BackBonejs":[
"https://medium.com/@victordoss/building-backbone-apps-using-flux-f656fd8a873a"
"http://www.zsoltnagy.eu/ten-tips-for-writing-maintainable-code-in-backbonejs/"
"http://danhough.com/blog/backbone-mixins/"
"https://roost.bocoup.com/2015/austin/blog/why-backbone/"
"http://www.webcodegeeks.com/javascript/backbone-js/backbone-js-events-example"
"https://code.mixpanel.com/2015/04/08/straightening-our-backbone-a-lesson-in-event-driven-ui-development/"
"http://www.webcodegeeks.com/javascript/backbone-js/backbone-js-events-example/"
],
"Webrtc":[
"http://www.sitepoint.com/using-the-media-capture-api/"
"http://sdelements.github.io/lets-chat/"
"http://thejackalofjavascript.com/node-webkit-webrtc-and-angularjs-a-video-chat-client/"
],
"Ionic":[
"https://devcenter.appery.io/2015/05/new-ionic-angularjs-tutorial/"
"http://www.gajotres.net/storing-data-in-ionic-framework-and-onsenui/"
"http://java.dzone.com/articles/using-mobilefirst-sql-adapters"
"http://thejackalofjavascript.com/ionic-twilio-and-node-scheduler-part-1/"
"http://www.webspeaks.in/2015/03/html5-offline-mobile-app-using-ionic-pouchdb.html"
"http://devdactic.com/shrinking-headers-with-ionic/"
],
"Phonegap":[],
"Knockout":[],
"Jquery":[
"http://www.sitepoint.com/10-jqueryhtmlcss-presentation-slides-plugins/"
"http://jquerymy.com/"
"http://dimsemenov.com/plugins/magnific-popup/"
"http://www.jqueryrain.com/demo/jquery-file-upload/"
"http://blueimp.github.io/jQuery-File-Upload/index.html"
"http://sachinchoolur.github.io/lightslider/"
"http://java.dzone.com/articles/packaging-jquery-mobile"
"http://genius.it/ejohn.org/blog/annotated-version-of-the-original-jquery-release/"
"http://dailyjs.com/2015/03/30/flowtype-jquery-frontend/"
"http://www.webcodegeeks.com/javascript/jquery/jquery-dialog-example/"
],
"TYpeScript":[
"http://jj09.net/building-large-scale-web-applications-with-typescript/"
"http://blogs.msdn.com/b/typescript/archive/2015/04/30/announcing-typescript-1-5-beta.aspx"
"http://blog.mgechev.com/2015/04/06/angular2-first-impressions/"
"http://cacodaemon.de/index.php?id=67
"http://www.infoq.com/news/2015/04/typescript-1-5"
"https://www.airpair.com/typescript/posts/typescript-development-with-gulp-and-sublime-text"
],
"CofferScript":[
""
"http://www.developwithpurpose.com/coffeescript-is-dead-long-live-coffeescript/"
],
"Gulp":[
"http://www.webcodegeeks.com/javascript/node-js/boilerplate-template-node-js-backbone-using-gulp-browserify/"
"https://bugsnag.com/blog/replacing-the-rails-asset-pipeline-with-gulp"
"http://www.angularonrails.com/how-to-wire-up-ruby-on-rails-and-angularjs-as-a-single-page-application-gulp-version/"
]
"ECMASCript":[
"https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841"
"http://www.2ality.com/2015/06/tail-call-optimization.html"
"https://leanpub.com/b/learnes6"
"http://raganwald.com/2015/06/26/decorators-in-es7.html"
"http://blog.keithcirkel.co.uk/metaprogramming-in-es6-symbols/"
"http://news.softpedia.com/news/ECMAScript-6-the-Latest-Version-of-JavaScript-Finally-Released-484657.shtml"
"http://teeohhem.com/why-destructuring-is-a-terrible-idea-in-es6/"
"http://es6katas.org/"
"http://news.softpedia.com/news/ECMAScript-6-the-Latest-Version-of-JavaScript-Finally-Released-484657.shtml"
"http://teeohhem.com/why-destructuring-is-a-terrible-idea-in-es6/"
"http://raganwald.com/2015/06/04/classes-are-expressions.html"
"https://medium.com/ecmascript-2015/es6-classes-and-inheritance-607804080906"
"http://www.slideshare.net/NeilGreen1/type-script-vs-coffeescript-vs-es6"
"http://reactjsnews.com/es6-gotchas/"
"http://es6-features.org/#Constants"
"http://blog.codepen.io/2015/05/19/babel-now-on-codepen-write-es6-javascript-and-react-jsx/"
"http://codemix.com/blog/why-babel-matters"
"http://babeljs.io/blog/2015/05/14/function-bind/"
"https://medium.com/@mrzepinski/es6-destructuring-13ca399f993a"
"https://webpack.github.io/docs/hot-module-replacement.html"
"http://shiroyasha.github.io/oop-in-the-age-of-es6.html"
"http://www.2ality.com/2015/04/numbers-math-es6.html"
"http://rangle.io/blog/understanding-the-real-advantages-of-using-eslint/"
"http://martyjs.org/guides/fetching-state/index.html"
"http://www.2ality.com/2015/04/deploying-es6.html"
"http://www.noupe.com/development/understanding-ecmascript-6-class-and-inheritance-90966.html"
"http://www.2ality.com/2015/04/node-es6-transpiled.html"
"http://www.ifwe.co/code/posts/easing-the-transition-to-es6/"
"http://www.sitepoint.com/simplifying-asynchronous-coding-es7-async-functions/"
"http://tech.pro/blog/6742/callback-to-future-functor-applicative-monad"
"http://es6-features.org/"
"http://www.2ality.com/2015/04/webpack-es6.html"
"http://raganwald.com/2015/04/01/partial-application.html"
"http://schempy.com/async_tasks_with_es6_generators"
"http://pouchdb.com/2015/03/05/taming-the-async-beast-with-es7.html"
"http://derickbailey.com/2015/03/12/serially-iterating-an-array-asynchronously/"
"http://www.2ality.com/2015/03/babel-on-node.html"
"http://www.sitepoint.com/understanding-ecmascript-6-class-inheritance/"
"http://babeljs.io/blog/2015/03/31/5.0.0/"
"http://wiki.ecmascript.org/doku.php?id=harmony%3Aspecification_drafts#march_17_2015_rev_36_release_candidate_3"
"http://tonyfreed.com/blog/top_javascript_interview_question_2015"
"http://www.2ality.com/2015/03/es6-generators.html"
],
"D3":[
"http://www.datavizualization.com/blog/d3-data-visualizations-case-study-apple-patents"
]
"Meteor":[
"http://angular-meteor.com/tutorials/angular1/bootstrapping"
"http://info.meteor.com/blog/whats-coming-in-meteor-12-and-beyond"
"http://meteortips.com/second-meteor-tutorial"
"https://scotch.io/tutorials/building-a-slack-clone-in-meteor-js-part-4-channels-and-chat-rooms?"
"https://www.compose.io/articles/meteor-sql-and-other-databases"
"http://blog.differential.com/scaling-meteor-to-20000-users-in-7-days/"
"https://www.youtube.com/playlist?list=PLLnpHn493BHECNl9I8gwos-hEfFrer7TV"
"http://learntocodewith.me/women/ciara-burkett/"
"https://medium.com/@grigi0/todomvc-meteor-react-with-router-animations-ae3836efe0b1"
"http://kipalog.com/posts/A93eb-IvcpGoFM1FS1LFgQ"
"https://www.youtube.com/watch?v=kI_GLX2Qq-Y&feature=youtu.be&list=PLTUf4ytkmI8TntQ72WVvQIHKja4KaAXUc"
"http://meteortips.com/"
"http://dataconomy.com/meteor-unleashes-1-1-allowing-one-codebase-for-windows-os-x-and-linux/"
"https://www.youtube.com/watch?v=-QtrkXKvQFc&feature=youtu.be&list=PLTUf4ytkmI8Q3mSRIrkPfjkERTxHopzKG"
"http://docs.meteor.com/#/full/blaze_render"
"http://blog.percolatestudio.com/engineering/reactive-user-interfaces/"
"https://medium.com/@stubailo/data-flow-from-the-database-to-the-ui-three-layers-of-meteor-d5e208b466c3"
"http://blog.differential.com/this-week-in-meteor-8/"
"https://www.youtube.com/watch?v=akWn_WD2cyA"
"http://joshowens.me/getting-started-with-meteor-js/"
"https://www.meteor.com/blog/2015/03/17/meteor-104-mongo-cordova-template-subscriptions"
],
"Mean":[
"http://blog.codeship.com/running-mean-web-application-docker-containers-aws/"
"http://www.sitepoint.com/creating-a-web-app-with-matlab-and-the-mean-stack/"
"http://www.sitepoint.com/creating-a-web-app-with-matlab-and-the-mean-stack/"
"https://hackhands.com/how-to-get-started-on-the-mean-stack/"
],
"FOAM":[
"http://foam-framework.github.io/foam/"
]
"Others":[
"https://rreverser.com/es6-modules-are-dead-long-live-c-preprocessor/"
"https://curiosity-driven.org/monads-in-javascript"
"https://hacks.mozilla.org/2015/06/the-state-of-web-components/"
"http://www.sitepoint.com/improving-responsive-web-design-ress/"
"https://hacks.mozilla.org/2015/06/es6-in-depth-collections/"
"https://blog.engineyard.com/2015/7-patterns-refactor-javascript-query-objects"
"http://influxdb.com/blog/2015/06/03/InfluxDB_clustering_design.html"
"http://www.sitepoint.com/testing-javascript-jasmine-travis-karma/"
"http://ideasintosoftware.com/practical-guide-to-promises/"
"http://babeljs.io/users/#React"
"http://ryanmorr.com/true-hash-maps-in-javascript/"
"http://tech.pro/tutorial/1453/7-javascript-basics-many-developers-aren-t-using-properly"
"http://www.sitepoint.com/introduction-functional-javascript/"
"http://www.sitepoint.com/using-closure-space-create-real-private-members-javascript/"
"https://back.io/#docs/basics"
"http://java.dzone.com/articles/front-end-logging-made-easy"
"http://java.dzone.com/articles/9-unavoidable-reasons-which-0"
"http://www.sitepoint.com/comparison-javascript-http-libraries/"
"http://code.tutsplus.com/tutorials/javascript-loop-optimization--cms-23997"
"http://java.dzone.com/articles/php-dumper-using-websockets"
"www.infoq.com/research/javascript-frameworks-2015"
"http://dailyjs.com/2015/05/01/flyd-reactive-functional-programming"
"http://www.theregister.co.uk/2015/05/01/google_password_alert_easily_disabled_6_lines_javascript/"
"https://hacks.mozilla.org/2015/04/es6-in-depth-iterators-and-the-for-of-loop/"
"https://www.codepunker.com/blog/the-basics-of-variable-scope-in-javascript"
"http://www.infoq.com/news/2015/04/t3-javascript-framework-box"
"https://laracasts.com/lessons"
"http://thatmikeflynn.com/egg.js/"
"https://www.box.com/blog/introducing-t3-enabling-large-scale-javascript-applications/"
"http://www.rq.crockford.com/"
"http://www.webcodegeeks.com/javascript/pack-it-up-pack-it-in/"
"http://dailyjs.com/2015/04/14/custom-elements-function-plot/"
"https://blog.korelogic.com/blog/2015/01/12/javascript_deobfuscation"
"http://noeticforce.com/best-Javascript-frameworks-for-single-page-modern-web-applications"
"http://codingatwork.com/2015/03/promises-cookbook/"
"http://jlongster.com/Stop-Trying-to-Catch-Me"
"http://examples.javacodegeeks.com/enterprise-java/rest/resteasy/json-example-with-resteasy-jackson/"
"http://www.webcodegeeks.com/javascript/javascript-promises-essentials/"
"http://www.json2yaml.com/"
"https://www.airpair.com/sendgrid/posts/making-a-dashboard-with-keen-io-sendgrid-events"
"http://tholman.com/elevator.js/"
"http://codecanyon.net/item/sismo-navigation/10985032"
"http://www.sitepoint.com/simple-inheritance-javascript/"
"https://medium.com/@jyotiska/json-vs-simplejson-vs-ujson-a115a63a9e26"
"http://codejets.com/javascript-best-practices-part-1/"
"https://javascriptweblog.wordpress.com/2015/01/05/if-hemingway-wrote-javascript-explained/"
"http://discourse.codecombat.com/t/javascript-this-vs-self/3143"
"https://developers.google.com/v8/experiments"
"http://www.sys-con.com/node/3313595"
"https://twitter.com/gdi2290/status/578797776760385537"
"https://everystack.io/#!/catalog/components/socketstream"
"http://synaptic.juancazala.com/#/"
"http://richardtier.com/2015/03/18/memoizing-ajax-requests-without-the-data-inconsistency/"
"https://everystack.io/#!/catalog/components/noflo"
"http://burakkanber.com/blog/machine-learning-full-text-search-in-javascript-relevance-scoring/"
"http://www.infoq.com/news/2015/03/lodash-utility-library"
"https://medium.com/@slsoftworks/javascript-world-domination-af9ca2ee5070"
"http://www.webcodegeeks.com/javascript/dependency-injection-explained-via-javascript/"
"http://www.infoworld.com/article/2901436/internet/faster-web-page-loading-without-javascript.html?phint=newt%3Dinfoworld_todays_blogs&phint=idg_eid%3D4b6859d3cf29bea2fdce1fcba704bf5e#tk.IFWNLE_nlt_blogs_2015-03-25"
"http://blog.chromium.org/2015/03/new-javascript-techniques-for-rapid.html"
"http://jakearchibald.com/2015/thats-so-fetch/"
"https://developer.atlassian.com/blog/2015/03/i-keep-my-promises/"
"https://developer.mozilla.org/en-US/Learn"
"http://www.sitepoint.com/building-mobile-javascript-powered-audio-player/"
"http://blog.bitovi.com/introducing-stealjs/"
"http://www.conductor.com/nightlight/guide-publishing-javascript-open-source-projects/"
"https://medium.com/clayallsopp/a-dynamic-crazy-native-mobile-future-powered-by-javascript-70f2d56b1987"
"https://www.airpair.com/javascript/posts/unit-testing-ajax-requests-with-mocha"
"http://tonyfreed.com/blog/introduction_to_fetch_api"
"http://blog.webkid.io/javascript-chart-libraries/",
"http://caspervonb.com/javascript/an-overview-of-javascript-in-2015-ecmascript-6/",
"http://educationware.net/exercism-io-become-a-better-programmer/"
"https://everystack.io/#!/catalog/components/davis-js"
"http://nicolaiarocci.com/new-releases-for-cerberus-and-eve/"
"https://frontendmasters.com/courses/advanced-javascript/"
"http://arasatasaygin.github.io/is.js/"
"http://www.objectplayground.com"
"http://www.webcodegeeks.com/javascript/javascript-history-back-example/"
"https://www.twilio.com/blog/2015/03/create-a-browser-based-photobooth-with-javascript-php-and-twilio.html"
],
"Compiler&Interpyer":[
"http://howjs.com/zFiG/2"
]
"Framework":[
"http://jsblocks.com/"
]
"video":[
"https://www.youtube.com/watch?v=Mxalg0ZN5XY"
]
}