-
Notifications
You must be signed in to change notification settings - Fork 0
/
state_of_js.yml
1260 lines (1089 loc) · 50.2 KB
/
state_of_js.yml
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
locale: nb-NO
namespace: js
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_js.intro
t: >
JavaScript-verdenen kan trenge litt klassifisering.
Siden 2016 har denne undersøkelsen samlet inn data fra over 20 000 utviklere hvert år for å identifisere nåværende og kommende trender.
La oss sammen finne ut hvilke biblioteker utviklere ønsker å lære neste, hvilke som har de beste retensjonsvurderingene, og mye mer.
- key: general.state_of_js.title
t: Tilstanden til JavaScript-utviklerundersøkelsen
- key: general.state_of_js.description
t: Den årlige utviklerundersøkelsen av JavaScript-økosystemet
###########################################################################
# Seksjoner
###########################################################################
- key: sections.features.title
t: Funksjoner
- key: sections.features.description
t: Syntaks, nettleser-API-er og andre funksjoner.
- key: sections.syntax.title
t: Syntaks
- key: sections.syntax.description
t: Grammatikk i JavaScript.
- key: sections.language.title
t: Språk
- key: sections.language.description
t: Ordforrådet til JavaScript.
- key: sections.data_structures.title
t: Datastrukturer
- key: sections.data_structures.description
t: Hvordan du lagrer og manipulerer data.
- key: sections.browser_apis.title
t: Nettleser-API-er
- key: sections.browser_apis.description
t: Funksjonene som tilbys av nettleseren.
- key: sections.other_features.title
t: Andre funksjoner
- key: sections.other_features.description
t: Andre teknologier og mønstre.
- key: sections.patterns.title
t: Mønstre
- key: sections.patterns.description
t: Hvordan du foretrekker å skrive kode.
- key: sections.javascript_flavors.title
t: JavaScript-varianter
- key: sections.javascript_flavors.description
t: Språk som kompilerer til JavaScript.
- key: sections.front_end_frameworks.title
t: Front-end rammeverk
- key: sections.front_end_frameworks.description
t: Front-end rammeverk og biblioteker.
- key: sections.datalayer.title
t: Datagrunnlag
- key: sections.datalayer.description
t: Laste og administrere data i appen din.
- key: sections.rendering_frameworks.title
t: Rendering-rammeverk
- key: sections.rendering_frameworks.description
t: Rammeverk fokusert på å gjengi og servere applikasjonen din.
- key: sections.meta_frameworks.title
t: Meta-rammeverk
- key: sections.meta_frameworks.description
t: Rammeverk fokusert på å gjengi og servere applikasjonen din.
- key: sections.back_end_frameworks.title
t: Back-end rammeverk
- key: sections.back_end_frameworks.description
t: JavaScript på serveren.
- key: sections.testing.title
t: Testing
- key: sections.testing.description
t: Verktøy for å teste koden din.
- key: sections.mobile_desktop.title
t: Mobil og Desktop
- key: sections.mobile_desktop.description
t: JavaScript for mobile enheter og skrivebordsapper.
- key: sections.build_tools.title
t: Byggeverktøy
- key: sections.build_tools.description
t: Kompilering og bundling av kode.
- key: sections.monorepo_tools.title
t: Monorepo-verktøy
- key: sections.monorepo_tools.description
t: Verktøy som brukes til å administrere JavaScript-monorepoer.
- key: sections.tools.title
t: Andre verktøy
- key: sections.tools.description
t: Andre JavaScript-verktøy.
- key: sections.other_tools.title
t: Andre verktøy
- key: sections.other_tools.description
t: For disse verktøyene og teknologiene, bare sjekk de du bruker regelmessig.
- key: sections.resources_js.title
t: Ressurser
- key: sections.resources_js.description
t: Hvilke JavaScript-ressurser konsulterer du?
- key: sections.usage_js.title
t: Bruk
- key: sections.usage_js.description
t: Hvordan du bruker JavaScript.
###########################################################################
# Survey help
###########################################################################
- key: features.features_intro
t: >
Velkommen til undersøkelsen! Denne første delen handler om å finne ut
hvilke **funksjoner** i JavaScript-språket du kjenner til.
Og hvis du kjenner til noe, men ikke har brukt det ennå, er det helt greit!
- key: tools.tools_intro
t: >
De neste par seksjonene fokuserer på **biblioteker** og **rammeverk** som utgjør
JavaScript-økosystemet. Gi oss beskjed om hva du gleder deg til!
###########################################################################
# Options
###########################################################################
# JS pain points
# - key: options.top_js_pain_points.browser_interoperability
# t: Nettleserkompatibilitet
# - key: options.js_pain_points.browser_interoperability.description
# t: Forskjeller mellom Chrome, Safari, Firefox, osv.
# - key: options.js_pain_points.animations
# t: Animasjoner
# - key: options.js_pain_points.animations.description
# t: Håndtering av animasjoner, overganger osv. ved hjelp av JavaScript.
# - key: options.js_pain_points.form_handling
# t: Skjema håndtering
# - key: options.js_pain_points.form_handling.description
# t: Lage skjemaer, administrere deres tilstand og feil, og lagre deres data.
- key: options.js_pain_points.state_management
t: Tilstandsadministrasjon
- key: options.js_pain_points.state_management.description
t: Administrering av global datatilstand i komplekse applikasjoner.
# - key: options.js_pain_points.performance_issues
# t: Ytelsesproblemer
# - key: options.js_pain_points.performance_issues.description
# t: Bundle-størrelser, treg lasting, og andre ytelsesproblemer.
- key: options.js_pain_points.managing_dependencies
t: Håndtering av avhengigheter
- key: options.js_pain_points.managing_dependencies.description
t: Håndtering av avhengigheter, pakkeversjoner og bundle-størrelser.
- key: options.js_pain_points.architecture
t: Kodearkitektur
- key: options.js_pain_points.architecture.description
t: Organisering og vedlikehold av kodebasen din.
- key: options.js_pain_points.finding_packages
t: Finne pakker
- key: options.js_pain_points.finding_packages.description
t: Finne og evaluere JavaScript-pakker.
- key: options.js_pain_points.writing_modules
t: Skrive moduler
- key: options.js_pain_points.writing_modules.description
t: Skrive JavaScript-moduler og publisere dem som pakker.
- key: options.js_pain_points.debugging
t: Feilsøking
- key: options.js_pain_points.debugging.description
t: Identifisere og løse problemer med koden din.
- key: options.js_pain_points.async_code
t: Asynkron kode
- key: options.js_pain_points.async_code.description
t: Håndtere asynkrone funksjoner.
- key: options.js_pain_points.modules_management
t: Moduler administrasjon
- key: options.js_pain_points.modules_management.description
t: Skrive og importere moduler.
- key: options.js_pain_points.date_management
t: Datohåndtering
- key: options.js_pain_points.date_management.description
t: Håndtere og manipulere datoer og tider.
# - key: options.js_pain_points.xxx
# t:
# - key: options.js_pain_points.xxx.description
# t:
- key: options.top_js_pain_points.state_management
aliasFor: options.js_pain_points.state_management
- key: options.top_js_pain_points.state_management.description
aliasFor: options.js_pain_points.state_management.description
- key: options.top_js_pain_points.managing_dependencies
aliasFor: options.js_pain_points.managing_dependencies
- key: options.top_js_pain_points.managing_dependencies.description
aliasFor: options.js_pain_points.managing_dependencies.description
- key: options.top_js_pain_points.architecture
aliasFor: options.js_pain_points.architecture
- key: options.top_js_pain_points.architecture.description
aliasFor: options.js_pain_points.architecture.description
- key: options.top_js_pain_points.finding_packages
aliasFor: options.js_pain_points.finding_packages
- key: options.top_js_pain_points.finding_packages.description
aliasFor: options.js_pain_points.finding_packages.description
- key: options.top_js_pain_points.writing_modules
aliasFor: options.js_pain_points.writing_modules
- key: options.top_js_pain_points.writing_modules.description
aliasFor: options.js_pain_points.writing_modules.description
- key: options.top_js_pain_points.debugging
aliasFor: options.js_pain_points.debugging
- key: options.top_js_pain_points.debugging.description
aliasFor: options.js_pain_points.debugging.description
- key: options.top_js_pain_points.async_code
aliasFor: options.js_pain_points.async_code
- key: options.top_js_pain_points.async_code.description
aliasFor: options.js_pain_points.async_code.description
- key: options.top_js_pain_points.modules_management
aliasFor: options.js_pain_points.modules_management
- key: options.top_js_pain_points.modules_management.description
aliasFor: options.js_pain_points.modules_management.description
- key: options.top_js_pain_points.date_management
aliasFor: options.js_pain_points.date_management
- key: options.top_js_pain_points.date_management.description
aliasFor: options.js_pain_points.date_management.description
- key: options.top_js_pain_points.performance
t: Ytelse
- key: options.top_js_pain_points.performance.description
t: Skrive effektiv JavaScript-kode
- key: options.top_js_pain_points.build_tools
t: Byggverktøy
- key: options.top_js_pain_points.build_tools.description
t: Styre verktøy for å bundle koden din
- key: options.top_js_pain_points.typing
t: Definere typer
- key: options.top_js_pain_points.typing.description
t: Administrere og vedlikeholde typer
- key: options.top_js_pain_points.typescript
t: TypeScript
- key: options.top_js_pain_points.esm_cjs
t: ESM vs CJS
- key: options.top_js_pain_points.testing
t: Testing
- key: options.top_js_pain_points.too_many_choices
t: For mange valg
- key: options.top_js_pain_points.react
t: React
- key: options.top_js_pain_points.bundlers
t: Bundlere
- key: options.top_js_pain_points.complexity
t: Kompleksitet
- key: options.top_js_pain_points.standard_library
t: Standard-bibliotek
- key: options.top_js_pain_points.tooling
t: Verktæy
- key: options.top_js_pain_points.dependencies
t: Avhengigheter
- key: options.top_js_pain_points.security
t: Sikkerhet
- key: options.top_js_pain_points.slow
t: Treghet
# JS missing features
- key: options.currently_missing_from_js.static_typing
t: Statiske typer
- key: options.currently_missing_from_js.static_typing.description
t: Native runtime typing; eller TypeScript-style type-as-comments
- key: options.currently_missing_from_js.standard_library
t: Standard-bibliotek
- key: options.currently_missing_from_js.standard_library.description
t: Et standardbibliotek med vanlige verktøy
- key: options.currently_missing_from_js.pattern_matching
t: Mønster Matching
- key: options.currently_missing_from_js.pattern_matching.description
t: Et nytt `match`-nøkkelord for mønstermatching av objekter.
- key: options.currently_missing_from_js.js_pipeline_operator
t: Pipe-Operator
- key: options.currently_missing_from_js.js_pipeline_operator.description
t: En ny `|>`-operator for å sende resultatet av én funksjon til en annen.
- key: options.currently_missing_from_js.decorators
t: Dekoratører
- key: options.currently_missing_from_js.decorators.description
t: Dekoratører brukt for metaprogrammering og for å legge til funksjonalitet til en verdi.
- key: options.currently_missing_from_js.immutable_data_structures
t: Uforanderlige Datastrukturer
- key: options.currently_missing_from_js.immutable_data_structures.description
t: Nye dypt uforanderlige datastrukturer som `Record` og `Tuple`.
- key: options.currently_missing_from_js.better_date_management
t: Bedre Databehandling
- key: options.currently_missing_from_js.better_date_management.description
t: Et nytt `Temporal`-objekt for å arbeide med datoer og tidspunkter.
- key: options.currently_missing_from_js.observable
t: Observable
- key: options.currently_missing_from_js.observable.description
t: En ny `Observable`-type brukt for å modellere push-baserte datakilder.
# - key: options.currently_missing_from_js.xxx
# t:
# - key: options.currently_missing_from_js.xxx.description
# t:
- key: options.top_currently_missing_from_js.static_typing
aliasFor: options.currently_missing_from_js.static_typing
- key: options.top_currently_missing_from_js.static_typing.description
aliasFor: options.currently_missing_from_js.static_typing.description
- key: options.top_currently_missing_from_js.standard_library
aliasFor: options.currently_missing_from_js.standard_library
- key: options.top_currently_missing_from_js.standard_library.description
aliasFor: options.currently_missing_from_js.standard_library.description
- key: options.top_currently_missing_from_js.pattern_matching
aliasFor: options.currently_missing_from_js.pattern_matching
- key: options.top_currently_missing_from_js.pattern_matching.description
aliasFor: options.currently_missing_from_js.pattern_matching.description
- key: options.top_currently_missing_from_js.js_pipeline_operator
aliasFor: options.currently_missing_from_js.js_pipeline_operator
- key: options.top_currently_missing_from_js.js_pipeline_operator.description
aliasFor: options.currently_missing_from_js.js_pipeline_operator.description
- key: options.top_currently_missing_from_js.decorators
aliasFor: options.currently_missing_from_js.decorators
- key: options.top_currently_missing_from_js.decorators.description
aliasFor: options.currently_missing_from_js.decorators.description
- key: options.top_currently_missing_from_js.immutable_data_structures
aliasFor: options.currently_missing_from_js.immutable_data_structures
- key: options.top_currently_missing_from_js.immutable_data_structures.description
aliasFor: options.currently_missing_from_js.immutable_data_structures.description
- key: options.top_currently_missing_from_js.better_date_management
aliasFor: options.currently_missing_from_js.better_date_management
- key: options.top_currently_missing_from_js.better_date_management.description
aliasFor: options.currently_missing_from_js.better_date_management.description
- key: options.top_currently_missing_from_js.observable
aliasFor: options.currently_missing_from_js.observable
- key: options.top_currently_missing_from_js.observable.description
aliasFor: options.currently_missing_from_js.observable.description
- key: options.top_currently_missing_from_js.static_typing
t: Statisk typing
- key: options.top_currently_missing_from_js.standard_library
t: Standardbibliotek
- key: options.top_currently_missing_from_js.operator_overloading
t: Operatøroverlasting
- key: options.top_currently_missing_from_js.immutable
t: Immutable datastrukturer
- key: options.top_currently_missing_from_js.deep_clone
t: Dyp kloning
- key: options.top_currently_missing_from_js.enums
t: Enums
- key: options.top_currently_missing_from_js.decorators
t: Dekoratører
- key: options.top_currently_missing_from_js.multithreading
t: Multithreading
- key: options.top_currently_missing_from_js.js_pipeline_operator
t: Røroperator
- key: options.top_currently_missing_from_js.native_observables
t: Native observables
# Hva bruker du JS til?
- key: options.what_do_you_use_js_for.frontend_development
t: Frontend utvikling
- key: options.what_do_you_use_js_for.backend_development
t: Backend utvikling
- key: options.what_do_you_use_js_for.data_analysis
t: Dataanalyse
- key: options.what_do_you_use_js_for.machine_learning
t: Maskinlæring
- key: options.what_do_you_use_js_for.desktop_apps
t: Skrivebordsapper
- key: options.what_do_you_use_js_for.mobile_apps
t: Mobilapper
- key: options.what_do_you_use_js_for.embedded_apps
t: Innebygde apper
- key: options.what_do_you_use_js_for.game_development
t: Spillutvikling
- key: options.what_do_you_use_js_for.data_visualization
t: Datavisualisering
- key: options.what_do_you_use_js_for.graphics_animation
t: Grafikk og animasjon
- key: options.what_do_you_use_js_for.scripting
t: Skripting
- key: options.what_do_you_use_js_for.command_line_tools
t: Kommandolinjeverktøy
- key: options.what_do_you_use_js_for.developer_tooling
t: Utviklerverktøy
- key: options.what_do_you_use_js_for.automation
t: Automatisering
- key: options.what_do_you_use_js_for.bots
t: Roboter
- key: options.what_do_you_use_js_for.testing
t: Testing
- key: options.what_do_you_use_js_for.browser_extensions
t: Nettleserutvidelser
- key: options.what_do_you_use_js_for.api
t: API-er
- key: options.what_do_you_use_js_for.infrastructure_as_code
t: Infrastruktur som kode
- key: options.what_do_you_use_js_for.prototyping
t: Prototyping
# JS App Patterns
- key: options.js_app_patterns.single_page_app
t: Ensideapplikasjon (SPA)
- key: options.js_app_patterns.single_page_app.description
t: Apper som kjører helt i nettleseren
- key: options.js_app_patterns.multiple_page_app
t: Flersideapplikasjon (MPA)
- key: options.js_app_patterns.multiple_page_app.description
t: Apper som kjører helt på serveren, med minimal dynamisk atferd på klientsiden
- key: options.js_app_patterns.static_site_generation
t: Statisk sidegenerering (SSG)
- key: options.js_app_patterns.static_site_generation.description
t: Statisk innhold forhåndsbehandlet ved byggetid, med eller uten et dynamisk element på klientsiden
- key: options.js_app_patterns.server_side_rendering
t: Server-side rendering (SSR)
- key: options.js_app_patterns.server_side_rendering.description
t: Dynamisk generering av HTML-innhold på serveren ved forespørsel, før det hydreres på klientsiden
- key: options.js_app_patterns.partial_hydration
t: Delvis hydrering
- key: options.js_app_patterns.partial_hydration.description
t: Bare hydrere noen av komponentene dine på klientsiden (f.eks. React Server Components)
- key: options.js_app_patterns.progressive_rehydration
t: Progressiv hydrering
- key: options.js_app_patterns.progressive_rehydration.description
t: Kontrollere rekkefølgen av komponenthydrering på klientsiden
- key: options.js_app_patterns.islands_architecture
t: Øy-arkitektur
- key: options.js_app_patterns.islands_architecture.description
t: Isolerte øyer av dynamisk atferd med flere inngangspunkter i en ellers statisk side (Astro, Eleventy)
- key: options.js_app_patterns.progressive_enhancement
t: Progressiv forbedring
- key: options.js_app_patterns.progressive_enhancement.description
t: Sikre at en app er funksjonell selv uten JavaScript
- key: options.js_app_patterns.incremental_static_generation
t: Inkrementell statisk generering
- key: options.js_app_patterns.incremental_static_generation.description
t: Mulighet til å dynamisk augmentere eller endre en statisk side selv etter den første byggingen (Next.js ISR & on-demand revalidation, Gatsby DSG)
- key: options.js_app_patterns.streaming_ssr
t: Streaming SSR
- key: options.js_app_patterns.streaming_ssr.description
t: Dele opp servergenerert innhold i mindre strømmede biter
- key: options.js_app_patterns.resumability
t: Gjenopptakbarhet
- key: options.js_app_patterns.resumability.description
t: Serialisere rammeverksstatus på serveren slik at klientsiden kan gjenoppta utførelsen uten duplisert kodeutførelse.
- key: options.js_app_patterns.edge_rendering
t: Kantrendering
- key: options.js_app_patterns.edge_rendering.description
t: Endre rendert HTML på kanten før det sendes videre til klienten
- key: options.js_app_patterns.partial_prerendering
t: Delvis forhåndsrendering
- key: options.js_app_patterns.partial_prerendering.description
t: Rendre en rute med et statisk innlastingsskall, samtidig som noen deler forblir dynamiske
- key: options.js_app_patterns.micro_frontend
t: Mikrofrontend
- key: options.js_app_patterns.domain_driven_design
t: Domene-drevet design
- key: options.js_app_patterns.serverless
t: Serverless
- key: options.js_app_patterns.pespa
t: PESPA
# slider
- key: options.js_ts_balance.0
t: 100% JS
- key: options.js_ts_balance.1
t: "|"
- key: options.js_ts_balance.2
t: "|"
- key: options.js_ts_balance.3
t: "|"
- key: options.js_ts_balance.4
t: "50/50"
- key: options.js_ts_balance.5
t: "|"
- key: options.js_ts_balance.6
t: "|"
- key: options.js_ts_balance.7
t: "|"
- key: options.js_ts_balance.8
t: 100% TS
###########################################################################
# Funksjoner
###########################################################################
# syntaks
- key: features.destructuring
t: Destrukturering
- key: features.spread_operator
t: Spredningsoperator
- key: features.arrow_functions
t: Pilfunksjoner
- key: features.nullish_coalescing
t: Nullish sammenslåing
- key: features.optional_chaining
t: Valgfri kjede
- key: features.private_fields
t: Private felt
# språk
- key: features.proxies
t: Proxies
- key: features.async_await
t: Async/Await
- key: features.promises
t: Promisser
- key: features.decorators
t: Dekoratører
- key: features.decorators.description
t: >
I sin enkleste form er en dekoratør ganske enkelt en måte å
pakke ett stykke kode med et annet — bokstavelig talt “dekorere” det.
- key: features.dynamic_import
t: Dynamisk import
- key: features.syntax_features
t: Syntaksfunksjoner
- key: features.syntax_features.question
t: Hvilke av disse syntaksfunksjonene har du brukt?
- key: features.string_features
t: Strengfunksjoner
- key: features.string_features.question
t: Hvilke av disse strengfunksjonene har du brukt?
- key: features.array_features
t: Array-funksjoner
- key: features.array_features.question
t: Hvilke av disse array-funksjonene har du brukt?
- key: features.async_features
t: Async-funksjoner
- key: features.async_features.question
t: Hvilke av disse async-funksjonene har du brukt?
- key: features.browser_api_features
t: Browser-API-er
- key: features.browser_api_features.question
t: Hvilke av disse browser-API-ene har du brukt?
- key: features.language_pain_points
t: Utfordringer med språk
- key: features.language_pain_points.question
t: Hva er dine viktigste smertepunkter når det gjelder JavaScript-språket?
- key: features.browser_apis_pain_points
t: Smertepunkter med browser-API-er
- key: features.browser_apis_pain_points.question
t: Hva er dine viktigste smertepunkter når det gjelder browser-API-er?
# mønstre
- key: patterns.object_oriented_programming
t: Objektorientert programmering
- key: features.functional_programming
t: Funksjonell programmering
- key: features.reactive_programming
t: Reaktiv programmering
# upcoming features
# - key: features.static_typing
# t: Static Typing
# - key: features.standard_library
# t: Standard Library
# - key: features.pattern_matching
# t: Pattern Matching
# - key: features.js_pipeline_operator
# t: Pipe Operator
# - key: features.immutable_data_structures
# t: Immutable Data Structures
###########################################################################
# Tools
###########################################################################
- key: tools.angular.description
t: >
Vær oppmerksom på at dette spørsmålet kun retter seg mot [Angular](https://angular.io/) erfaring,
og gjelder spesifikt *ikke* den avviklede [AngularJS](https://angularjs.org/).
- key: tools.best_of_js_projects.note
t: >
Bibliotekene lastes fra [Best of JS](https://bestofjs.org/).
Hvis et prosjekt mangler, kan du [sende det inn her](https://github.com/michaelrambeau/bestofjs/issues/new?template=add-a-project-to-best-of-javascript.md).
- key: tools.pain_points
t: Utfordringer
- key: tools.ratios
t: Forhold over tid
- key: tools.experience
t: Erfaring & meninger
- key: tools.others
t: Andre verktøy
# front-end frameworks
- key: tools.front_end_frameworks_ratios
t: Forhold for front-end rammeverk over tid
- key: tools.front_end_frameworks_ratios.short
aliasFor: tools.ratios
- key: tools.front_end_frameworks_experience
t: Erfaring & meninger for front-end rammeverk
- key: tools.front_end_frameworks_experience.short
aliasFor: tools.experience
- key: tools.front_end_frameworks.others
t: Andre front-end rammeverk
- key: tools.front_end_frameworks.others.short
aliasFor: tools.others
- key: tools.front_end_frameworks_others
aliasFor: tools.front_end_frameworks.others
- key: tools.front_end_frameworks_happiness
t: Fordeler med front-end rammeverk
- key: tools.front_end_frameworks_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.front_end_frameworks_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til front-end rammeverk?
- key: tools.front_end_frameworks_pain_points
t: Utfordringer for front-end rammeverk
- key: tools.front_end_frameworks_pain_points.short
aliasFor: tools.pain_points
- key: tools.front_end_frameworks_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker front-end rammeverk?
# meta-frameworks
- key: tools.meta_frameworks_ratios
t: Forhold for Meta-Rammeverk over tid
- key: tools.meta_frameworks_ratios.short
aliasFor: tools.ratios
- key: tools.meta_frameworks_experience
t: Erfaring & meninger for Meta-Rammeverk
- key: tools.meta_frameworks_experience.short
aliasFor: tools.experience
- key: tools.meta_frameworks.others
t: Andre Meta-Rammeverk
- key: tools.meta_frameworks.others.short
aliasFor: tools.others
- key: tools.meta_frameworks_others
aliasFor: tools.meta_frameworks.others
- key: tools.meta_frameworks_happiness
t: Fordeler med Meta-Rammeverk
- key: tools.meta_frameworks_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.meta_frameworks_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til meta-rammeverk?
- key: tools.meta_frameworks_pain_points
t: Utfordringer for Meta-Rammeverk
- key: tools.meta_frameworks_pain_points.short
aliasFor: tools.pain_points
- key: tools.meta_frameworks_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker meta-rammeverk?
# testing
- key: tools.testing_ratios
t: Forhold for Testverktøy over tid
- key: tools.testing_ratios.short
aliasFor: tools.ratios
- key: tools.testing_experience
t: Erfaring & meninger for Testverktøy
- key: tools.testing_experience.short
aliasFor: tools.experience
- key: tools.testing.others
t: Andre Testverktøy
- key: tools.testing.others.short
aliasFor: tools.others
- key: tools.testing_happiness
t: Fordeler med Testverktøy
- key: tools.testing_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.testing_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til testverktøy?
- key: tools.testing_pain_points
t: Utfordringer med testverktøy
- key: tools.testing_pain_points.short
aliasFor: tools.pain_points
- key: tools.testing_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker testverktøy?
# mobile & desktop
- key: tools.mobile_desktop_ratios
t: Forhold for mobil- og desktopverktøy over tid
- key: tools.mobile_desktop_ratios.short
aliasFor: tools.ratios
- key: tools.mobile_desktop_experience
t: Erfaring & meninger for mobil- og desktopverktøy
- key: tools.mobile_desktop_experience.short
aliasFor: tools.experience
- key: tools.mobile_desktop.others
t: Andre mobil- & desktopverktøy
- key: tools.mobile_desktop.others.short
aliasFor: tools.others
- key: tools.mobile_desktop_happiness
t: Fordeler med mobil- & desktopverktøy
- key: tools.mobile_desktop_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.mobile_desktop_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til mobil & desktop verktøy?
- key: tools.mobile_desktop_pain_points
t: Utfordringer for mobil- & desktopverktøy
- key: tools.mobile_desktop_pain_points.short
aliasFor: tools.pain_points
- key: tools.mobile_desktop_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker JavaScript til å bygge mobil- og desktopapper?
# build tools
- key: tools.build_tools_ratios
t: Forhold for byggeverktøy over tid
- key: tools.build_tools_ratios.short
aliasFor: tools.ratios
- key: tools.build_tools_experience
t: Erfaring & meninger for byggeverktøy
- key: tools.build_tools_experience.short
aliasFor: tools.experience
- key: tools.build_tools.others
t: Andre byggeverktøy
- key: tools.build_tools.others.short
aliasFor: tools.others
- key: tools.build_tools_happiness
t: Fordeler med byggeverktøy
- key: tools.build_tools_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.build_tools_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til byggeverktøy?
- key: tools.build_tools_pain_points
t: Utfordringer med byggeverktøy
- key: tools.build_tools_pain_points.short
aliasFor: tools.pain_points
- key: tools.build_tools_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker byggeverktøy?
# monorepo tools
- key: tools.monorepo_tools_ratios
t: Forhold for monorepo verktøyover tid
- key: tools.monorepo_tools_ratios.short
aliasFor: tools.ratios
- key: tools.monorepo_tools_experience
t: Erfaring & meninger for monorepo verktøy
- key: tools.monorepo_tools_experience.short
aliasFor: tools.experience
- key: tools.monorepo_tools.others
t: Andre monorepo verktøy
- key: tools.monorepo_tools.others.short
aliasFor: tools.others
- key: tools.monorepo_tools_happiness
t: Fordeler med monorepo verktøy
- key: tools.monorepo_tools_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.monorepo_tools_happiness.question
t: På en skala fra 0 (veldig misfornøyd) til 4 (veldig fornøyd), hvor fornøyd er du med den nåværende tilstanden til monorepo-verktøy?
- key: tools.monorepo_tools_pain_points
t: utfordringer med monorepo verktøy
- key: tools.monorepo_tools_pain_points.short
aliasFor: tools.pain_points
- key: tools.monorepo_tools_pain_points.question
t: Hvilke utfordringer har du møtt på når du bruker monorepo-verktøy?
###########################################################################
# Andre verktøy
###########################################################################
- key: tools.libraries
t: Biblioteker
- key: tools.libraries.question
t: Hvilke biblioteker bruker du regelmessig?
- key: tools.libraries.others
t: Andre biblioteker
- key: tools.libraries.others.description
t: Andre svar (fritekstfelt).
- key: tools.text_editors
t: Tekst-editor
- key: tools.text_editors.question
t: Hvilket program skriver du kode i regelmessig?
- key: tools.text_editors.others
t: Andre tekst-editorer
- key: tools.text_editors.others.description
t: Andre svar (fritekstfelt).
- key: tools.utilities
t: Verktøy
- key: tools.utilities.question
t: Hvilke verktøy eller verktøy bruker du regelmessig?
- key: tools.utilities.others
t: Andre verktøy
- key: tools.utilities.others.description
t: Andre verktøy (fritekstfelt).
- key: tools.browsers
t: Nettlesere
- key: tools.browsers.question
t: Hvilken(e) nettleser(e) jobber du primært i under initial utvikling?
- key: tools.browsers.others
t: Andre nettlesere
- key: tools.browsers.others.description
t: Andre svar (fritekstfelt).
- key: tools.build_tools
t: byggeverktøy
- key: tools.build_tools.question
t: Hvilke byggeverktøy bruker du?
- key: tools.build_tools.others
t: Andre byggeverktøy
- key: tools.build_tools.others.description
t: Andre svar (fritekstfelt).
- key: tools.non_js_languages
t: Andre programmeringsspråk
- key: tools.non_js_languages.question
t: Hvilke andre programmeringsspråk bruker du?
- key: tools.non_js_languages.others
t: Andre språk
- key: tools.non_js_languages.others.description
t: Andre svar (fritekstfelt).
- key: tools.javascript_flavors
t: JavaScript-varianter
- key: tools.javascript_flavors.question
t: Språk som kompilerer til JavaScript
- key: tools.javascript_flavors.others
t: Andre JavaScript-varianter
- key: tools.javascript_flavors.others.description
t: Andre svar (fritekstfelt).
- key: tools.runtimes
t: JavaScript runtimes
- key: tools.runtimes.question
t: Hvilke motorer/runtimes/miljøer bruker du regelmessig?
- key: tools.runtimes.others
t: Andre runtimes
- key: tools.runtimes.others.description
t: Andre svar (fritekstfelt).
- key: tools.package_registries
t: Pakke-registere
- key: tools.package_registries.question
t: Hvilke pakke-registere henter du regelmessig pakker fra?
- key: tools.package_registries.others
t: Andre pakke-registere
- key: tools.package_registries.others.description
t: Andre svar (fritekstfelt).
- key: tools.form_factors
aliasFor: environments.form_factors
- key: tools.form_factors.description
aliasFor: environments.form_factors.question
- key: tools.backend_as_a_service
t: Backend-as-a-Service-leverandører
- key: tools.backend_as_a_service.question
t: Tjenester som hoster dataene dine og tilbyr et klient-API for tilgang.
- key: tools.backend_as_a_service.others
t: Andre BaaS-leverandører
- key: tools.date_management
t: Datostyring
- key: tools.date_management.question
t: Biblioteker som hjelper med dato- og tidssonehåndtering.
- key: tools.date_management.others
t: Andre biblioteker for datostyring
- key: tools.data_visualization
t: Datavisualisering
- key: tools.data_visualization.question
t: Biblioteker som hjelper med diagrammer og andre datavisualiseringer.
- key: tools.data_visualization.others
t: Andre biblioteker for datavisualisering
- key: tools.graphics_animation
t: Grafikk og animasjoner
- key: tools.graphics_animation.question
t: Biblioteker dedikert til grafikk og animasjon.
- key: tools.graphics_animation.others
t: Andre biblioteker for grafikk og animasjoner
- key: tools.data_fetching
t: Datainnhenting
- key: tools.data_fetching.question
t: Biblioteker som håndterer datainnhenting og caching.
- key: tools.data_fetching.others
t: Andre biblioteker for datainnhenting
- key: other_tools.libraries
aliasFor: tools.libraries
- key: other_tools.libraries.description
aliasFor: tools.libraries.question
- key: other_tools.libraries.others
aliasFor: tools.libraries.others
- key: other_tools.libraries.others.description
aliasFor: tools.libraries.others.description
- key: other_tools.text_editors
aliasFor: tools.text_editors
- key: other_tools.text_editors.description
aliasFor: tools.text_editors.question
- key: other_tools.text_editors.others
aliasFor: tools.text_editors.others
- key: other_tools.text_editors.others.description
aliasFor: tools.text_editors.others.description
- key: other_tools.utilities
aliasFor: tools.utilities
- key: other_tools.utilities.description
aliasFor: tools.utilities.question
- key: other_tools.utilities.others
aliasFor: tools.utilities.others
- key: other_tools.utilities.others.description
aliasFor: tools.utilities.others.description
- key: other_tools.browsers
aliasFor: tools.browsers
- key: other_tools.browsers.description
aliasFor: tools.browsers.question
- key: other_tools.browsers.others
aliasFor: tools.browsers.others
- key: other_tools.browsers.others.description
aliasFor: tools.browsers.others.description
- key: other_tools.build_tools
aliasFor: tools.build_tools
- key: other_tools.build_tools.description
aliasFor: tools.build_tools.question
- key: other_tools.build_tools.others
aliasFor: tools.build_tools.others
- key: other_tools.build_tools.others.description
aliasFor: tools.build_tools.others.description
- key: other_tools.non_js_languages
aliasFor: tools.non_js_languages
- key: other_tools.non_js_languages.description
aliasFor: tools.non_js_languages.question
- key: other_tools.non_js_languages.others
aliasFor: tools.non_js_languages.others
- key: other_tools.non_js_languages.others.description
aliasFor: tools.non_js_languages.others.description
- key: other_tools.javascript_flavors
aliasFor: tools.javascript_flavors
- key: other_tools.javascript_flavors.description
aliasFor: tools.javascript_flavors.question
- key: other_tools.javascript_flavors.others
aliasFor: tools.javascript_flavors.others
- key: other_tools.javascript_flavors.others.description
aliasFor: tools.javascript_flavors.others.description
- key: tools.backend_frameworks
aliasFor: sections.back_end_frameworks.title