-
Notifications
You must be signed in to change notification settings - Fork 21
/
js.json
1615 lines (1615 loc) · 70.9 KB
/
js.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
{
"js": [
{
"url": "http://www.2ality.com/2013/07/es6-modules.html",
"title": "ECMAScript 6 modules: the future is now",
"tags": [
"ecmascript"
]
},
{
"url": "http://ejohn.org/apps/workshop/adv-talk/#0",
"title": "Things You Might Not Know About jQuery",
"tags": [
"jquery",
"slides"
]
},
{
"url": "http://coding.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user-experience/",
"title": "45+ New jQuery Techniques For Good User Experience",
"author": "Noura Yehia",
"tags": [
"jquery",
"resources ",
"UX"
]
},
{
"url": "http://coding.smashingmagazine.com/2009/02/08/50-extremely-useful-javascript-tools/",
"title": "50 Useful JavaScript Tools",
"author": "Jacob Gube",
"tags": [
"tools"
]
},
{
"url": "http://addyosmani.com/resources/essentialjsdesignpatterns/book/",
"title": "Learning JavaScript Design Patterns",
"author": "Addy Osmani",
"tags": [
"patterns"
]
},
{
"url": "http://bonsaiden.github.io/JavaScript-Garden/",
"title": "JavaScript Garden",
"tags": [
"patterns"
]
},
{
"url": "http://shichuan.github.io/javascript-patterns/",
"title": "JS Patterns",
"tags": [
"patterns"
]
},
{
"url": "http://moduscreate.com/diving-into-meteorjs/",
"title": "Diving into MeteorJS",
"tags": [
"meteorjs",
"nodejs"
]
},
{
"url": "http://photon.attasi.com/",
"title": "CSS 3D Lighting Engine",
"author": "Tom Giannattasio",
"tags": [
"3d",
"photon"
]
},
{
"url": "http://nimbupani.com/css-object-model.html",
"title": "CSS Object Model",
"author": "Divya Manian",
"tags": [
"CSS Object Model"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/",
"title": "An In-Depth Introduction To Ember.js",
"author": "Julien Knebel",
"tags": [
"ember",
"mvc"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/11/12/an-introduction-to-dom-events/",
"title": "An Introduction To DOM Events",
"author": "Wilson Page",
"tags": [
"dom"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/11/18/the-future-of-video-in-web-design/",
"title": "The Future Of Video In Web Design",
"author": "Sean Fioritto",
"tags": [
"video"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/11/21/introduction-to-full-stack-javascript/",
"title": "An Introduction To Full-Stack JavaScript",
"author": "Alejandro Hernandez",
"tags": [
"architecture"
]
},
{
"url": "http://www.backalleycoder.com/2012/08/06/css-selector-listeners/",
"title": "CSS Selector Listeners",
"author": "Daniel Buchner",
"tags": [
"Selector Listeners"
]
},
{
"url": "http://www.456bereastreet.com/archive/201209/tell_css_that_javascript_is_available_asap/",
"title": "Tell CSS that JavaScript is available ASAP",
"author": "Roger Johansson",
"tags": [
"performance"
]
},
{
"url": "https://github.com/marcolago/flowtime.js",
"title": "Flowtime.js",
"author": "Marco Lago",
"tags": [
"flowtime",
"presentations"
]
},
{
"url": "http://lvivski.github.com/anima/",
"title": "Anima.js",
"description": "With Anima it's easy to animate over a hundred objects at a time. Each item can have it's mass and viscosity to emulate reallife objects! And it's only 5k when gzipped.",
"author": "Yehor Lvivski",
"tags": [
"animation"
]
},
{
"url": "http://css-tricks.com/controlling-css-animations-transitions-javascript/",
"title": "Controlling CSS Animations and Transitions with JavaScript",
"description": "Coupled with a touch of JavaScript, CSS animations and transitions are able to accomplish hardware-accelerated animations and interactions more efficiently than most JavaScript libraries.",
"author": "Zach Saucier",
"tags": [
"animation",
"transition",
"css"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/08/27/analyzing-network-characteristics-using-javascript-and-the-dom-part-2/",
"title": "Analyzing Network Characteristics Using JavaScript And The DOM, Part 2",
"author": "Philip Tellis",
"tags": [
"JavaScript ",
"Performance ",
"DOM"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/08/09/backbone-js-tips-patterns/",
"title": "Backbone.js Tips And Patterns",
"author": "Phillip Whisenhunt",
"tags": [
"Frameworks ",
"JavaScript "
]
},
{
"url": "http://coding.smashingmagazine.com/2012/09/23/useful-javascript-libraries-jquery-plugins-web-developers/",
"title": "Useful JavaScript Libraries and jQuery Plugins",
"author": "Smashing Editorial",
"tags": [
"JavaScript ",
"JQuery ",
"library",
"plugin"
]
},
{
"url": "http://coding.smashingmagazine.com/2011/09/27/searchable-dynamic-content-with-ajax-crawling/",
"title": "Searchable Dynamic Content With AJAX Crawling",
"author": "Zack Grossbart",
"tags": [
"Ajax",
"SEO"
]
},
{
"url": "http://labs.bigroomstudios.com/libraries/animo-js",
"title": "animo.js",
"description": "The problem with CSS alone is that they're usually fired on page load or a hover event, and you can't stack animations or trigger another when one has completed. That's where JavaScript and animo come in.",
"author": "Daniel Raftery",
"tags": [
"animation",
"css",
"jquery"
]
},
{
"url": "http://krasimirtsonev.com/blog/article/AbsurdJS-fundamentals",
"title": "AbsurdJS fundamentals",
"author": "Krasimir Tsonev",
"tags": [
"preprocessors",
"css",
"absurdjs",
"nodejs"
]
},
{
"url": "http://typedarray.org/javascript-refresh",
"title": "A JavaScript refresh",
"author": "Thibault Imbert",
"tags": [
"amazing",
"javascript"
]
},
{
"url": "http://javascriptissexy.com/oop-in-javascript-what-you-need-to-know/",
"title": "OOP In JavaScript: What You NEED to Know",
"author": "Richard Of Stanley",
"tags": [
"OOP",
"prototype"
]
},
{
"url": "https://github.com/maxogden/art-of-node",
"title": "The Art of Node",
"author": "Max Ogden",
"tags": [
"nodejs"
]
},
{
"url": "http://net.tutsplus.com/tutorials/javascript-ajax/make-backbone-better-with-extensions/",
"title": "Make Backbone Better With Extensions",
"author": "Joe Zimmerman",
"tags": [
"backbone"
]
},
{
"url": "http://domenic.me/2013/03/19/strict-mode-static-scoping/",
"title": "Strict Mode = Static Scoping",
"author": "Domenic Denicola",
"tags": [
"strict mode"
]
},
{
"url": "http://alistapart.com/article/writing-testable-javascript",
"title": "Writing Testable JavaScript",
"author": "Rebecca Murphey",
"tags": [
"testing",
"TDD"
]
},
{
"url": "http://www.2ality.com/2013/07/defending-constructors.html",
"title": "In defense of JavaScript’s constructors",
"author": "Axel Rauschmayer",
"tags": [
"constructor"
]
},
{
"url": "http://www.joelhooks.com/blog/2014/02/06/stop-writing-for-loops-start-using-underscorejs/",
"title": "Stop writing For loops. Start using underscore.",
"tags": [
"underscore",
"for",
"loops"
]
},
{
"url": "http://dailyjs.com/2014/02/20/promises-in-detail/",
"title": "JavaScript Promises ... In Wicked Detail",
"author": "Matt Greer",
"author-mail": "[email protected]",
"author-link": "http://mattgreer.org/",
"tags": [
"promise",
"tutorial"
]
},
{
"url": "http://mherman.org/blog/2014/01/29/meteor-dot-js-in-action-create-an-app-test-with-laika/",
"title": "Meteor.js in Action: Create an App, Test With Laika",
"author": "Michael Herman",
"tags": [
"tutorial",
"meteorjs",
"laika",
"testing"
]
},
{
"url": "http://github.com/polarmobile/coffeescript-style-guide",
"title": "CoffeeScript Style Guide",
"tags": [
"coffeescript",
"code style guides"
]
},
{
"url": "https://github.com/rwaldron/idiomatic.js/",
"title": "Principles of Writing Consistent, Idiomatic JavaScript",
"tags": [
"best practises",
"js best practises",
"code style guides"
]
},
{
"url": "http://javascript.crockford.com/code.html",
"title": "Code Conventions for the JavaScript Programming Language",
"author": "Douglas Crockford",
"tags": [
"code style guides",
"js best practises"
],
"description": "This is a set of coding conventions and rules for use in JavaScript programming. It is inspired by the Sun document Code Conventions for the Java Programming Language. It is heavily modified of course because JavaScript is not Java."
},
{
"url": "https://github.com/styleguide/javascript",
"title": "Github JavaScript Styleguide",
"tags": [
"code style guides",
"js best practises"
]
},
{
"url": "http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml",
"title": "Google JavaScript Style Guide",
"tags": [
"code style guides",
"js best practises",
"best practises"
]
},
{
"url": "https://www.npmjs.org/doc/coding-style.html",
"title": "npm-coding-style",
"tags": [
"code style guides",
"best practises"
],
"description": "npm's coding style is a bit unconventional. It is not different for difference's sake, but rather a carefully crafted style that is designed to reduce visual clutter and make bugs more apparent."
},
{
"url": "https://github.com/yuanyan/pragmatic-jquery",
"title": "Pragmatic jQuery Style",
"tags": [
"code style guides",
"jquery",
"best practises"
]
},
{
"url": "https://github.com/felixge/node-style-guide",
"title": "Node.js Style Guide",
"tags": [
"code style guides",
"js best practises",
"best practises"
],
"description": "This is a guide for writing consistent and aesthetically pleasing node.js code. It is inspired by what is popular within the community, and flavored with some personal opinions."
},
{
"url": "http://www.goodboydigital.com/to-dom-or-not-to-dom/",
"title": "To DOM or not to DOM?",
"author": "Mat Groves",
"tags": [
"dom",
"canvas",
"js",
"webgl",
"gamedev"
],
"description": "A lot of people swear blind that the DOM is faster than Canvas and vice versa. But which is it?"
},
{
"url": "http://diveintohtml5.info/canvas.html",
"title": "Let’s Call It ADraw(ing Surface)",
"author": "Mark Pilgrim",
"author-mail": "[email protected]",
"author-link": "https://github.com/diveintomark",
"tags": [
"canvas",
"gamedev"
],
"description": "HTML 5 defines the <canvas> element as “a resolution-dependent bitmap canvas which can be used for rendering graphs, game graphics, or other visual images on the fly.” A canvas is a rectangle in your page where you can use JavaScript to draw anything you want."
},
{
"url": "http://www.html5rocks.com/en/tutorials/webaudio/intro/",
"title": "Getting Started with Web Audio API",
"author": "Boris Smus",
"author-link": "http://smus.com/",
"tags": [
"audio",
"gamedev"
],
"description": "The Web Audio API is a high-level JavaScript API for processing and synthesizing audio in web applications. The goal of this API is to include capabilities found in modern game audio engines and some of the mixing, processing, and filtering tasks that are found in modern desktop audio production applications. What follows is a gentle introduction to using this powerful API."
},
{
"url": "http://html5doctor.com/taking-web-audio-offline-in-ios-6-safari/",
"title": "Taking Web Audio Offline in iOS 6 Safari",
"author": "Alex Gibson",
"author-mail": "[email protected]",
"author-link": "https://github.com/alexgibson",
"tags": [
"audio",
"gamedev"
],
"description": "Playing cached audio for offline use on iOS Safari has long been a challenge that has proved to be mission impossible. But with the advent of the (WebKit-only) Web Audio API, it is now finally achievable — although you still need to jump through a few hoops"
},
{
"url": "http://davidwalsh.name/fullscreen",
"title": "Fullscreen API",
"author": "David Walsh",
"author-mail": "[email protected]",
"author-link": "https://github.com/darkwing",
"tags": [
"fullscreen",
"gamedev"
],
"description": "As we move toward more true web applications, our JavaScript APIs are doing their best to keep up. One very simple but useful new JavaScript API is the Fullscreen API. The Fullscreen API provides a programmatic way to request fullscreen display from the user, and exit fullscreen when desired. "
},
{
"url": "http://sealedabstract.com/rants/why-mobile-web-apps-are-slow/",
"title": "Why mobile web apps are slow",
"author": "Drew Crawford",
"author-mail": "[email protected]",
"author-link": "http://github.com/drewcrawford",
"tags": [
"performance",
"mobile",
"gamedev"
]
},
{
"url": "http://blog.teamtreehouse.com/building-multi-touch-web-applications",
"title": "Building Multi-Touch Web Applications",
"author": "Matt West",
"author-link": "http://mattwest.io/",
"tags": [
"touch",
"gamedev"
],
"description": "In this blog post we are going to be focussing on the how we interact with multi-touch displays. You are going to be learning about the APIs that are available for building multi-touch web applications. After a quick bit of initial theory you’ll build a fully-functional multi-touch drawing app that works great on your phone or tablet."
},
{
"url": "http://www.html5rocks.com/en/tutorials/appcache/beginner/",
"title": "A Beginner's Guide to Using the Application Cache",
"author": "Eric Bidelman",
"author-link": "http://ericbidelman.tumblr.com/",
"tags": [
"offline",
"api",
"gamedev"
],
"description": "It's becoming increasingly important for web-based applications to be accessible offline. Yes, all browsers can cache pages and resources for long periods if told to do so, but the browser can kick individual items out of the cache at any point to make room for other things. HTML5 addresses some of the annoyances of being offline with the ApplicationCache interface."
},
{
"url": "http://bourbon.io/",
"title": "Bourbon",
"author": "Thoughtbot",
"tags": [
"preprocessors"
]
},
{
"url": "http://clearleft.github.com/clearless/",
"title": "Clearless",
"author": "Mark Perkins",
"tags": [
"snippets"
]
},
{
"url": "http://frontender.info/pointer-events-60fps/",
"title": "60 кадров в секунду с помощью pointer-events: none; при прокрутке",
"author": "ryanseddon",
"tags": [
"performance"
]
},
{
"url": "http://css-tricks.com/cross-browser-css-injection/",
"title": "Cross Browser CSS Injection",
"author": "Shane Osbourne",
"tags": [
"browser-sync"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/",
"title": "How Browsers Work: Behind the scenes of modern web browsers",
"author": "ikeike443",
"author-link": "https://twitter.com/ikeike443",
"tags": [
"browser ",
"how it works"
]
},
{
"url": "http://coding.smashingmagazine.com/2011/07/07/my-favorite-programming-mistakes/",
"title": "My Favorite Programming Mistakes",
"author": "Paul Tero",
"tags": [
"PHP ",
"programming"
]
},
{
"url": "http://coding.smashingmagazine.com/2011/06/30/designing-for-android/",
"title": "Designing For Android",
"author": "Dan McKenzie",
"tags": [
"eclipse",
"design",
"mobile"
]
},
{
"url": "http://www.useragentman.com/blog/2012/09/23/cross-browser-gpu-acceleration-and-requestanimationframe-in-depth/",
"title": "Cross Browser GPU Acceleration and requestAnimationFrame in Depth",
"author": "Zoltan Hawryluk",
"tags": [
"animation"
]
},
{
"url": "http://www.funnyant.com/choosing-javascript-mvc-framework/",
"title": "Choosing a JavaScript MVC Framework",
"author": "Craig McKeachie",
"tags": [
"mvc"
]
},
{
"url": "http://code.tutsplus.com/tutorials/intro-to-the-react-framework--net-35660",
"title": "Intro to the React Framework",
"author": "Pavan Podila",
"author-link": "pixelingene.com",
"tags": [
"mvc",
"react"
]
},
{
"url": "http://blog.sourcing.io/mvc-style-guide",
"title": "JavaScript MVC Style Guide",
"author": "Alex MacCaw",
"tags": [
"mvc"
]
},
{
"url": "http://frontside.io/blog/2014/02/24/ember-and-the-future-of-the-web.html",
"title": "Ember and the future of the web",
"author": "Brandon Hays",
"tags": [
"mvc",
"ember"
]
},
{
"url": "http://www.sitepoint.com/ember-todomvc-rails/",
"title": "Ember and TodoMVC on Rails",
"author": "Michal Olah",
"author-link": "https://twitter.com/michalolah",
"tags": [
"mvc",
"ember"
]
},
{
"url": "http://www.williambrownstreet.net/blog/2014/04/faster-angularjs-rendering-angularjs-and-reactjs/",
"title": "Faster AngularJS Rendering (AngularJS and ReactJS)",
"author": "Thierry Nicola",
"tags": [
"angularjs",
"reactjs"
]
},
{
"url": "http://codegeekz.com/react-js-tutorial/",
"title": "React js Tutorial: Now is Your Time to Try It, Right in Your Browser",
"author": "Totty",
"tags": [
"mvc",
"reactjs"
]
},
{
"url": "http://odetocode.com/blogs/scott/archive/2014/05/28/compile-pre-and-post-linking-in-angularjs.aspx",
"title": "Compile, Pre, and Post Linking in AngularJS",
"author": "K. Scott Allen",
"author-mail": "[email protected]",
"author-link": "http://odetocode.com/",
"tags": [
"angularjs"
]
},
{
"url": "http://flippinawesome.org/2014/05/29/building-your-first-grunt-plugin/",
"title": "Building Your First Grunt Plugin",
"author": "Mykyta Semenistyi",
"author-link": "https://plus.google.com/u/0/+mykytasemenistyi/posts",
"tags": [
"grunt",
"tutorial"
]
},
{
"url": "http://www.idea-r.it/blog/110/en/lazy-loading-seo-problem",
"title": "Lazy loading and the SEO problem",
"author": "Igor De Ruitz",
"author-link": "https://plus.google.com/+IgorDeRuitz?rel=author",
"tags": [
"lazy load",
"seo"
],
"description": "Lazy loading applied to a web page is an excellent technique when all contents aren't immediately visible and you want to speed up page rendering.\r\nThis technique sounds great, but has a big SEO problem: search engine crawlers does not execute scripts, they only analyze HTML markup, so all the code that renders images dynamically is totally ignored along with images and captions."
},
{
"url": "http://www.sitepoint.com/fixture-adapters-ember-js-server/",
"title": "Fixture Adapters – Ember.js With No Server",
"author": "Lamin Sanneh",
"author-link": "https://twitter.com/LaminEvra",
"tags": [
"ember"
]
},
{
"url": "http://javascript-html5-tutorial.com/a-simple-halloween-game-in-javascript-rapid-development-with-jquery.html",
"title": "A simple Halloween game in JavaScript – rapid development with jQuery",
"author": "DirectCode",
"author-mail": "[email protected]",
"author-link": "http://directcode.eu/",
"tags": [
"javascript",
"jquery",
"gamedev",
"games"
],
"description": "Halloween game in JavaScript, rapidly developed in using HTML5 and jQuery. Booo!"
},
{
"url": "https://developer.chrome.com/devtools/docs/javascript-memory-profiling",
"title": "JavaScript Memory Profiling",
"author": "google",
"tags": [
"profiling",
"memory profiling"
]
},
{
"url": "http://peter.michaux.ca/articles/mvc-architecture-for-javascript-applications",
"title": "MVC Architecture for JavaScript Applications",
"author": "Peter Michaux",
"author-link": "http://peter.michaux.ca/",
"tags": [
"mvc"
]
},
{
"url": "http://code.tutsplus.com/tutorials/build-a-complete-mvc-web-site-with-expressjs--net-34168",
"title": "Build a Complete MVC Website With ExpressJS",
"author": "Krasimir Tsonev",
"author-link": "http://krasimirtsonev.com/",
"tags": [
"mvc",
"expressjs",
"tutorial"
]
},
{
"url": "http://www.codeproject.com/Articles/614507/Modular-Javascript-Using-Require-Js",
"title": "Modular Javascript Using Require.Js",
"author": "Sacha Barber",
"author-link": "http://sachabarbs.wordpress.com/",
"tags": [
"amd",
"requirejs",
"mvc"
]
},
{
"url": "http://www.clicktorelease.com/code/css3dclouds/",
"title": "CSS3D Clouds",
"author": "Jaume Sánchez",
"author-link": "https://twitter.com/thespite",
"description": "Cloudy experiment created with CSS3 and a bit of JavaScript. Have a look (you might be impressed).",
"tags": [
"wow-effect",
"perspective",
"3d"
]
},
{
"url": "http://awardwinningfjords.com/2012/03/08/image-sequences.html",
"title": "Image Sequences: Let Me Count The Ways",
"author": "Thomas Reynolds",
"author-link": "http://awardwinningfjords.com/",
"description": "A pure CSS (SASS) technique and two JavaScript techniques. One of these methods will surely meet your wants and needs.",
"tags": [
"animation"
]
},
{
"url": "https://medium.com/objects-in-space/9b8a9dd7bfe3",
"title": "Introducing Event-Focused JS and CSS (EFJAC)",
"author": false,
"author-link": false,
"description": false,
"tags": [
"css"
]
},
{
"url": "http://blog.mixu.net/2011/02/01/understanding-the-node-js-event-loop/",
"title": "Understanding the node.js event loop",
"author": "mixu",
"author-link": "http://github.com/mixu",
"tags": [
"nodejs",
"events"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/casestudies/hobbit-front-end/",
"title": "The Front-end of Middle-earth",
"author": "inear",
"author-link": "http://github.com/inear",
"description": false,
"tags": [
"wow-effect",
"canvas",
"animation"
]
},
{
"url": "http://varya.me/en/posts/jscs-in-use/",
"title": "JSCS in use",
"author": "Varya Stepanova",
"author-link": "http://varya.me/",
"tags": [
"codestyle",
"linting"
],
"description": "experience of keeping a codestyle in one of my working projects. This is about a new tool called JSCS which we have recently chosen with the team and now are very pleased with the result."
},
{
"url": "http://www.html5rocks.com/en/tutorials/speed/script-loading/",
"title": "Deep dive into the murky waters of script loading",
"author": "jakearchibald",
"author-link": "http://github.com/jakearchibald",
"description": false,
"tags": [
"performance"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/es6/promises/",
"title": "JavaScript Promises: There and back again",
"author": "Jake Archibald",
"author-link": false,
"description": false,
"tags": [
"patterns",
"es6"
]
},
{
"url": "http://tech.pro/tutorial/1729/easy-javascript-documentation-with-yuidocs-and-gruntjs",
"title": "Easy JavaScript Documentation with YUIDocs and Grunt.js",
"author": "jcreamer898",
"author-link": "http://github.com/jcreamer898",
"description": false,
"tags": [
"codestyle",
"grunt"
]
},
{
"url": "http://24ways.org/2013/grunt-is-not-weird-and-hard/",
"title": "Grunt for People Who Think Things Like Grunt are Weird and Hard",
"author": "Chris Coyier",
"author-link": "http://github.com/chriscoyier",
"description": false,
"tags": [
"grunt",
"tutorial"
]
},
{
"url": "http://flippinawesome.org/2013/12/02/building-a-2d-browser-game-with-physicsjs/",
"title": "Building a 2D Browser Game with PhysicsJS",
"author": "wellcaffeinated",
"author-link": "http://github.com/wellcaffeinated",
"description": false,
"tags": [
"physic",
"games"
]
},
{
"url": "https://hacks.mozilla.org/2013/10/an-ar-game-technical-overview/",
"title": "An AR Game: Technical Overview",
"author": "abrie",
"author-link": "http://github.com/abrie",
"description": false,
"tags": [
"games"
]
},
{
"url": "http://blog.ponyfoo.com/2014/01/09/gulp-grunt-whatever",
"title": "Gulp, Grunt, Whatever",
"author": false,
"author-link": false,
"description": false,
"tags": [
"grunt",
"gulp",
"automation"
]
},
{
"url": "http://travismaynard.com/writing/no-need-to-grunt-take-a-gulp-of-fresh-air",
"title": "No Need To Grunt, Take A Gulp Of Fresh Air",
"author": "travm",
"author-link": "http://github.com/travm",
"description": false,
"tags": [
"grunt",
"gulp",
"automation"
]
},
{
"url": "http://robo.ghost.io/getting-started-with-gulp-2/",
"title": "Simple build env for game dev with Gulp under 5 min",
"author": "deepak1556",
"author-link": "http://github.com/deepak1556",
"description": false,
"tags": [
"games",
"grunt",
"gulp"
]
},
{
"url": "https://www.discovermeteor.com/2014/01/02/understanding-meteor-publications-and-subscriptions/",
"title": "Understanding Meteor Publications & Subscriptions",
"author": false,
"author-link": false,
"description": false,
"tags": [
"library",
"framework"
]
},
{
"url": "http://jasonweaver.name/lab/offcanvas/",
"title": "Off Canvas",
"author": "Jason Weaver",
"author-link": "http://jasonweaver.name/",
"description": "A multi-device web layout pattern explained from conceptual and technical point of view. Very useful technique (that will surely become very popular).",
"tags": [
"canvas"
]
},
{
"url": "http://elekslabs.com/2012/11/html5-canvas-performance-and.html",
"title": "HTML5 Canvas: Performance and Optimization",
"author": "Victor Haydin",
"author-link": "https://github.com/VictorHaydin",
"tags": [
"canvas",
"performance"
],
"description": "It’s no doubt that HTML5 is going to be the next big platform for software development. Some say it could even kill traditional operating systems and all applications in future will be written with HTML5 and JavaScript. Others say HTML5 apps will have their market share, but never replace native applications completely. One of the main reasons is poor JavaScript performance, they say. But wait, browser vendors say they did lots of optimizations and JavaScript is fast as it was never before! Isn’t it true?"
},
{
"url": "http://www.adomas.org/javascript-mouse-wheel/",
"title": "Mouse wheel programming in JavaScript",
"author": "Adomas Paltanavicius",
"author-link": "http://www.adomas.org/",
"tags": [
"wheel"
],
"description": "This page is to provide you with general information about handling mouse wheel-generated events in JavaScript programming language."
},
{
"url": "https://medium.com/web-code-junk/getting-gulpy-a2010c13d3d5",
"title": "Getting gulpy: Advanced tips for using gulp.js",
"author": "Lars Kappert",
"tags": [
"gulpjs",
"automation"
],
"description": "After getting excited about gulp.js, at some point you need more than the shiny but basic examples. This post discusses some common pitfalls when using gulp.js, plugins and streams in a more advanced and custom way."
},
{
"url": "http://martinwolf.org/2014/06/16/screencast-getting-started-with-gulp-js/",
"title": "Screencast: Getting started with gulp.js",
"author": "Martin Wolf",
"tags": [
"gulp",
"automation",
"rookie"
],
"description": "In this video I take a first look at gulp.js and we struggle through the first steps together. Enjoy!"
},
{
"url": "http://blog.mwaysolutions.com/2014/06/05/10-best-practices-for-better-restful-api/",
"title": "10 Best Practices for Better RESTful API",
"author": "STEFAN JAUKER",
"tags": [
"api",
"rest"
],
"description": "Web APIs has become an very important topic in the last year. We at M-Way Solutions are working every day with different backend systems and therefore we know about the importance of a clean API design."
},
{
"url": "http://dmitrysoshnikov.com/courses/essentials-of-interpretation-checkpoint-part-1/",
"title": "Essentials of interpretation. Checkpoint: part 1",
"author": "Dmitry Soshnikov",
"author-mail": "[email protected]",
"author-link": "http://dmitrysoshnikov.com/",
"tags": [
"ecmascript",
"ECMA",
"js interpreter",
"basics"
],
"description": "This article describes in some details our interpreter which we have created during the course Essentials of interpretation. We summarize intermediate results and the main parts of the evaluator making notes which were omitted in the code articles."
},
{
"url": "http://www.html5rocks.com/en/tutorials/speed/layers/",
"title": "Accelerated Rendering in Chrome The Layer Model",
"author": " Tom Wiltzius",
"author-link": "http://www.html5rocks.com/en/profiles/#tomwiltzius",
"tags": [
"layers",
"chrome",
"js",
"rendering"
],
"description": "For most web developers the fundamental model of a web page is the DOM. Rendering is the often obscure process of turning this representation of a page into a picture on the screen. Modern browsers have changed the way rendering works in recent years to take advantage of graphics cards: this is often vaguely referred to as “hardware acceleration”. When talking about a normal web page (i.e. not Canvas2D or WebGL), what does that term really mean? This article explains the basic model that underpins hardware accelerated rendering of web content in Chrome."
},
{
"url": "http://dmitrysoshnikov.com/courses/essentials-of-interpretation-intro/",
"title": "Essentials of interpretation. Intro.",
"author": "Dmitry Soshnikov",
"author-mail": "[email protected]",
"author-link": "http://dmitrysoshnikov.com/",
"tags": [
"ecmascript",
"ECMA",
"js interpreter",
"basics"
],
"description": "“Essentials of interpretation” is a new series which consists of small lessons on interpretation of computer programs. The lessons are implemented in JavaScript and contain detailed comments. The sources can be found on the appropriate GitHub repository."
},
{
"url": "http://javascript-html5-tutorial.com/object-reflection-in-javascript.html",
"title": " Object reflection in JavaScript",
"author": "javascript-html5-tutorial.com",
"author-mail": "[email protected]",
"author-link": "http://javascript-html5-tutorial.com",
"tags": [
"oop",
"javascript"
],
"description": "Reflection of objects is not just a curiosity, but also a tool, which we can meet more often than we think. And it may turn out to be this, what we need when we stuck with some issue. "
},
{
"url": "http://dmitrysoshnikov.com/ecmascript/es5-chapter-3-2-lexical-environments-ecmascript-implementation/",
"title": "ECMA-262-5 in detail. Chapter 3.2. Lexical environments: ECMAScript implementation.",
"author": "Dmitry Soshnikov",
"author-mail": "[email protected]",