forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2249 lines (2243 loc) · 113 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Web Survey Report 2018 | Node.js</title>
<link rel="apple-touch-icon" href="/static/apple-touch-icon.png">
<link rel="icon" sizes="32x32" type="image/png" href="/static/favicon.png">
<meta property="og:site_name" content="Node.js">
<meta property="og:title" content="Web Survey Report 2018 | Node.js">
<meta property="og:image" content="https://nodejs.org/static/images/logo-hexagon-card.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="224">
<meta property="og:image:height" content="256">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@nodejs">
<meta name="twitter:title" content="Web Survey Report 2018 | Node.js">
<meta name="twitter:image" content="https://nodejs.org/static/images/logo-hexagon-card.png">
<meta name="twitter:image:alt" content="The Node.js Hexagon Logo">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap.min.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" >
</head>
<body>
<div class="header">
<img src="images/logo_header.png" style="margin-top: 70px; margin-bottom: 50px;">
<br>
<h1>2018 Node.js User Survey Report</h1>
</div>
<br/><br/>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 row">
<div class="col-md-3">
<div class="side-nav hidden-xs hidden-sm affix" data-offset-top="540" data-spy="affix">
<ul class="nav main-nav">
<li class="active">
<a href="#overview">Overview</a>
</li>
<li>
<a href="#profile1">Business/Personal Profile</a>
<ol class="sub-nav">
<li>
<a href="#Personal-Characteristics">Personal Characteristics</a>
</li>
<li>
<a href="#International-Presence">International Presence</a>
</li>
<li>
<a href="#Professional-Profile">Professional Profile</a>
</li>
<li>
<a href="#Profile-by-Region">Profile by Region</a>
</li>
</ol>
</li>
<li>
<a href="#profile2">Node.js Usage Profile</a>
<ol class="sub-nav">
<li>
<a href="#Experience-with-Node">Experience with Node.js</a>
</li>
<li>
<a href="#Development-Focus">Development Focus</a>
</li>
<li>
<a href="#Profile-by-Development-Area">Profile by Development Area</a>
</li>
<li>
<a href="#Where-Deploy-Code">Where Deploy Code</a>
</li>
<li>
<a href="#Types-of-Development-Work">Types of Development Work</a>
</li>
<li>
<a href="#Tools-Technologies-Used">Tools/Technologies Used</a>
</li>
<li>
<a href="#Correlated-Technologies">Correlated Technologies</a>
</li>
<li>
<a href="#Transpilers-and-Bundlers">Transpilers and Bundlers</a>
</li>
<li>
<a href="#Primary-OS-Distro">Primary OS/Distro</a>
</li>
</ol>
</li>
<li>
<a href="#language">Languages Used</a>
<ol class="sub-nav">
<li>
<a href="#Languages-Used">Languages Used</a>
</li>
<li>
<a href="#Expected-Change-In-Node-Usage">Expected Change Node Usage</a>
</li>
<li>
<a href="#Expected-Change-In-Other-Languages">Expected Change Other Languages</a>
</li>
</ol>
</li>
<li>
<a href="#package">Package Managers</a>
<ol class="sub-nav">
<li>
<a href="#Package-Manager-Usage">Package Manager Usage</a>
</li>
<li>
<a href="#Managing-Different-Packages">Managing Different Packages</a>
</li>
<li>
<a href="#Availability-of-Multiple-Registries">Availability of Multiple Registries</a>
</li>
</ol>
</li>
<li>
<a href="#learning">Learning Node.js</a>
<ol class="sub-nav">
<li>
<a href="#Informal-Education">Informal Education</a>
</li>
<li>
<a href="#How-Learned-Node">How Learned Node</a>
</li>
<li>
<a href="#Ease-of-Learning-Node">Ease of Learning Node</a>
</li>
<li>
<a href="#Learning-Resources">Learning Resources</a>
</li>
<li>
<a href="#Resources-Used">Resources Used</a>
</li>
</ol>
</li>
<li>
<a href="#version">Node.js Versions & LTS</a>
<ol class="sub-nav">
<li>
<a href="#Version-Managers">Version Managers</a>
</li>
<li>
<a href="#Release-Line">Release Line</a>
</li>
<li>
<a href="#LTS-Support">LTS Support</a>
</li>
<li>
<a href="#Understanding-Newer-Node-Users">Understanding Newer Node Users</a>
</li>
</ol>
</li>
<li>
<a href="#impact">Node.js Impact & Getting Involved</a>
<ol class="sub-nav">
<li>
<a href="#Words-to-Describe-Node">Words to Describe Node.js</a>
</li>
<li>
<a href="#Business-Impact">Business Impact</a>
</li>
</ol>
</li>
<li>
<a href="#methodology">Methodology</a>
</li>
</ul>
<ul class="nav main-nav">
<li><a href="2018-nodejs-user-survey-report.pdf">Download as PDF</a></li>
<li><a href="2018-nodejs-user-survey-raw-data.xlsx">Get the raw data (Excel)</a></li>
</ul>
<ul class="back-to-top _muted">
<li>
<a href="#top">Back to top   <img src="images/picture2.png"></a>
</li>
</ul>
</div>
</div>
<div class="col-md-9">
<section id="overview">
<div class="section-header">
Overview
</div>
<div class="section-content">
<p class="overview-style">This is the third annual Node.js User Survey conducted by the Node.js Foundation. The survey was fielded in English and Chinese from October 2017 through January 2018, yielding 1,626 respondents. The primary objective of the research is to profile Node.js users, understand how they use Node and gauge satisfaction with and anticipated future use of Node and other related technologies. To ensure data integrity and unbiased interpretation, data analysis and reporting was conducted by Research Collaborative, an independent market research firm.</p>
<p>Node.js is continuing to have a positive impact on users particularly around <b>developer productivity and satisfaction</b>; when asked to describe Node.js, respondents use mostly positive terms like – “fast”, “easy”, “awesome”, “powerful”, “flexible” and even “fun”.</p>
<ul>
<li>
The largest percentage of users deploy on Amazon Web Services followed by on-premise infrastructure. Though a significant number of users deploy to Heroku, DigitalOcean, Google Cloud Platform and Microsoft Azure.
</li>
<li>
Web Apps remain the most popular use case for Node, with 85% of respondents indicating they use Node for this work. 43% of respondents indicate they use Node for enterprise applications.
</li>
<li>
Integration with databases, front-end frameworks and load balancing are at the forefront of the range of technologies integrated with Node.js.
</li>
<li>
Most users expect to increase their use of Node.js, particularly in Latin America and EMEA.
</li>
<li>
Babel is the leading transpiler, but back-end, full stack and ‘other’ developers are increasing their use of Typescript. Among Module Bundlers, Webpack seems to be consolidating its lead across most regions and development areas.
</li>
<li>
is becoming increasingly important to users to manage different packages for multiple environments. npm is by far the most widely used package manager, but Yarn is gaining in popularity in many segments.
</li>
</ul>
<p>Node.js continues to see it’s popularity grow on every continent and in a very broad set of use cases due to its flexibility and utility for a wide variety of use cases.</p>
</div>
</section>
<section id="profile1">
<div class="section-header">
Business/Personal Profile
</div>
<div class="section-content row">
<ul>
<li type="1">
As with last year, the typical node.js user is male, age 31 and college educated.
</li>
<li type="1">
A majority are developers (as opposed to dev managers), in small (<100 employees) companies, with 5+ years of professional development experience.
</li>
<li type="1">
Although many have 10+ years total development experience, this year’s respondents are less experienced in terms of total development experience.
</li>
<li type="1">
Respondents come from across the globe, but most are in US/CA or EMEA.
</li>
<li type="1">
Collectively, respondents speak over 60 languages, but for nearly half English is primary.
</li>
<li type="1">
The mix of countries has changed somewhat versus last year – with fewer from US and China and more from India and Canada.
</li>
<li type="1">
There are considerable differences in personal and business characteristics, with those from US/CA older, more experienced, and from larger companies than users elsewhere.
</li>
</ul>
<!-- <img src="images/picture5.png" width="100%" height="410"> -->
</div>
<div class="section-header" id="Personal-Characteristics">
Personal Characteristics
</div>
<div class="section-content">
<ul>
<li>
The typical Node.js user is male, age 31, college educated and white.
</li>
<li>
Respondents are slightly older in this wave, but gender and education are unchanged.
</li>
</ul>
<div class="imagesection">
<div class="row">
<div class="col-md-6">
<img src="images/charts/capture1_1.png" data-capture="1_1">
</div>
<div class="col-md-6">
<img src="images/charts/capture1_2.png">
</div>
</div>
<br>
<div id="tab7content"></div>
<!-- https://twitter.com/intent/tweet?url=http://bit.ly/1vpdN6k&text=pic.twitter.com/dDSZ71PA0a mymessage -->
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Personal%20Characteristics%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Personal-Characteristics%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="International-Presence">
International Presence
</div>
<div class="section-content">
<ul>
<li>
As in the prior study, respondents come from across the globe, but the mix of countries has changed slightly with fewer respondents from the US and China, and more from India and Canada.
</li>
<li>
Fewer than half consider English their primary language.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture2.png" data-capture="2">
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20International%20Presence%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23International-Presence%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Professional-Profile">
Professional Profile
</div>
<div class="section-content">
<ul>
<li>
The typical respondent is a developer in a small (<100 employees) firm, with 5 years professional experience,
</li>
<li>
Although many have 10+ years total development experience, respondents are somewhat less experienced overall in this wave.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture3.png" data-capture="3">
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="
https://twitter.com/intent/tweet?text=Check%20out%20Professional%20Profile%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Professional-Profile%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Profile-by-Region">
Profile by Region
</div>
<div class="section-content">
<ul>
<li>
There are notable differences in business and personal profile by region.
</li>
<li>
Those in the US/CA are older, more experienced and work in larger companies than their peers around the globe.
</li>
<li>
EMEA respondents are particularly highly educated.
</li>
<li>
The profile of APAC respondents has changed in many respects vs. last wave – perhaps not surprising given the drop in China as a percentage of APAC respondents this year. APAC respondents are relatively new to development.
</li>
</ul>
<div class="imagesection">
<h3><b>Business Characteristics</b></h3>
<h4><i>(By Region)</i></h4>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab10_1_1">US/CA</a></li>
<li><a data-toggle="tab" href="#tab10_1_2">EMEA</a></li>
<li><a data-toggle="tab" href="#tab10_1_3">APAC</a></li>
<li><a data-toggle="tab" href="#tab10_1_4">LatAm</a></li>
</ul>
<div class="tab-content">
<div id="tab10_1_1" class="tab-pane fade in active">
<div id="tab10_1_1content"></div>
</div>
<div id="tab10_1_2" class="tab-pane fade">
<div id="tab10_1_2content"></div>
</div>
<div id="tab10_1_3" class="tab-pane fade">
<div id="tab10_1_3content"></div>
</div>
<div id="tab10_1_4" class="tab-pane fade">
<div id="tab10_1_4content"></div>
</div>
</div>
</div>
<h3><b>Personal Characteristics</b></h3>
<h4><i>(By Region)</i></h4>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab10_2_1">US/CA</a></li>
<li><a data-toggle="tab" href="#tab10_2_2">EMEA</a></li>
<li><a data-toggle="tab" href="#tab10_2_3">APAC</a></li>
<li><a data-toggle="tab" href="#tab10_2_4">LatAm</a></li>
</ul>
<div class="tab-content">
<div id="tab10_2_1" class="tab-pane fade in active">
<div id="tab10_2_1content"></div>
</div>
<div id="tab10_2_2" class="tab-pane fade">
<div id="tab10_2_2content"></div>
</div>
<div id="tab10_2_3" class="tab-pane fade">
<div id="tab10_2_3content"></div>
</div>
<div id="tab10_2_4" class="tab-pane fade">
<div id="tab10_2_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Profile%20by%20Region%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Profile-by-Region%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
</section>
<section id="profile2">
<div class="section-header" id="profile2">
Node.js Usage Profile
</div>
<div class="section-content row">
<ul>
<li type="1">
As with last year, the typical user has been working with Node over 2 years, and spends more than half of his development time using it. The vast majority are developing web apps.
</li>
<li type="1">
Most respondents are primarily back-end or full stack development-focused, and they use Node.js more regularly at work than others do.
</li>
<li type="1">
Relatively few users are primarily focused on “other” non-traditional development areas, but those who are tend to be older and more highly educated than others.
</li>
<li type="1">
Users are deploying to a variety of platforms, but AWS is most widely used for production and On-premise or AWS for development. Heroku seems to be growing in popularity in APAC and Latin America.
</li>
<li type="1">
More than 4 in 5 back-end and full stack developers are using node.js frameworks; Express is tops, but Graph QL is increasingly prevalent this wave.
</li>
<li type="1">
Most are using a transpiler and module bundler (especially full stack and front-end developers). Babel is the preferred transpiler, but Typescript is growing. Webpack continues to dominate the module bundler space.
</li>
<li type="1">
Ubuntu is the primary OS/Distro used in production, and MAC OS in development – but Windows seems to be growing in popularity for both (especially in US/CA and EMEA).
</li>
</ul>
<!-- <img src="images/picture6.png" width="100%" height="560"> -->
</div>
<div class="section-header" id="Experience-with-Node">
Experience with Node.js
</div>
<div class="section-content">
<ul>
<li>
There has been no change in the Node.js usage profile since last wave.
</li>
<li>
The typical respondent has been using Node for just over 2 years, and spends more than half of his development time with Node.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture5.png" data-capture="5">
<div class="onl_login">
<div class="onl_socialButtons">
<a class="https://twitter.com/intent/tweet?text=Check%20out%20Experience%20with%20Node.js%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Experience-with-Node%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Development-Focus">
Development Focus
</div>
<div class="section-content">
<ul>
<li>
Three in four Node.js users are focused primarily on back-end or full stack development.
</li>
<li>
There has been a slight drop in this wave in those who have any focus on back-end development.
</li>
<li>
US/CA respondents are more focused on full stack than back-end.
</li>
<li>
Ops/DevOps is really only a focus in US/CA – although even here, it is not widely focused on.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture6.png" data-capture="6">
<h3><b>Primary Development Focus by Region</b></h3>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab13_1">US/CA</a></li>
<li><a data-toggle="tab" href="#tab13_2">EMEA</a></li>
<li><a data-toggle="tab" href="#tab13_3">APAC</a></li>
<li><a data-toggle="tab" href="#tab13_4">LatAm</a></li>
</ul>
<div class="tab-content">
<div id="tab13_1" class="tab-pane fade in active">
<div id="tab13_1content"></div>
</div>
<div id="tab13_2" class="tab-pane fade">
<div id="tab13_2content"></div>
</div>
<div id="tab13_3" class="tab-pane fade">
<div id="tab13_3content"></div>
</div>
<div id="tab13_4" class="tab-pane fade">
<div id="tab13_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Development%20Focus%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Development-Focus%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Profile-by-Development-Area">
Profile by Development Area
</div>
<div class="section-content">
<ul>
<li>
There are some differences in users’ business and personal characteristics based on development focus.
</li>
<li>
Full stack developers have been using Node the longest, and along with back-end developers, spend the most time with it.
</li>
<li>
Those outside of the three traditional development areas tend to be older and more highly educated than others.
</li>
</ul>
<div class="imagesection">
<h3><b>Business Characteristics</b></h3>
<h4><i>(By Primary Development Focus)</i></h4>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab14_1_1">Back-end</a></li>
<li><a data-toggle="tab" href="#tab14_1_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab14_1_3">Front-end</a></li>
<li><a data-toggle="tab" href="#tab14_1_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab14_1_1" class="tab-pane fade in active">
<div id="tab14_1_1content"></div>
</div>
<div id="tab14_1_2" class="tab-pane fade">
<div id="tab14_1_2content"></div>
</div>
<div id="tab14_1_3" class="tab-pane fade">
<div id="tab14_1_3content"></div>
</div>
<div id="tab14_1_4" class="tab-pane fade">
<div id="tab14_1_4content"></div>
</div>
</div>
</div>
<h3><b>Personal Characteristics</b></h3>
<h4><i>(By Primary Development Focus)</i></h4>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab14_2_1">Back-end</a></li>
<li><a data-toggle="tab" href="#tab14_2_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab14_2_3">Front-end</a></li>
<li><a data-toggle="tab" href="#tab14_2_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab14_2_1" class="tab-pane fade in active">
<div id="tab14_2_1content"></div>
</div>
<div id="tab14_2_2" class="tab-pane fade">
<div id="tab14_2_2content"></div>
</div>
<div id="tab14_2_3" class="tab-pane fade">
<div id="tab14_2_3content"></div>
</div>
<div id="tab14_2_4" class="tab-pane fade">
<div id="tab14_2_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Profile%20by%20Development%20Area%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Profile-by-Development-Area%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Where-Deploy-Code">
Where Deploy Code
</div>
<div class="section-content">
<ul>
<li>
AWS is the primary place where respondents deploy code for production, and it seems to be growing for use in development.
</li>
<li>
On-Premise infrastructure is also widely used, but has dropped for use in production since last year.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture8.png" data-capture="8">
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Where%20Deploy%20Code%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Where-Deploy-Code%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
<!-- </div>
<div class="section-header">
Where Deploy Code
</div>
<div class="section-content"> -->
<ul>
<li>
EMEA respondents are less likely than others to use AWS, preferring on-premise infrastructure. US/CA respondents are also likely to be deploying via on-premise infrastructure.
</li>
<li>
Heroku is growing in both APAC and Latin America, and is one of the top choices for deployment for development in Latin America.
</li>
</ul>
<div class="imagesection">
<h3><b>Where Primarily Deploy Node.js Code</b></h3>
<h4><i>(By Region)</i></h4>
<h5><i>For Production</i></h5>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab16_1_1">US/CA</a></li>
<li><a data-toggle="tab" href="#tab16_1_2">EMEA</a></li>
<li><a data-toggle="tab" href="#tab16_1_3">APAC</a></li>
<li><a data-toggle="tab" href="#tab16_1_4">LatAm</a></li>
</ul>
<div class="tab-content">
<div id="tab16_1_1" class="tab-pane fade in active">
<div id="tab16_1_1content"></div>
</div>
<div id="tab16_1_2" class="tab-pane fade">
<div id="tab16_1_2content"></div>
</div>
<div id="tab16_1_3" class="tab-pane fade">
<div id="tab16_1_3content"></div>
</div>
<div id="tab16_1_4" class="tab-pane fade">
<div id="tab16_1_4content"></div>
</div>
</div>
</div>
<h5><i>For Development</i></h5>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab16_2_1">US/CA</a></li>
<li><a data-toggle="tab" href="#tab16_2_2">EMEA</a></li>
<li><a data-toggle="tab" href="#tab16_2_3">APAC</a></li>
<li><a data-toggle="tab" href="#tab16_2_4">LatAm</a></li>
</ul>
<div class="tab-content">
<div id="tab16_2_1" class="tab-pane fade in active">
<div id="tab16_2_1content"></div>
</div>
<div id="tab16_2_2" class="tab-pane fade">
<div id="tab16_2_2content"></div>
</div>
<div id="tab16_2_3" class="tab-pane fade">
<div id="tab16_2_3content"></div>
</div>
<div id="tab16_2_4" class="tab-pane fade">
<div id="tab16_2_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Where%20Deploy%20Code%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Where-Deploy-Code%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
<!-- </div>
<div class="section-header">
Where Deploy Code
</div>
<div class="section-content"> -->
<ul>
<li>
Deployment also varies somewhat based on development focus.
</li>
<li>
AWS is widely used by back-end, full stack and front-end developers, but less so for others.
</li>
<li>
Heroku is relatively popular among full-stack developers.
</li>
</ul>
<div class="imagesection">
<h3><b>Where Primarily Deploy Node.js Code</b></h3>
<h4><i>(By Primary Development Focus)</i></h4>
<h5><i>For Production</i></h5>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab17_1_1">Back-end</a></li>
<li><a data-toggle="tab" href="#tab17_1_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab17_1_3">Front-end</a></li>
<li><a data-toggle="tab" href="#tab17_1_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab17_1_1" class="tab-pane fade in active">
<div id="tab17_1_1content"></div>
</div>
<div id="tab17_1_2" class="tab-pane fade">
<div id="tab17_1_2content"></div>
</div>
<div id="tab17_1_3" class="tab-pane fade">
<div id="tab17_1_3content"></div>
</div>
<div id="tab17_1_4" class="tab-pane fade">
<div id="tab17_1_4content"></div>
</div>
</div>
</div>
<h5><i>For Development</i></h5>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab17_2_1">Back-end</a></li>
<li><a data-toggle="tab" href="#tab17_2_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab17_2_3">Front-end</a></li>
<li><a data-toggle="tab" href="#tab17_2_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab17_2_1" class="tab-pane fade in active">
<div id="tab17_2_1content"></div>
</div>
<div id="tab17_2_2" class="tab-pane fade">
<div id="tab17_2_2content"></div>
</div>
<div id="tab17_2_3" class="tab-pane fade">
<div id="tab17_2_3content"></div>
</div>
<div id="tab17_2_4" class="tab-pane fade">
<div id="tab17_2_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Where%20Deploy%20Code%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Where-Deploy-Code%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Types-of-Development-Work">
Types of Development Work
</div>
<div class="section-content">
<ul>
<li>
As before, the vast majority of respondents are spending time developing web apps, particularly those in full stack or front end positions.
</li>
<li>
A notable minority also engage in enterprise and/or hobbyist work.
</li>
<li>
Those outside the traditional development areas are more likely to be working on embedded systems.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture11.png" data-capture="11">
<h3><b>Type of Work By Primary Development Focus</b></h3>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab18_1">Back-End</a></li>
<li><a data-toggle="tab" href="#tab18_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab18_3">Front-End</a></li>
<li><a data-toggle="tab" href="#tab18_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab18_1" class="tab-pane fade in active">
<div id="tab18_1content"></div>
</div>
<div id="tab18_2" class="tab-pane fade">
<div id="tab18_2content"></div>
</div>
<div id="tab18_3" class="tab-pane fade">
<div id="tab18_3content"></div>
</div>
<div id="tab18_4" class="tab-pane fade">
<div id="tab18_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Types%20of%20Development%20Work%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Types-of-Development-Work%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Tools-Technologies-Used">
Tools/Technologies Used
</div>
<div class="section-content">
<ul>
<li>
Respondents are using a range of tools with Node.js including, primarily: databases, libraries and Node.js frameworks.
</li>
<li>
There is considerable variation based on primary development focus – with back-end and full stack developers most likely to use a range of tools.
</li>
<li>
Messaging systems and CI are less commonly used than other tools – and usage has dropped since last year.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture12.png" data-capture="12">
<h3><b>Type of Tools By Primary Development Focus</b></h3>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab19_1">Back-End</a></li>
<li><a data-toggle="tab" href="#tab19_2">FullStack</a></li>
<li><a data-toggle="tab" href="#tab19_3">Front-End</a></li>
<li><a data-toggle="tab" href="#tab19_4">Other</a></li>
</ul>
<div class="tab-content">
<div id="tab19_1" class="tab-pane fade in active">
<div id="tab19_1content"></div>
</div>
<div id="tab19_2" class="tab-pane fade">
<div id="tab19_2content"></div>
</div>
<div id="tab19_3" class="tab-pane fade">
<div id="tab19_3content"></div>
</div>
<div id="tab19_4" class="tab-pane fade">
<div id="tab19_4content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Tools%20Technologies%20Used%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Tools-Technologies-Used%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
<!-- </div>
<div class="section-header">
Tools/Technologies Used
</div>
<div class="section-content"> -->
<ul>
<li>
Respondents are using a range of tools within each category, although in most categories, one or two tools dominate.
</li>
<li>
There has been a drop in usage for many specific tools – but some have increased since last year, including Angular 2, Vue, GraphQL, Docker and Kubernetes.
</li>
</ul>
<div class="imagesection">
<h3><b>Specific Tools/Technologies Used with Node.js</b></h3>
<h4><i>(in Past 12 Months)</i></h4>
<div>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab20_1"><br>DATABASES</a></li>
<li><a data-toggle="tab" href="#tab20_2">FRONT-END<br>FRAMEWORKS</a></li>
<li><a data-toggle="tab" href="#tab20_3">NODE.JS<br>FRAMEWORKS</a></li>
<li><a data-toggle="tab" href="#tab20_4">LOAD<br>BALANCING</a></li>
<li><a data-toggle="tab" href="#tab20_5">CONTAINERS/<br>CLOUD NATIVE</a></li>
<li><a data-toggle="tab" href="#tab20_6"><br>CI</a></li>
<li><a data-toggle="tab" href="#tab20_7">MESSAGING<br>SYSTEMS</a></li>
</ul>
<div class="tab-content">
<div id="tab20_1" class="tab-pane fade in active">
<div id="tab20_1content"></div>
</div>
<div id="tab20_2" class="tab-pane fade">
<div id="tab20_2content"></div>
</div>
<div id="tab20_3" class="tab-pane fade">
<div id="tab20_3content"></div>
</div>
<div id="tab20_4" class="tab-pane fade">
<div id="tab20_4content"></div>
</div>
<div id="tab20_5" class="tab-pane fade">
<div id="tab20_5content"></div>
</div>
<div id="tab20_6" class="tab-pane fade">
<div id="tab20_6content"></div>
</div>
<div id="tab20_7" class="tab-pane fade">
<div id="tab20_7content"></div>
</div>
</div>
</div>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Tools%20Technologies%20Used%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Tools-Technologies-Used
" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
<div class="section-header" id="Correlated-Technologies">
Correlated Technologies (Beta)
</div>
<div class="section-content">
<ul>
<li>
This interactive map shows the relationships between Node and other technologies used by survey respondents.
</li>
<li>
Select a Developer Segment and the connection types - All will show all the other tools/tech these developers use with Node.js. Strong will show only the technologies they use most, and Strong and Medium will show the next level of correlated tech.
</li>
<li>
You can Double Click on any circle to see just the technologies used with it. To go back, hit draw again.
</li>
<li>
Size of the circle represents popularity of a given tech among respondents.
</li>
<li>
There may be a few second delay after you hit draw before the map appears.
</li>
</ul>
<iframe src="graph.html" height="1000"></iframe>
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Correlated%20Technologies%20(Beta)%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Correlated-Technologies%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Transpilers-and-Bundlers">
Transpilers and Bundlers
</div>
<div class="section-content">
<ul>
<li>
Most respondents use a transpiler and module bundler – particularly front-end and full stack developers.
</li>
<li>
Use of transpilers has risen since last year; Babel is most common, but use of Typescript is on the rise.
</li>
<li>
Webpack seems to be solidifying its notable lead among module bundlers.
</li>
</ul>
<div class="imagesection">
<img src="images/charts/capture14.png" >
<div class="onl_login">
<div class="onl_socialButtons">
<a class="btn btn-lg btn-block onl_btn-twitter twitter-share-button" rel="noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20Transpilers%20and%20Bundlers%20from%202018%20Node.js%20@Nodejs%20Foundation%20Survey:%20https%3A%2F%2Fnodejs.org%2Fen%2Fuser-survey-report%23Transpilers-and-Bundlers%20%23node2018survey" title="Share on Twitter">
<i class="fa fa-twitter fa-1x"></i>
<span class="hidden-xs"></span>
Tweet
</a>
</div>
</div>
</div>
</div>
<div class="section-header" id="Primary-OS-Distro">
Primary OS/Distro
</div>
<div class="section-content">
<ul>
<li>
Ubuntu is the primary OS/Distro used in production, while MAC OS is primary in development
</li>
<li>
Use of Windows – in both production and development – has increased since last year, particularly in US/CA, EMEA and in smaller companies (among other segments).
</li>
</ul>
<div class="imagesection">