-
Notifications
You must be signed in to change notification settings - Fork 2
/
articles.json
8048 lines (8048 loc) · 325 KB
/
articles.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
[
{
"claps": 222000,
"articleTitle": "I’m harvesting credit card numbers and passwords from your site. Here’s how.",
"articleUrl": "https://hackernoon.com/im-harvesting-credit-card-numbers-and-passwords-from-your-site-here-s-how-9a8cb347c5b5",
"date": "Sat, 06 Jan 2018 08:48:50 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "10 min read"
},
{
"claps": 18300,
"articleTitle": "Part 2: How to stop me harvesting credit card numbers and passwords from your site",
"articleUrl": "https://hackernoon.com/part-2-how-to-stop-me-harvesting-credit-card-numbers-and-passwords-from-your-site-844f739659b9",
"date": "Sat, 27 Jan 2018 08:38:33 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "16 min read"
},
{
"claps": 14900,
"articleTitle": "How to Lose an IT Job in 10 Minutes",
"articleUrl": "https://hackernoon.com/how-to-lose-an-it-job-in-10-minutes-3d63213c8370",
"date": "Fri, 15 Jun 2018 11:06:01 GMT",
"authorUrl": "https://hackernoon.com/@albinotonnina",
"authorName": "Albino Tonnina",
"minRead": "9 min read"
},
{
"claps": 14200,
"articleTitle": "Two Years of Functional Programming in JavaScript: Lessons Learned",
"articleUrl": "https://hackernoon.com/two-years-of-functional-programming-in-javascript-lessons-learned-1851667c726",
"date": "Thu, 12 Apr 2018 18:03:51 GMT",
"authorUrl": "https://hackernoon.com/@nkrkv",
"authorName": "Victor Nakoryakov",
"minRead": "9 min read"
},
{
"claps": 13900,
"articleTitle": "Redesigning Redux",
"articleUrl": "https://hackernoon.com/redesigning-redux-b2baee8b8a38",
"date": "Wed, 28 Feb 2018 14:32:24 GMT",
"authorUrl": "https://hackernoon.com/@ShMcK",
"authorName": "Shawn McKay",
"minRead": "7 min read"
},
{
"claps": 11500,
"articleTitle": "Goodbye Redux",
"articleUrl": "https://hackernoon.com/goodbye-redux-26e6a27b3a0b",
"date": "Mon, 03 Sep 2018 06:48:19 GMT",
"authorUrl": "https://hackernoon.com/@jackrobertscott",
"authorName": "Jack R. Scott",
"minRead": "11 min read"
},
{
"claps": 11100,
"articleTitle": "A tale of Webpack 4 and how to finally configure it in the right way. Updated.",
"articleUrl": "https://hackernoon.com/a-tale-of-webpack-4-and-how-to-finally-configure-it-in-the-right-way-4e94c8e7e5c1",
"date": "Sun, 08 Apr 2018 16:15:42 GMT",
"authorUrl": "https://hackernoon.com/@riittagirl",
"authorName": "Margarita Obraztsova",
"minRead": "19 min read"
},
{
"claps": 10700,
"articleTitle": "O API — an alternative to REST APIs",
"articleUrl": "https://hackernoon.com/o-api-an-alternative-to-rest-apis-e9a2ed53b93c",
"date": "Sat, 24 Feb 2018 08:12:24 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "7 min read"
},
{
"claps": 10600,
"articleTitle": "JavaScript async/await: The Good Part, Pitfalls and How to Use",
"articleUrl": "https://hackernoon.com/javascript-async-await-the-good-part-pitfalls-and-how-to-use-9b759ca21cda",
"date": "Fri, 08 Jun 2018 02:10:57 GMT",
"authorUrl": "https://hackernoon.com/@charleeli",
"authorName": "Charlee Li",
"minRead": "7 min read"
},
{
"claps": 10300,
"articleTitle": "3 JavaScript Performance Mistakes You Should Stop Doing",
"articleUrl": "https://hackernoon.com/3-javascript-performance-mistakes-you-should-stop-doing-ebf84b9de951",
"date": "Thu, 25 Oct 2018 14:59:32 GMT",
"authorUrl": "https://hackernoon.com/@kadishay",
"authorName": "Yotam Kadishay",
"minRead": "4 min read"
},
{
"claps": 10000,
"articleTitle": "Structuring projects and naming components in React",
"articleUrl": "https://hackernoon.com/structuring-projects-and-naming-components-in-react-1261b6e18d76",
"date": "Fri, 02 Mar 2018 11:51:01 GMT",
"authorUrl": "https://hackernoon.com/@viniciusdacal",
"authorName": "Vinicius Dacal",
"minRead": "8 min read"
},
{
"claps": 9000,
"articleTitle": "Understanding promises in JavaScript",
"articleUrl": "https://hackernoon.com/understanding-promises-in-javascript-13d99df067c1",
"date": "Sun, 15 Jul 2018 18:36:01 GMT",
"authorUrl": "https://hackernoon.com/@gokulnk",
"authorName": "Gokul N K",
"minRead": "16 min read"
},
{
"claps": 8900,
"articleTitle": "How to Become a React Native Developer in 2018",
"articleUrl": "https://hackernoon.com/how-to-become-a-react-native-developer-in-2018-d9bc85e1d91f",
"date": "Tue, 16 Jan 2018 20:01:09 GMT",
"authorUrl": "https://hackernoon.com/@spencer_carli",
"authorName": "Spencer Carli",
"minRead": "7 min read"
},
{
"claps": 8600,
"articleTitle": "npm package permissions — an idea",
"articleUrl": "https://hackernoon.com/npm-package-permissions-an-idea-441a02902d9b",
"date": "Sun, 09 Dec 2018 06:26:53 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "12 min read"
},
{
"claps": 7900,
"articleTitle": "🔥 JavaScript Modules Worth Using 🔥",
"articleUrl": "https://hackernoon.com/javascipt-modules-worth-using-9aa7301e41ac",
"date": "Fri, 09 Mar 2018 21:21:06 GMT",
"authorUrl": "https://hackernoon.com/@transitive_bs",
"authorName": "Travis Fischer",
"minRead": "9 min read"
},
{
"claps": 7700,
"articleTitle": "VS Code Extensions for Happier JavaScript Coding",
"articleUrl": "https://hackernoon.com/vs-code-extensions-for-happier-javascript-coding-e258f72dd9c1",
"date": "Wed, 25 Apr 2018 16:01:01 GMT",
"authorUrl": "https://hackernoon.com/@alekshnayder",
"authorName": "Alek Shnayder",
"minRead": "6 min read"
},
{
"claps": 7400,
"articleTitle": "How to build a React project from scratch using Webpack 4 and Babel",
"articleUrl": "https://hackernoon.com/how-to-build-a-react-project-from-scratch-using-webpack-4-and-babel-56d4a26afd32",
"date": "Thu, 07 Jun 2018 20:56:01 GMT",
"authorUrl": "https://hackernoon.com/@Sukhjinder",
"authorName": "Sukhjinder Arora",
"minRead": "6 min read"
},
{
"claps": 7000,
"articleTitle": "15 HTML element methods you’ve potentially never heard of",
"articleUrl": "https://hackernoon.com/15-html-element-methods-youve-potentially-never-heard-of-fc6863e41b2a",
"date": "Thu, 05 Jul 2018 12:04:27 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "7 min read"
},
{
"claps": 7000,
"articleTitle": "Lessons Learned — A Year Of Going “Fully Serverless” In Production",
"articleUrl": "https://hackernoon.com/lessons-learned-a-year-of-going-fully-serverless-in-production-3d7e0d72213f",
"date": "Fri, 20 Apr 2018 19:39:57 GMT",
"authorUrl": "https://hackernoon.com/@ketacode",
"authorName": "Tal Bereznitskey",
"minRead": "6 min read"
},
{
"claps": 6600,
"articleTitle": "How this drawing changed me as a developer",
"articleUrl": "https://hackernoon.com/how-this-drawing-changed-me-as-a-developer-a0ff79457f20",
"date": "Fri, 15 Jun 2018 11:06:34 GMT",
"authorUrl": "https://hackernoon.com/@n_chernykh",
"authorName": "Nikita Chernykh",
"minRead": "5 min read"
},
{
"claps": 6400,
"articleTitle": "How I stopped worrying and learned to love the JavaScript ecosystem",
"articleUrl": "https://hackernoon.com/how-i-stopped-worrying-and-learned-to-love-the-javascript-ecosystem-692c51030342",
"date": "Mon, 09 Apr 2018 00:14:40 GMT",
"authorUrl": "https://hackernoon.com/@flaviocopes",
"authorName": "Flavio Copes",
"minRead": "7 min read"
},
{
"claps": 6400,
"articleTitle": "Introducing Immer: Immutability the easy way",
"articleUrl": "https://hackernoon.com/introducing-immer-immutability-the-easy-way-9d73d8f71cb3",
"date": "Wed, 10 Jan 2018 19:52:37 GMT",
"authorUrl": "https://hackernoon.com/@mweststrate",
"authorName": "Michel Weststrate",
"minRead": "8 min read"
},
{
"claps": 6100,
"articleTitle": "The Present Future of User Interface Development",
"articleUrl": "https://hackernoon.com/the-present-future-of-user-interface-development-ebd371255175",
"date": "Mon, 30 Apr 2018 09:28:00 GMT",
"authorUrl": "https://hackernoon.com/@jevakallio",
"authorName": "Jani Eväkallio",
"minRead": "9 min read"
},
{
"claps": 6100,
"articleTitle": "The 4 Layers of Single Page Applications You Need to Know",
"articleUrl": "https://hackernoon.com/architecting-single-page-applications-b842ea633c2e",
"date": "Sat, 10 Mar 2018 02:08:26 GMT",
"authorUrl": "https://hackernoon.com/@danieldughila",
"authorName": "Daniel Dughila",
"minRead": "7 min read"
},
{
"claps": 6100,
"articleTitle": "Progressive Web Apps — The Next Step in Web App Development",
"articleUrl": "https://hackernoon.com/progressive-web-apps-the-next-step-in-web-app-development-372235bf9a99",
"date": "Tue, 30 Jan 2018 12:15:43 GMT",
"authorUrl": "https://hackernoon.com/@geekyants",
"authorName": "GeekyAnts",
"minRead": "14 min read"
},
{
"claps": 5800,
"articleTitle": "Why Angular Made Me Quit Web Dev",
"articleUrl": "https://hackernoon.com/why-angular-made-me-quit-web-dev-f63b83a157af",
"date": "Mon, 05 Nov 2018 00:19:21 GMT",
"authorUrl": "https://hackernoon.com/@TobyMerk",
"authorName": "Tobias Merkle",
"minRead": "10 min read"
},
{
"claps": 5700,
"articleTitle": "Conditional JavaScript for Experts",
"articleUrl": "https://hackernoon.com/conditional-javascript-for-experts-d2aa456ef67c",
"date": "Thu, 18 Oct 2018 11:01:08 GMT",
"authorUrl": "https://hackernoon.com/@gladchinda",
"authorName": "Glad Chinda",
"minRead": "7 min read"
},
{
"claps": 5200,
"articleTitle": "Please stop using console.log(), it’s broken…",
"articleUrl": "https://hackernoon.com/please-stop-using-console-log-its-broken-b5d7d396cf15",
"date": "Tue, 27 Feb 2018 12:01:01 GMT",
"authorUrl": "https://hackernoon.com/@luc.claustres",
"authorName": "Luc Claustres",
"minRead": "4 min read"
},
{
"claps": 5100,
"articleTitle": "The Top 66 Developer Resources From 2017",
"articleUrl": "https://hackernoon.com/the-top-66-developer-resources-from-2017-e82531365e6d",
"date": "Thu, 04 Jan 2018 02:34:41 GMT",
"authorUrl": "https://hackernoon.com/@mpron",
"authorName": "Mitch Pronschinske",
"minRead": "10 min read"
},
{
"claps": 4800,
"articleTitle": "React.js: a better introduction to the most powerful UI library ever created.",
"articleUrl": "https://hackernoon.com/react-js-a-better-introduction-to-the-most-powerful-ui-library-ever-created-ecd96e8f4621",
"date": "Tue, 04 Sep 2018 03:25:41 GMT",
"authorUrl": "https://hackernoon.com/@ilyasz",
"authorName": "Ilya Suzdalnitski",
"minRead": "14 min read"
},
{
"claps": 4700,
"articleTitle": "The Non-Secret Formula for Writing Better Code",
"articleUrl": "https://hackernoon.com/the-non-secret-formula-for-writing-better-code-e41d1ff38682",
"date": "Thu, 29 Mar 2018 08:43:27 GMT",
"authorUrl": "https://hackernoon.com/@ketacode",
"authorName": "Tal Bereznitskey",
"minRead": "3 min read"
},
{
"claps": 4700,
"articleTitle": "Five things I learned building a Saas App with Vue.js",
"articleUrl": "https://hackernoon.com/five-things-i-learned-building-a-saas-app-with-vue-js-90b6a5acd275",
"date": "Sat, 17 Feb 2018 18:02:24 GMT",
"authorUrl": "https://hackernoon.com/@tim_nolet",
"authorName": "Tim Nolet 👨🏻🚀",
"minRead": "8 min read"
},
{
"claps": 4500,
"articleTitle": "The 100% correct way to split your chunks with Webpack",
"articleUrl": "https://hackernoon.com/the-100-correct-way-to-split-your-chunks-with-webpack-f8a9df5b7758",
"date": "Sun, 09 Sep 2018 08:01:11 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "13 min read"
},
{
"claps": 4300,
"articleTitle": "You are learning JS wrong",
"articleUrl": "https://hackernoon.com/you-are-learning-js-wrong-a004746d2ff5",
"date": "Fri, 13 Apr 2018 19:47:47 GMT",
"authorUrl": "https://hackernoon.com/@benjcal",
"authorName": "Benjamín Calderón",
"minRead": "5 min read"
},
{
"claps": 4000,
"articleTitle": "Getting Started with React-Redux",
"articleUrl": "https://hackernoon.com/getting-started-with-react-redux-1baae4dcb99b",
"date": "Wed, 23 May 2018 07:02:57 GMT",
"authorUrl": "https://hackernoon.com/@haileyjanebobella",
"authorName": "Hailey Jane Bobella",
"minRead": "11 min read"
},
{
"claps": 3700,
"articleTitle": "A different way to manage state in React",
"articleUrl": "https://hackernoon.com/a-different-way-to-manage-state-in-react-2d21dfb94482",
"date": "Tue, 30 Oct 2018 09:48:44 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "13 min read"
},
{
"claps": 3700,
"articleTitle": "Backend-in-the-frontend: a pattern for cleaner code",
"articleUrl": "https://hackernoon.com/frontend-in-the-backend-a-pattern-for-cleaner-code-b497c92d0b49",
"date": "Thu, 28 Jun 2018 10:33:45 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "9 min read"
},
{
"claps": 3700,
"articleTitle": "Building a Serverless REST API with Node.js and MongoDB",
"articleUrl": "https://hackernoon.com/building-a-serverless-rest-api-with-node-js-and-mongodb-2e0ed0638f47",
"date": "Tue, 02 Jan 2018 16:24:25 GMT",
"authorUrl": "https://hackernoon.com/@adnanrahic",
"authorName": "Adnan Rahić",
"minRead": "15 min read"
},
{
"claps": 3400,
"articleTitle": "How Fast Can You Learn React?",
"articleUrl": "https://hackernoon.com/how-fast-can-you-learn-react-49c4bdabc0df",
"date": "Mon, 09 Jul 2018 22:35:40 GMT",
"authorUrl": "https://hackernoon.com/@attilavago",
"authorName": "Attila Vágó",
"minRead": "11 min read"
},
{
"claps": 3200,
"articleTitle": "Introducing CodeSandbox Live — real time code collaboration in the browser",
"articleUrl": "https://hackernoon.com/introducing-codesandbox-live-real-time-code-collaboration-in-the-browser-6d508cfc70c9",
"date": "Mon, 26 Mar 2018 17:26:48 GMT",
"authorUrl": "https://hackernoon.com/@compuives",
"authorName": "Ives van Hoorne",
"minRead": "4 min read"
},
{
"claps": 3200,
"articleTitle": "JS WTF 🦄 with Math",
"articleUrl": "https://hackernoon.com/js-wtf-with-math-79da9a941ec1",
"date": "Mon, 29 Jan 2018 17:40:14 GMT",
"authorUrl": "https://hackernoon.com/@ferreiratiago",
"authorName": "Tiago Lopes Ferreira",
"minRead": "4 min read"
},
{
"claps": 3000,
"articleTitle": "Functional Programming in JS: map, filter, reduce (Pt. 5)",
"articleUrl": "https://hackernoon.com/functional-programming-in-js-map-filter-reduce-pt-5-308a205fdd5f",
"date": "Mon, 12 Mar 2018 16:06:45 GMT",
"authorUrl": "https://hackernoon.com/@omergoldberg",
"authorName": "Omer Goldberg",
"minRead": "9 min read"
},
{
"claps": 3000,
"articleTitle": "Currying in JS",
"articleUrl": "https://hackernoon.com/currying-in-js-d9ddc64f162e",
"date": "Fri, 19 Jan 2018 17:41:33 GMT",
"authorUrl": "https://hackernoon.com/@zhirzh",
"authorName": "Shirsh Zibbu",
"minRead": "10 min read"
},
{
"claps": 2900,
"articleTitle": "Lessons Learned: Code Splitting with Webpack and React",
"articleUrl": "https://hackernoon.com/lessons-learned-code-splitting-with-webpack-and-react-f012a989113",
"date": "Wed, 05 Sep 2018 03:23:54 GMT",
"authorUrl": "https://hackernoon.com/@KondovAlexander",
"authorName": "Alexander Kondov",
"minRead": "11 min read"
},
{
"claps": 2900,
"articleTitle": "Redux-Saga tutorial for beginners and dog lovers",
"articleUrl": "https://hackernoon.com/redux-saga-tutorial-for-beginners-and-dog-lovers-aa69a17db645",
"date": "Sun, 21 Jan 2018 21:59:25 GMT",
"authorUrl": "https://hackernoon.com/@ryanjyost",
"authorName": "Ryan J. Yost",
"minRead": "8 min read"
},
{
"claps": 2900,
"articleTitle": "The constructor is dead, long live the constructor!",
"articleUrl": "https://hackernoon.com/the-constructor-is-dead-long-live-the-constructor-c10871bea599",
"date": "Mon, 08 Jan 2018 22:06:16 GMT",
"authorUrl": "https://hackernoon.com/@donavon",
"authorName": "Donavon West",
"minRead": "4 min read"
},
{
"claps": 2800,
"articleTitle": "Announcing CodeSandbox 2.5",
"articleUrl": "https://hackernoon.com/announcing-codesandbox-2-5-be767d15ffd",
"date": "Wed, 07 Feb 2018 14:08:30 GMT",
"authorUrl": "https://hackernoon.com/@compuives",
"authorName": "Ives van Hoorne",
"minRead": "9 min read"
},
{
"claps": 2600,
"articleTitle": "How to use NodeJS without frameworks and external libraries",
"articleUrl": "https://hackernoon.com/how-to-use-nodejs-without-frameworks-and-external-libraries-97eb6acac9e3",
"date": "Mon, 12 Nov 2018 19:06:01 GMT",
"authorUrl": "https://hackernoon.com/@aditya_sridhar",
"authorName": "Aditya Sridhar",
"minRead": "7 min read"
},
{
"claps": 2600,
"articleTitle": "The 7 Biggest Lessons I’ve Learned By Building A Twitter Bot 🐤🤖",
"articleUrl": "https://hackernoon.com/the-7-biggest-lessons-ive-learned-by-building-a-twitter-bot-59fee84a9ed9",
"date": "Fri, 18 May 2018 12:41:02 GMT",
"authorUrl": "https://hackernoon.com/@tomastrajan",
"authorName": "Tomas Trajan",
"minRead": "13 min read"
},
{
"claps": 2500,
"articleTitle": "21 Top Vue.js UI Libraries For Your App",
"articleUrl": "https://hackernoon.com/21-top-vue-js-ui-libraries-for-your-app-4556e5a9060e",
"date": "Wed, 20 Jun 2018 10:51:01 GMT",
"authorUrl": "https://hackernoon.com/@JonathanSaring",
"authorName": "Jonathan Saring",
"minRead": "8 min read"
},
{
"claps": 2400,
"articleTitle": "Writing an easing function; a slightly interesting story",
"articleUrl": "https://hackernoon.com/writing-an-easing-function-a-slightly-interesting-story-70ce667c212a",
"date": "Sun, 04 Feb 2018 05:57:23 GMT",
"authorUrl": "https://hackernoon.com/@david.gilbertson",
"authorName": "David Gilbertson",
"minRead": "11 min read"
},
{
"claps": 2300,
"articleTitle": "Announcing CodeSandbox Containers",
"articleUrl": "https://hackernoon.com/codesandbox-containers-5864a8f26715",
"date": "Thu, 27 Sep 2018 18:58:06 GMT",
"authorUrl": "https://hackernoon.com/@compuives",
"authorName": "Ives van Hoorne",
"minRead": "4 min read"
},
{
"claps": 2300,
"articleTitle": "Mastering React Functional Components with Recompose",
"articleUrl": "https://hackernoon.com/mastering-react-functional-components-with-recompose-d4dd6ac98834",
"date": "Mon, 13 Aug 2018 01:37:37 GMT",
"authorUrl": "https://hackernoon.com/@ilyasz",
"authorName": "Ilya Suzdalnitski",
"minRead": "6 min read"
},
{
"claps": 2300,
"articleTitle": "These 6 essential tools will release, version, and maintain your NPM modules for you",
"articleUrl": "https://hackernoon.com/these-6-essential-tools-will-maintain-your-npm-modules-for-you-4cbbee88e0cb",
"date": "Wed, 25 Apr 2018 16:58:27 GMT",
"authorUrl": "https://hackernoon.com/@patrickleet",
"authorName": "Patrick Lee Scott",
"minRead": "12 min read"
},
{
"claps": 2300,
"articleTitle": "How to use the new React context API",
"articleUrl": "https://hackernoon.com/how-to-use-the-new-react-context-api-fce011e7d87",
"date": "Thu, 12 Apr 2018 14:10:31 GMT",
"authorUrl": "https://hackernoon.com/@daniel.js.craft",
"authorName": "Daniel — JS Craft",
"minRead": "5 min read"
},
{
"claps": 2300,
"articleTitle": "Copying text to clipboard with JavaScript",
"articleUrl": "https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f",
"date": "Tue, 20 Feb 2018 15:11:21 GMT",
"authorUrl": "https://hackernoon.com/@chalarangelo",
"authorName": "Angelos Chalaris",
"minRead": "2 min read"
},
{
"claps": 2200,
"articleTitle": "Full Stack Web Application using React, Node.js, Express and Webpack",
"articleUrl": "https://hackernoon.com/full-stack-web-application-using-react-node-js-express-and-webpack-97dbd5b9d708",
"date": "Mon, 16 Apr 2018 08:15:18 GMT",
"authorUrl": "https://hackernoon.com/@crsandeep",
"authorName": "Sandeep Raveesh",
"minRead": "6 min read"
},
{
"claps": 2200,
"articleTitle": "Problematic React Lifecycle Methods are Going Away in React 17",
"articleUrl": "https://hackernoon.com/problematic-react-lifecycle-methods-are-going-away-in-react-17-4216acc7d58b",
"date": "Fri, 30 Mar 2018 18:21:07 GMT",
"authorUrl": "https://hackernoon.com/@adhithiravi",
"authorName": "Adhithi Ravichandran",
"minRead": "4 min read"
},
{
"claps": 2200,
"articleTitle": "Next.js, Razzle, CRA. Why you should use them for a next project.",
"articleUrl": "https://hackernoon.com/next-js-razzle-cra-why-you-should-use-them-for-a-next-project-a78d320de97f",
"date": "Sun, 14 Jan 2018 10:20:46 GMT",
"authorUrl": "https://hackernoon.com/@vladimirmetnew",
"authorName": "Vladimir Metnew",
"minRead": "5 min read"
},
{
"claps": 2100,
"articleTitle": "Testing Node.js in 2018",
"articleUrl": "https://hackernoon.com/testing-node-js-in-2018-10a04dd77391",
"date": "Thu, 05 Jul 2018 15:37:23 GMT",
"authorUrl": "https://hackernoon.com/@nparsons08",
"authorName": "Nick Parsons",
"minRead": "9 min read"
},
{
"claps": 2100,
"articleTitle": "I abandoned React in favor of Hyperapp — Here’s why",
"articleUrl": "https://hackernoon.com/i-abandonded-react-in-favor-of-hyperapp-heres-why-df65638f8a79",
"date": "Wed, 27 Jun 2018 11:21:01 GMT",
"authorUrl": "https://hackernoon.com/@chalarangelo",
"authorName": "Angelos Chalaris",
"minRead": "4 min read"
},
{
"claps": 2100,
"articleTitle": "I used to hate JavaScript. Now I like it.",
"articleUrl": "https://hackernoon.com/i-used-to-hate-javascript-now-im-not-sure-why-7fc58a524bd1",
"date": "Tue, 23 Jan 2018 11:48:52 GMT",
"authorUrl": "https://hackernoon.com/@joey.clover",
"authorName": "Joey Clover",
"minRead": "4 min read"
},
{
"claps": 2100,
"articleTitle": "📝 Building a static blog using Gatsby and Strapi",
"articleUrl": "https://hackernoon.com/building-a-static-blog-using-gatsby-and-strapi-8b5acfc82ad8",
"date": "Thu, 18 Jan 2018 12:13:32 GMT",
"authorUrl": "https://hackernoon.com/@strapi",
"authorName": "Strapi",
"minRead": "8 min read"
},
{
"claps": 2000,
"articleTitle": "Wait a Moment.js!",
"articleUrl": "https://hackernoon.com/wait-a-moment-js-80e329fcfc3",
"date": "Sun, 26 Aug 2018 15:14:06 GMT",
"authorUrl": "https://hackernoon.com/@shaunmstone",
"authorName": "Shaun Michael Stone",
"minRead": "3 min read"
},
{
"claps": 2000,
"articleTitle": "Javascript ES6 — You don’t really need to learn Generators",
"articleUrl": "https://hackernoon.com/javascript-es6-you-dont-really-need-to-learn-generators-96aa2e9114fa",
"date": "Wed, 11 Jul 2018 01:52:45 GMT",
"authorUrl": "https://hackernoon.com/@_bengarrison",
"authorName": "Ben Garrison",
"minRead": "4 min read"
},
{
"claps": 2000,
"articleTitle": "Do more with less! Using render props",
"articleUrl": "https://hackernoon.com/do-more-with-less-using-render-props-de5bcdfbe74c",
"date": "Mon, 22 Jan 2018 19:34:31 GMT",
"authorUrl": "https://hackernoon.com/@joomiguelcunha",
"authorName": "João Miguel Cunha",
"minRead": "4 min read"
},
{
"claps": 1940,
"articleTitle": "Bootstrap Framework - Best Practices",
"articleUrl": "https://hackernoon.com/bootstrap-framework-best-practises-b1d81c02d6cf",
"date": "Tue, 19 Jun 2018 12:16:01 GMT",
"authorUrl": "https://hackernoon.com/@dvlden",
"authorName": "Nenad Novaković",
"minRead": "8 min read"
},
{
"claps": 1900,
"articleTitle": "5 book recommendations for developers",
"articleUrl": "https://hackernoon.com/5-book-recommendations-for-developers-1781df7ebdd1",
"date": "Sun, 25 Mar 2018 10:01:01 GMT",
"authorUrl": "https://hackernoon.com/@arun4033622",
"authorName": "Arun Kumar",
"minRead": "4 min read"
},
{
"claps": 1800,
"articleTitle": "Moving to a Headless CMS? First Change Your Mindset!",
"articleUrl": "https://hackernoon.com/headless-cms-first-change-your-mindset-e9f6d8b6a41e",
"date": "Mon, 09 Apr 2018 19:58:06 GMT",
"authorUrl": "https://hackernoon.com/@petrpalas",
"authorName": "Petr Palas",
"minRead": "8 min read"
},
{
"claps": 1700,
"articleTitle": "Functional Programming: Alternatives to the IF #Functional #JavaScript",
"articleUrl": "https://hackernoon.com/functional-programming-alternatives-to-the-if-functional-javascript-8804905db43e",
"date": "Mon, 09 Apr 2018 18:28:42 GMT",
"authorUrl": "https://hackernoon.com/@joelthoms",
"authorName": "Joel Thoms",
"minRead": "2 min read"
},
{
"claps": 1700,
"articleTitle": "Patterns — Generic Repository with Typescript and Node.js",
"articleUrl": "https://hackernoon.com/generic-repository-with-typescript-and-node-js-731c10a1b98e",
"date": "Tue, 20 Mar 2018 12:06:00 GMT",
"authorUrl": "https://hackernoon.com/@erickwendel",
"authorName": "Erick Wendel",
"minRead": "6 min read"
},
{
"claps": 1700,
"articleTitle": "React Authentication in Depth",
"articleUrl": "https://hackernoon.com/react-authentication-in-depth-4deebda9aa45",
"date": "Tue, 13 Mar 2018 15:50:47 GMT",
"authorUrl": "https://hackernoon.com/@dabit3",
"authorName": "Nader Dabit",
"minRead": "6 min read"
},
{
"claps": 1600,
"articleTitle": "The status of JavaScript libraries & frameworks: 2018 & beyond.",
"articleUrl": "https://hackernoon.com/the-status-of-javascript-libraries-frameworks-2018-beyond-3a5a7cae7513",
"date": "Fri, 30 Mar 2018 07:48:20 GMT",
"authorUrl": "https://hackernoon.com/@alberto.park",
"authorName": "Jae Sung Park",
"minRead": "12 min read"
},
{
"claps": 1600,
"articleTitle": "How to take advantage of Local Storage in your React projects",
"articleUrl": "https://hackernoon.com/how-to-take-advantage-of-local-storage-in-your-react-projects-a895f2b2d3f2",
"date": "Sun, 22 Apr 2018 17:50:10 GMT",
"authorUrl": "https://hackernoon.com/@ryanjyost",
"authorName": "Ryan J. Yost",
"minRead": "5 min read"
},
{
"claps": 1600,
"articleTitle": "Selectors in Redux are a MUST",
"articleUrl": "https://hackernoon.com/selectors-in-redux-are-a-must-d6b0637c79b7",
"date": "Mon, 19 Feb 2018 16:35:48 GMT",
"authorUrl": "https://hackernoon.com/@riccardoodone",
"authorName": "Riccardo Odone",
"minRead": "4 min read"
},
{
"claps": 1600,
"articleTitle": "RxJS — Reduce Angular app bundle size using lettable operators",
"articleUrl": "https://hackernoon.com/rxjs-reduce-bundle-size-using-lettable-operators-418307295e85",
"date": "Sat, 06 Jan 2018 19:04:27 GMT",
"authorUrl": "https://hackernoon.com/@Sureshkumar_Ash",
"authorName": "Ashwin Sureshkumar",
"minRead": "4 min read"
},
{
"claps": 1500,
"articleTitle": "The Good and the Bad of Angular Development",
"articleUrl": "https://hackernoon.com/the-good-and-the-bad-of-angular-development-b30220bf010a",
"date": "Tue, 18 Sep 2018 13:58:22 GMT",
"authorUrl": "https://hackernoon.com/@AltexSoft",
"authorName": "AltexSoft Inc",
"minRead": "15 min read"
},
{
"claps": 1500,
"articleTitle": "Replacing ‘componentWillReceiveProps’ with ‘getDerivedStateFromProps’",
"articleUrl": "https://hackernoon.com/replacing-componentwillreceiveprops-with-getderivedstatefromprops-c3956f7ce607",
"date": "Mon, 14 May 2018 10:25:20 GMT",
"authorUrl": "https://hackernoon.com/@amanshu_kataria",
"authorName": "Amanshu Kataria",
"minRead": "2 min read"
},
{
"claps": 1500,
"articleTitle": "Make your GraphQL API Easier To Adopt Through Components",
"articleUrl": "https://hackernoon.com/make-your-graphql-api-easier-to-adopt-through-components-74b022f195c1",
"date": "Tue, 20 Mar 2018 17:55:31 GMT",
"authorUrl": "https://hackernoon.com/@giladshoham",
"authorName": "Gilad Shoham",
"minRead": "7 min read"
},
{
"claps": 1500,
"articleTitle": "Making Your Code Beautiful",
"articleUrl": "https://hackernoon.com/presenting-your-code-beautifully-fdbab9e6fb68",
"date": "Wed, 07 Mar 2018 23:52:58 GMT",
"authorUrl": "https://hackernoon.com/@transitive_bs",
"authorName": "Travis Fischer",
"minRead": "6 min read"
},
{
"claps": 1500,
"articleTitle": "Webpack 4 tutorial: All You Need to Know, from 0 Conf to Production Mode",
"articleUrl": "https://hackernoon.com/webpack-4-tutorial-all-you-need-to-know-from-0-conf-to-production-mode-d32759d0dc2d",
"date": "Fri, 19 Jan 2018 14:51:26 GMT",
"authorUrl": "https://hackernoon.com/@valentinog",
"authorName": "Valentino Gagliardi",
"minRead": "4 min read"
},
{
"claps": 1400,
"articleTitle": "The 2018 React JS RoadMap",
"articleUrl": "https://hackernoon.com/the-2018-react-js-roadmap-4d0a43814c02",
"date": "Mon, 19 Nov 2018 03:26:01 GMT",
"authorUrl": "https://hackernoon.com/@javinpaul",
"authorName": "javinpaul",
"minRead": "14 min read"
},
{
"claps": 1400,
"articleTitle": "Top JavaScript Trends To Look For In 2019",
"articleUrl": "https://hackernoon.com/which-top-javascript-trends-to-look-in-2019-528072bf0082",
"date": "Thu, 18 Oct 2018 12:26:40 GMT",
"authorUrl": "https://hackernoon.com/@valuecoders.vc",
"authorName": "Mantra Malhotra",
"minRead": "6 min read"
},
{
"claps": 1400,
"articleTitle": "12 Frameworks Java Web Developers Should learn in 2019",
"articleUrl": "https://hackernoon.com/12-frameworks-java-web-developers-should-learn-in-2018-edae59315244",
"date": "Mon, 12 Mar 2018 00:00:00 GMT",
"authorUrl": "https://hackernoon.com/@javinpaul",
"authorName": "javinpaul",
"minRead": "8 min read"
},
{
"claps": 1400,
"articleTitle": "Enforcing a single web socket connection per user with Node.js, Socket.IO, and Redis",
"articleUrl": "https://hackernoon.com/enforcing-a-single-web-socket-connection-per-user-with-node-js-socket-io-and-redis-65f9eb57f66a",
"date": "Mon, 30 Jul 2018 13:31:01 GMT",
"authorUrl": "https://hackernoon.com/@mariotacke",
"authorName": "Mario Tacke",
"minRead": "7 min read"
},
{
"claps": 1400,
"articleTitle": "Understanding async-await in Javascript",
"articleUrl": "https://hackernoon.com/understanding-async-await-in-javascript-1d81bb079b2c",
"date": "Fri, 20 Jul 2018 15:45:45 GMT",
"authorUrl": "https://hackernoon.com/@gokulnk",
"authorName": "Gokul N K",
"minRead": "11 min read"
},
{
"claps": 1400,
"articleTitle": "How To Speed Up Continuous Integration Build With New NPM CI And package-lock.json",
"articleUrl": "https://hackernoon.com/how-to-speed-up-continuous-integration-build-with-new-npm-ci-and-package-lock-json-7647f91751a",
"date": "Fri, 23 Feb 2018 12:30:03 GMT",
"authorUrl": "https://hackernoon.com/@tomastrajan",
"authorName": "Tomas Trajan",
"minRead": "5 min read"
},
{
"claps": 1400,
"articleTitle": "Javascript performance test - for vs for each vs (map, reduce, filter, find).",
"articleUrl": "https://hackernoon.com/javascript-performance-test-for-vs-for-each-vs-map-reduce-filter-find-32c1113f19d7",
"date": "Wed, 09 May 2018 19:47:33 GMT",
"authorUrl": "https://hackernoon.com/@ideepak.jsd",
"authorName": "Deepak Gupta",
"minRead": "3 min read"
},
{
"claps": 1400,
"articleTitle": "The Prosperous Software Consultant",
"articleUrl": "https://hackernoon.com/the-prosperous-software-consultant-5dc8d705c5dd",
"date": "Wed, 07 Mar 2018 18:27:03 GMT",
"authorUrl": "https://hackernoon.com/@dabit3",
"authorName": "Nader Dabit",
"minRead": "10 min read"
},
{
"claps": 1400,
"articleTitle": "5 Practical Ways To Share Code: From NPM To Lerna And Bit",
"articleUrl": "https://hackernoon.com/5-practical-ways-to-share-code-from-npm-to-lerna-and-bit-732f2a4db512",
"date": "Mon, 12 Feb 2018 10:16:01 GMT",
"authorUrl": "https://hackernoon.com/@JonathanSaring",
"authorName": "Jonathan Saring",
"minRead": "7 min read"
},
{
"claps": 1300,
"articleTitle": "Learn some useful JavaScript tricks with 30 seconds of code",
"articleUrl": "https://hackernoon.com/learn-some-useful-javascript-tricks-with-30-seconds-of-code-ca97e744ec5f",
"date": "Tue, 29 May 2018 17:23:55 GMT",
"authorUrl": "https://hackernoon.com/@chalarangelo",
"authorName": "Angelos Chalaris",
"minRead": "4 min read"
},
{
"claps": 1300,
"articleTitle": "Async-Await ≈ Generators + Promises",
"articleUrl": "https://hackernoon.com/async-await-generators-promises-51f1a6ceede2",
"date": "Wed, 02 May 2018 22:08:51 GMT",
"authorUrl": "https://hackernoon.com/@chanakyabhardwaj",
"authorName": "Cha",
"minRead": "6 min read"
},
{
"claps": 1300,
"articleTitle": "Async/Await Essentials for Production: Loops, Control Flows & Limits",
"articleUrl": "https://hackernoon.com/async-await-essentials-for-production-loops-control-flows-limits-23eb40f171bd",
"date": "Mon, 15 Jan 2018 19:51:18 GMT",
"authorUrl": "https://hackernoon.com/@schahriar",
"authorName": "Schahriar SaffarShargh",
"minRead": "6 min read"
},
{
"claps": 1300,
"articleTitle": "Webpack Bundle Analysis — A necessary step for all React, Angular, Vue application developers!",
"articleUrl": "https://hackernoon.com/webpack-bundle-analysis-a-necessary-step-for-all-react-angular-vue-application-developers-fe6564fa62ca",
"date": "Mon, 08 Jan 2018 19:33:48 GMT",
"authorUrl": "https://hackernoon.com/@dharapvj",
"authorName": "Vijay Dharap",
"minRead": "6 min read"
},
{
"claps": 1200,
"articleTitle": "Lazy loading (and preloading) components in React 16.6",
"articleUrl": "https://hackernoon.com/lazy-loading-and-preloading-components-in-react-16-6-804de091c82d",
"date": "Mon, 26 Nov 2018 18:31:01 GMT",
"authorUrl": "https://hackernoon.com/@pomber",
"authorName": "Rodrigo Pombo",
"minRead": "6 min read"
},
{
"claps": 1200,
"articleTitle": "Converting Your JS Boiler-Plate into NPM Modules : The Definitive Guide",
"articleUrl": "https://hackernoon.com/converting-your-js-boiler-plate-into-npm-modules-the-definitive-guide-3dfa0f9f0a9c",
"date": "Wed, 29 Aug 2018 11:01:01 GMT",
"authorUrl": "https://hackernoon.com/@akashsjoshi",
"authorName": "Akash Joshi",
"minRead": "2 min read"
},
{
"claps": 1100,
"articleTitle": "TensorFlow.js — Real-Time Object Detection in 10 Lines of Code",
"articleUrl": "https://hackernoon.com/tensorflow-js-real-time-object-detection-in-10-lines-of-code-baf15dfb95b2",
"date": "Mon, 10 Dec 2018 15:31:00 GMT",
"authorUrl": "https://hackernoon.com/@bourdakos1",
"authorName": "Nick Bourdakos",
"minRead": "3 min read"
},
{
"claps": 1100,
"articleTitle": "Building a Redux-like State Manager for React",
"articleUrl": "https://hackernoon.com/building-a-redux-like-state-manager-for-react-cd75cc2853b3",
"date": "Mon, 03 Dec 2018 16:11:00 GMT",
"authorUrl": "https://hackernoon.com/@jahans3",
"authorName": "Josh J",
"minRead": "17 min read"
},
{
"claps": 1100,
"articleTitle": "Could Python’s Popularity Outperform JavaScript in the Next Five Years?",
"articleUrl": "https://hackernoon.com/could-pythons-popularity-outperform-javascript-in-the-next-five-years-abed4e307224",
"date": "Mon, 17 Sep 2018 11:36:01 GMT",
"authorUrl": "https://hackernoon.com/@ledumjg",
"authorName": "Dr. Michael J. Garbade",
"minRead": "5 min read"
},
{
"claps": 1100,
"articleTitle": "50 popular JavaScript open-source projects on GitHub in 2018",
"articleUrl": "https://hackernoon.com/50-popular-javascript-open-source-projects-on-github-in-2018-469c11b48b8d",
"date": "Thu, 30 Aug 2018 12:16:01 GMT",
"authorUrl": "https://hackernoon.com/@kazup",
"authorName": "Kazz Yokomizo",
"minRead": "11 min read"
},
{
"claps": 1100,
"articleTitle": "JavaScript: Promises and Why Async/Await Wins the Battle",
"articleUrl": "https://hackernoon.com/javascript-promises-and-why-async-await-wins-the-battle-4fc9d15d509f",
"date": "Thu, 26 Jul 2018 17:12:43 GMT",
"authorUrl": "https://hackernoon.com/@nparsons08",
"authorName": "Nick Parsons",
"minRead": "5 min read"
},
{
"claps": 1100,
"articleTitle": "How to choose the right technology for your next CMS project",
"articleUrl": "https://hackernoon.com/how-to-choose-the-right-technology-for-your-next-cms-project-c9aaaf7303ba",
"date": "Tue, 10 Jul 2018 22:46:00 GMT",
"authorUrl": "https://hackernoon.com/@petrpalas",
"authorName": "Petr Palas",
"minRead": "6 min read"
},
{
"claps": 1100,
"articleTitle": "Building a Music Streaming App using React Native",
"articleUrl": "https://hackernoon.com/building-a-music-streaming-app-using-react-native-6d0878a13ba4",
"date": "Mon, 14 May 2018 06:44:27 GMT",
"authorUrl": "https://hackernoon.com/@aakashns",
"authorName": "Aakash N S",
"minRead": "5 min read"
},
{
"claps": 1100,
"articleTitle": "REAL programmers don’t use Visual Studio",
"articleUrl": "https://hackernoon.com/real-programmers-dont-use-visual-studio-1e57974c7d4a",
"date": "Fri, 06 Apr 2018 11:00:03 GMT",
"authorUrl": "https://hackernoon.com/@dominik.t",
"authorName": "Dominik Tarnowski",
"minRead": "3 min read"
},
{
"claps": 1100,
"articleTitle": "Native apps with Vue.js: Weex or NativeScript? — chapter II",
"articleUrl": "https://hackernoon.com/native-apps-with-vue-js-weex-or-nativescript-chapter-ii-6d1776da090d",
"date": "Tue, 06 Mar 2018 01:14:08 GMT",
"authorUrl": "https://hackernoon.com/@tiagoreisalves",
"authorName": "Tiago Alves",
"minRead": "3 min read"
},
{
"claps": 1100,
"articleTitle": "What is a Full Stack Developer in 2018 and How to Become One?",
"articleUrl": "https://hackernoon.com/what-is-a-full-stack-developer-in-2018-and-how-to-become-one-ca82e8906c87",
"date": "Tue, 06 Mar 2018 14:03:03 GMT",
"authorUrl": "https://hackernoon.com/@kate_ganiukova",
"authorName": "Kate Ganiukova",
"minRead": "6 min read"
},
{
"claps": 1100,
"articleTitle": "Introducing the Vanilla Template to CodeSandbox",
"articleUrl": "https://hackernoon.com/introducing-the-vanilla-template-to-codesandbox-32244b58acec",
"date": "Wed, 28 Feb 2018 16:31:44 GMT",
"authorUrl": "https://hackernoon.com/@compuives",
"authorName": "Ives van Hoorne",
"minRead": "3 min read"
},
{
"claps": 1100,
"articleTitle": "Building An E-commerce Search App with React Native 🔰",
"articleUrl": "https://hackernoon.com/building-an-e-commerce-search-app-with-react-native-2c87760a2315",
"date": "Tue, 27 Feb 2018 13:06:01 GMT",
"authorUrl": "https://hackernoon.com/@metagrover",
"authorName": "Deepak Grover",
"minRead": "10 min read"
},
{
"claps": 1100,
"articleTitle": "8 Tips to Build Awesome React Apps in 2018",
"articleUrl": "https://hackernoon.com/8-tips-to-build-awesome-react-apps-in-2018-13af3653d2b8",
"date": "Tue, 23 Jan 2018 14:17:01 GMT",
"authorUrl": "https://hackernoon.com/@RisingStack",
"authorName": "RisingStack",
"minRead": "4 min read"
},
{
"claps": 1000,
"articleTitle": "Building simple Point of Sale system with Node.js & React.js",
"articleUrl": "https://hackernoon.com/building-simple-point-of-sale-system-with-node-js-react-js-a0e51059ba33",
"date": "Sat, 31 Mar 2018 19:26:14 GMT",
"authorUrl": "https://hackernoon.com/@krissanawat",
"authorName": "Krissanawat Kaewsanmuang",
"minRead": "18 min read"
},
{
"claps": 1000,
"articleTitle": "What Happens When a Shitty Coder Builds Your Backend",
"articleUrl": "https://hackernoon.com/what-happens-when-a-shitty-coder-builds-your-backend-4cb0a57ff6ef",
"date": "Fri, 27 Jul 2018 21:33:35 GMT",
"authorUrl": "https://hackernoon.com/@eloyekunle",
"authorName": "Elijah Oyekunle",
"minRead": "6 min read"
},