-
Notifications
You must be signed in to change notification settings - Fork 5
/
state_of_js.yml
1410 lines (1222 loc) · 51.3 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: zh-Hans
namespace: js
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_js.intro
t: >
JavaScript 世界可能需要一些分类。
自 2016 年以来,
本调查每年从 20,000 多名开发人员中获取调查数据,以确定 JavaScript 当前和未来的趋势。
快来参加调查,
帮助我们寻找开发人员接下来需要学习的库,满意度最高的库等等。
- key: general.state_of_js.description
t: JavaScript 生态的年度开发者调查项目
###########################################################################
# Sections
###########################################################################
- key: sections.features.title
t: 特性
- key: sections.features.description
t: 语法、浏览器 API 和其他特性。
- key: sections.syntax.title
t: 语法
- key: sections.syntax.description
t: JavaScript的语法。
- key: sections.language.title
t: 语言
- key: sections.language.description
t: JavaScript 的词汇表。
- key: sections.data_structures.title
t: 数据结构
- key: sections.data_structures.description
t: 如何存储和操作数据。
- key: sections.browser_apis.title
t: 浏览器 API
- key: sections.browser_apis.description
t: 浏览器提供的功能。
- key: sections.other_features.title
t: 其他特性
- key: sections.other_features.description
t: 其他技术特性
- key: sections.patterns.title
t: 编码方式
- key: sections.patterns.description
t: 你喜欢如何编写代码?
# 在中文中,很难找到一个准确形容JavaScript_flavors的词,因此只能简单翻译为「开发语言」
- key: sections.javascript_flavors.title
t: 开发语言
- key: sections.javascript_flavors.description
t: 可以编译为 JavaScript 的,用于开发的语言
- key: sections.front_end_frameworks.title
t: 前端框架
- key: sections.front_end_frameworks.description
t: 前端框架和类库
- key: sections.datalayer.title
t: 数据层
- key: sections.datalayer.description
t: 在你的应用中加载和管理数据
- key: sections.rendering_frameworks.title
t: 渲染框架
- key: sections.rendering_frameworks.description
t: 帮助渲染和托管应用程序的框架
- key: sections.meta_frameworks.title
t: 元框架
- key: sections.meta_frameworks.description
t: 帮助渲染和托管应用程序的框架
- key: sections.back_end_frameworks.title
t: 后端框架
- key: sections.back_end_frameworks.description
t: 服务端的 JavaScript
- key: sections.testing.title
t: 测试工具
- key: sections.testing.description
t: 代码测试工具
- key: sections.mobile_desktop.title
t: 移动端和客户端
- key: sections.mobile_desktop.description
t: 用于移动设备和桌面端app的 JavaScript
- key: sections.build_tools.title
t: 构建工具
- key: sections.build_tools.description
t: 编译和打包代码
- key: sections.monorepo_tools.title
t: Monorepo 工具
- key: sections.monorepo_tools.description
t: 用于管理 monorepo 的工具
- key: sections.tools.title
t: 其他工具
- key: sections.tools.description
t: 其他 JavaScript 工具
- key: sections.other_tools.title
t: 其他工具
- key: sections.other_tools.description
t: 对于这些工具和技术,只需检查你经常使用的工具和技术。
- key: sections.resources_js.title
t: 资源
- key: sections.resources_js.description
t: 您查阅过哪些 JavaScript 资源?
- key: sections.usage_js.title
t: 使用情况
- key: sections.usage_js.description
t: 您如何使用 JavaScript?
###########################################################################
# Survey Help
###########################################################################
- key: features.features_intro
t: >
欢迎参加调查!第一部分的主要内容是了解您了解 JavaScript 语言的哪些**特性**。
如果您知道某些功能,但尚未使用过,也没关系!
- key: tools.tools_intro
t: >
接下来的几个部分将重点介绍构成 JavaScript 生态系统的**库**和**框架**。
让我们知道你对什么感到兴奋!
###########################################################################
# Options
###########################################################################
# JS pain points
# - key: options.js_pain_points.browser_interoperability
# t: Browser Compatibility
# - key: options.js_pain_points.browser_interoperability.description
# t: Differences between Chrome, Safari, Firefox, etc.
# - key: options.js_pain_points.animations
# t: Animations
# - key: options.js_pain_points.animations.description
# t: Managing animations, transitions, etc. using JavaScript.
# - key: options.js_pain_points.form_handling
# t: Form Handling
# - key: options.js_pain_points.form_handling.description
# t: Creating forms, managing their state and errors, and saving their data.
- key: options.js_pain_points.state_management
t: 全局数据管理
- key: options.js_pain_points.state_management.description
t: 管理复杂应用程序中的全局数据状态。
# - key: options.js_pain_points.performance_issues
# t: Performance Issues
# - key: options.js_pain_points.performance_issues.description
# t: Bundle sizes, slow loading, and other performance issues.
- key: options.js_pain_points.managing_dependencies
t: 依赖管理
- key: options.js_pain_points.managing_dependencies.description
t: 管理依赖项、包版本和包大小
- key: options.js_pain_points.architecture
t: 代码架构
- key: options.js_pain_points.architecture.description
t: 组织和维护代码仓库。
- key: options.js_pain_points.finding_packages
t: 查找包
- key: options.js_pain_points.finding_packages.description
t: 查找和评估JavaScript包。
- key: options.js_pain_points.writing_modules
t: 编写模块
- key: options.js_pain_points.writing_modules.description
t: 编写 JavaScript 模块并将其作为包发布。
- key: options.js_pain_points.debugging
t: 调试
- key: options.js_pain_points.debugging.description
t: 识别和解决代码中的问题。
- key: options.js_pain_points.async_code
t: 异步代码
- key: options.js_pain_points.async_code.description
t: 处理异步函数。
- key: options.js_pain_points.modules_management
t: 模块管理
- key: options.js_pain_points.modules_management.description
t: 编写和导入模块。
- key: options.js_pain_points.date_management
t: 日期管理
- key: options.js_pain_points.date_management.description
t: 处理和操纵日期和时间。
# - 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: 性能
- key: options.top_js_pain_points.performance.description
t: 编写高性能、高效率的 JavaScript 代码
- key: options.top_js_pain_points.build_tools
t: 构建工具
- key: options.top_js_pain_points.build_tools.description
t: 管理构建代码的工具
- key: options.top_js_pain_points.typing
t: 类型
- key: options.top_js_pain_points.typing.description
t: 管理和维护类型
- key: options.top_js_pain_points.build_tools
t: 构建工具
- key: options.top_js_pain_points.typing
t: 类型
- 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: 测试
- key: options.top_js_pain_points.performance
t: 性能
- key: options.top_js_pain_points.too_many_choices
t: 过多选择
- key: options.top_js_pain_points.react
t: React
- key: options.top_js_pain_points.bundlers
t: 打包构建工具
- key: options.top_js_pain_points.complexity
t: 复杂度
- key: options.top_js_pain_points.standard_library
t: 标准库
- key: options.top_js_pain_points.tooling
t: 工具生态
- key: options.top_js_pain_points.dependencies
t: 依赖
- key: options.top_js_pain_points.security
t: 安全
- key: options.top_js_pain_points.slow
t: 慢
# JS missing features
- key: options.currently_missing_from_js.static_typing
t: 静态类型
- key: options.currently_missing_from_js.static_typing.description
t: 原生静态类型(类似于 TypeScript 提供的类型)。
- key: options.currently_missing_from_js.standard_library
t: 标准库
- key: options.currently_missing_from_js.standard_library.description
t: 通用实用程序的标准库
- key: options.currently_missing_from_js.pattern_matching
t: 模式匹配
- key: options.currently_missing_from_js.pattern_matching.description
t: 提供新的 “match” 关键字用于模式匹配对象。
- key: options.currently_missing_from_js.js_pipeline_operator
t: 管道操作
- key: options.currently_missing_from_js.js_pipeline_operator.description
t: 一个新的 “|>” 运算符,用于将一个函数的结果传递给另一个函数。
- key: options.currently_missing_from_js.decorators
t: 装饰器
- key: options.currently_missing_from_js.decorators.description
t: 用于元编程或向某一个值添加功能的装饰器。
- key: options.currently_missing_from_js.immutable_data_structures
t: 不可变的数据结构
- key: options.currently_missing_from_js.immutable_data_structures.description
t: 新的不可变的数据结构,如'Record'和'Tuple'。
- key: options.currently_missing_from_js.better_date_management
t: 更好的日期管理
- key: options.currently_missing_from_js.better_date_management.description
t: 用于处理日期和时间的新的 “临时” 对象。
- key: options.currently_missing_from_js.observable
t: 可观察类型
- key: options.currently_missing_from_js.observable.description
t: 一种新的 “可观察” 类型,用于对推送的数据源进行建模。
# - 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: 静态类型
- key: options.top_currently_missing_from_js.standard_library
t: 标准库
- key: options.top_currently_missing_from_js.operator_overloading
t: 运算符重载
- key: options.top_currently_missing_from_js.immutable
t: 不可变的数据结构
- key: options.top_currently_missing_from_js.deep_clone
t: 深拷贝
- key: options.top_currently_missing_from_js.enums
t: 枚举
- key: options.top_currently_missing_from_js.decorators
t: 装饰器
- key: options.top_currently_missing_from_js.multithreading
t: 多线程
- key: options.top_currently_missing_from_js.js_pipeline_operator
t: 管道运算符
- key: options.top_currently_missing_from_js.native_observables
t: 原生的 Observables
# What do you use JS for?
- key: options.what_do_you_use_js_for.frontend_development
t: 前端开发
- key: options.what_do_you_use_js_for.backend_development
t: 后端开发
- key: options.what_do_you_use_js_for.data_analysis
t: 数据分析
- key: options.what_do_you_use_js_for.machine_learning
t: 机器学习
- key: options.what_do_you_use_js_for.desktop_apps
t: 桌面应用
- key: options.what_do_you_use_js_for.mobile_apps
t: 移动应用
- key: options.what_do_you_use_js_for.embedded_apps
t: 嵌入式应用
- key: options.what_do_you_use_js_for.game_development
t: 游戏开发
- key: options.what_do_you_use_js_for.data_visualization
t: 数据可视化
- key: options.what_do_you_use_js_for.graphics_animation
t: 图形和动画
- key: options.what_do_you_use_js_for.scripting
t: 脚本工具
- key: options.what_do_you_use_js_for.command_line_tools
t: 命令行工具
- key: options.what_do_you_use_js_for.developer_tooling
t: 开发者工具
- key: options.what_do_you_use_js_for.automation
t: 自动化
- key: options.what_do_you_use_js_for.bots
t: 机器人
- key: options.what_do_you_use_js_for.testing
t: 测试
- key: options.what_do_you_use_js_for.browser_extensions
t: 浏览器应用
- key: options.what_do_you_use_js_for.api
t: API 开发
- key: options.what_do_you_use_js_for.infrastructure_as_code
t: 作为代码的基础设施
- key: options.what_do_you_use_js_for.prototyping
t: 原型
# JS App Patterns
- key: options.js_app_patterns.single_page_app
t: 单页面应用 (SPA)
- key: options.js_app_patterns.single_page_app.description
t: 完全在浏览器中运行的应用
- key: options.js_app_patterns.multiple_page_app
t: 多页面应用 (MPA)
- key: options.js_app_patterns.multiple_page_app.description
t: 完全在服务器上运行的应用程序,客户端动态行为极少
- key: options.js_app_patterns.static_site_generation
t: 静态站点生成 (SSG)
- key: options.js_app_patterns.static_site_generation.description
t: 预渲染静态内容,可能会携带客户端动态元素
- key: options.js_app_patterns.server_side_rendering
t: 服务端渲染 (SSR)
- key: options.js_app_patterns.server_side_rendering.description
t: 在服务器上动态渲染 HTML 内容,然后再在客户端上重新“注水”
- key: options.js_app_patterns.partial_hydration
t: 局部注水
- key: options.js_app_patterns.partial_hydration.description
t: 只在客户端上对某些组件进行注水 (比如 React Server Components)
- key: options.js_app_patterns.progressive_rehydration
t: 渐进式注水
- key: options.js_app_patterns.progressive_rehydration.description
t: 控制在客户端上的对组件注水的顺序
- key: options.js_app_patterns.islands_architecture
t: 岛屿架构
- key: options.js_app_patterns.islands_architecture.description
t: 在一个静态网站中,通过多个入口点实现动态行为的孤岛 (Astro, Eleventy)
- key: options.js_app_patterns.progressive_enhancement
t: 渐进增强
- key: options.js_app_patterns.progressive_enhancement.description
t: 确保应用程序在没有 JavaScript 的情况下也能正常运行
- key: options.js_app_patterns.incremental_static_generation
t: 增量静态生成
- key: options.js_app_patterns.incremental_static_generation.description
t: 即使在初始构建之后,也能动态增强或修改静态网站 (Next.js ISR, Gatsby DSG)
- key: options.js_app_patterns.streaming_ssr
t: 流式服务端渲染
- key: options.js_app_patterns.streaming_ssr.description
t: 将服务器渲染的内容分解为较小的流式块
- key: options.js_app_patterns.resumability
t: 可恢复性
- key: options.js_app_patterns.resumability.description
t: 在服务器上序列化框架状态,使客户端能够在没有重复代码执行的情况下恢复执行。
- key: options.js_app_patterns.edge_rendering
t: 边缘渲染
- key: options.js_app_patterns.edge_rendering.description
t: 在发送给客户端之前在边缘服务器 (Edge) 修改渲染的 HTML。
- key: options.js_app_patterns.partial_prerendering
t: 局部预渲染
- key: options.js_app_patterns.partial_prerendering.description
t: 用一个静态的加载壳来渲染一个路由,同时保持一些部分是动态的
- key: options.js_app_patterns.micro_frontend
t: 微前端
- key: options.js_app_patterns.domain_driven_design
t: 领域驱动设计
- key: options.js_app_patterns.serverless
t: 无服务 (Serverless)
- key: options.js_app_patterns.pespa
t: PESPA
###########################################################################
# Features
###########################################################################
# syntax
- key: features.destructuring
t: 结构
- key: features.spread_operator
t: 扩展运算符
- key: features.arrow_functions
t: 箭头函数
- key: features.nullish_coalescing
t: 空值合并运算符 Nullish Coalescing
- key: features.optional_chaining
t: 可选链 Optional Chaining
- key: features.private_fields
t: 私有属性
# language
- key: features.proxies
t: 代理
- key: features.async_await
t: 异步/等待
- key: features.promises
t: Promises
- key: features.decorators
t: Decorators 装饰器
- key: features.decorators.description
t: >
简单来说,
Decorators 装饰器是一种将一段代码包装成另一段代码的方法。
- key: features.dynamic_import
t: 动态引入
- key: features.syntax_features
t: 语法特性
- key: features.syntax_features.question
t: 您使用过以下哪些语法特性?
- key: features.string_features
t: 字符串特性
- key: features.string_features.question
t: 您使用过以下哪些字符串特性?
- key: features.array_features
t: 数组特性
- key: features.array_features.question
t: 您使用过以下哪些数组特性?
- key: features.async_features
t: 异步特性
- key: features.async_features.question
t: 您使用过以下哪些异步特性?
- key: features.browser_api_features
t: 浏览器 API
- key: features.browser_api_features.question
t: 您使用过以下哪些浏览器 API?
- key: features.language_pain_points
t: 语言痛点
- key: features.language_pain_points.question
t: 关于 JavaScript 语言,您的主要痛点是什么?
- key: features.browser_apis_pain_points
t: 浏览器 API 的痛点
- key: features.browser_apis_pain_points.question
t: 在浏览器 API 方面,您的主要痛点是什么?
# other features
- key: features.pwa
t: 渐进式 Web 应用程序(PWA)
- key: features.wasm
t: WebAssembly (WASM)
# patterns
- key: patterns.object_oriented_programming
t: 面向对象编程
- key: features.functional_programming
t: 函数式编程
- key: features.reactive_programming
t: 响应式编程
# 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: >
请注意,此问题仅针对 [Angular](https://angular.io/) 的用户体验,
而 *不是* 已经弃用的 [AngularJS](https://angularjs.org/).
- key: tools.best_of_js_projects.note
t: >
工具库都是加载自 [Best of JS](https://bestofjs.org/)。
如果有缺少的项目,您可以[在此提交](https://github.com/michaelrambeau/bestofjs/issues/new?template=add-a-project-to-best-of-javascript.md)。
- key: tools.pain_points
t: 痛点
- key: tools.ratios
t: 随时间变化的比率
- key: tools.experience
t: 使用经验与满意度
- key: tools.others
t: 其它工具
# front-end frameworks
- key: tools.front_end_frameworks_ratios
t: 前端框架随时间变化的比率
- key: tools.front_end_frameworks_ratios.short
aliasFor: tools.ratios
- key: tools.front_end_frameworks_experience
t: 前端框架的使用经验与满意度
- key: tools.front_end_frameworks_experience.short
aliasFor: tools.experience
- key: tools.front_end_frameworks.others
t: 其他前端框架
- key: tools.front_end_frameworks.others.short
aliasFor: tools.others
- key: tools.front_end_frameworks_happiness
t: 前端框架满意度
- key: tools.front_end_frameworks_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.front_end_frameworks_happiness.question
t: 您对前端框架的现状满意吗?
- key: tools.front_end_frameworks_pain_points
t: 前端框架的痛点
- key: tools.front_end_frameworks_pain_points.short
aliasFor: tools.pain_points
- key: tools.front_end_frameworks_pain_points.question
t: 在使用前端框架时,您遇到过哪些痛点?
# meta-frameworks
- key: tools.meta_frameworks_ratios
t: 元框架随时间变化的比率
- key: tools.meta_frameworks_ratios.short
aliasFor: tools.ratios
- key: tools.meta_frameworks_experience
t: 元框架的使用经验和满意度
- key: tools.meta_frameworks_experience.short
aliasFor: tools.experience
- key: tools.meta_frameworks.others
t: 其他元框架
- key: tools.meta_frameworks.others.short
aliasFor: tools.others
- key: tools.meta_frameworks_happiness
t: 元框架满意度
- key: tools.meta_frameworks_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.meta_frameworks_happiness.question
t: 您对元框架的现状满意吗?
- key: tools.meta_frameworks_pain_points
t: 元框架的痛点
- key: tools.meta_frameworks_pain_points.short
aliasFor: tools.pain_points
- key: tools.meta_frameworks_pain_points.question
t: 在使用元框架时,您遇到过哪些痛点?
# testing
- key: tools.testing_ratios
t: 测试工具随时间变化的比率
- key: tools.testing_ratios.short
aliasFor: tools.ratios
- key: tools.testing_experience
t: 测试工具的使用经验和满意度
- key: tools.testing_experience.short
aliasFor: tools.experience
- key: tools.testing.others
t: 其他测试工具
- key: tools.testing.others.short
aliasFor: tools.others
- key: tools.testing_happiness
t: 测试满意度
- key: tools.testing_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.testing_happiness.question
t: 您对测试工具的现状满意吗?
- key: tools.testing_pain_points
t: 测试工具的痛点
- key: tools.testing_pain_points.short
aliasFor: tools.pain_points
- key: tools.testing_pain_points.question
t: 在使用测试工具时,您遇到过哪些痛点?
# mobile & desktop
- key: tools.mobile_desktop_ratios
t: 移动端和桌面端开发工具随时间变化的比率
- key: tools.mobile_desktop_ratios.short
aliasFor: tools.ratios
- key: tools.mobile_desktop_experience
t: 移动端和桌面端开发工具的使用经验和满意度
- key: tools.mobile_desktop_experience.short
aliasFor: tools.experience
- key: tools.mobile_desktop.others
t: 其他移动端和桌面端开发工具
- key: tools.mobile_desktop.others.short
aliasFor: tools.others
- key: tools.mobile_desktop_happiness
t: 开发移动端和桌面端的满意度
- key: tools.mobile_desktop_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.mobile_desktop_happiness.question
t: 您对开发移动端和桌面端的工具的现状满意吗?
- key: tools.mobile_desktop_pain_points
t: 开发移动端和桌面端的痛点
- key: tools.mobile_desktop_pain_points.short
aliasFor: tools.pain_points
- key: tools.mobile_desktop_pain_points.question
t: 在使用 JavaScript 构建移动端和桌面端应用程序时,您遇到了哪些痛点?
# build tools
- key: tools.build_tools_ratios
t: 构建工具随时间变化的比率
- key: tools.build_tools_ratios.short
aliasFor: tools.ratios
- key: tools.build_tools_experience
t: 构建工具的使用经验和满意度
- key: tools.build_tools_experience.short
aliasFor: tools.experience
- key: tools.build_tools.others
t: 其它构建工具
- key: tools.build_tools.others.short
aliasFor: tools.others
- key: tools.build_tools_happiness
t: 构建工具满意度
- key: tools.build_tools_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.build_tools_happiness.question
t: 您对构建工具的现状满意吗?
- key: tools.build_tools_pain_points
t: 构建工具的痛点
- key: tools.build_tools_pain_points.short
aliasFor: tools.pain_points
- key: tools.build_tools_pain_points.question
t: 在使用构建工具时,您遇到了哪些痛点?
# monorepo tools
- key: tools.monorepo_tools_ratios
t: Monorepo工具随时间变化的比率
- key: tools.monorepo_tools_ratios.short
aliasFor: tools.ratios
- key: tools.monorepo_tools_experience
t: Monorepo工具的使用经验和满意度
- key: tools.monorepo_tools_experience.short
aliasFor: tools.experience
- key: tools.monorepo_tools.others
t: 其他Monorepo工具
- key: tools.monorepo_tools.others.short
aliasFor: tools.others
- key: tools.monorepo_tools_happiness
t: Monorepo 满意度
- key: tools.monorepo_tools_happiness.short
aliasFor: charts.axis_legends.happiness
- key: tools.monorepo_tools_happiness.question
t: 您对 Monorepo 工具的现状满意吗?
- key: tools.monorepo_tools_pain_points
t: Monorepo 痛点
- key: tools.monorepo_tools_pain_points.short
aliasFor: tools.pain_points
- key: tools.monorepo_tools_pain_points.question
t: 在使用 Monorepo 工具时,您遇到了哪些痛点?
###########################################################################
# Other Tools
###########################################################################
- key: tools.libraries
t: 工具库
- key: tools.libraries.question
t: 您经常使用哪些工具库?
- key: tools.libraries.others
t: 其他工具库
- key: tools.libraries.others.description
t: 其他答案(自由填写)。
- key: tools.text_editors
t: 文字编辑器
- key: tools.text_editors.question
t: 您经常使用哪些文字编辑器?
- key: tools.text_editors.others
t: 其他文字编辑器
- key: tools.text_editors.others.description
t: 其他答案(自由填写)。
- key: tools.utilities
t: 工具集
- key: tools.utilities.question
t: 您经常使用哪些工具集?
- key: tools.utilities.others
t: 其他工具集
- key: tools.utilities.others.description
t: 其他工具集(自由填写)。
- key: tools.browsers
t: 浏览器
- key: tools.browsers.question
t: 在初始开发过程中,您主要使用哪种浏览器?
- key: tools.browsers.others
t: 其他浏览器
- key: tools.browsers.others.description
t: 其他答案(自由填写)。
- key: tools.build_tools
t: 构建工具
- key: tools.build_tools.question
t: 您经常使用哪些构建工具?
- key: tools.build_tools.others
t: 其他构建工具
- key: tools.build_tools.others.description
t: 其他答案(自由填写)。
- key: tools.non_js_languages
t: 非 JavaScript 语言
- key: tools.non_js_languages.question
t: 您经常使用哪些非 JavaScript 语言?
- key: tools.non_js_languages.others
t: 其他语言
- key: tools.non_js_languages.others.description
t: 其他答案(自由填写)。
- key: tools.javascript_flavors
t: JavaScript 变体
- key: tools.javascript_flavors.question
t: 可编译为 JavaScript 的语言
- key: tools.javascript_flavors.others
t: 其他 JavaScript 变体
- key: tools.javascript_flavors.others.description
t: 其他答案(自由填写)。
###########################################################################
# Other Tools
###########################################################################
- key: tools.runtimes
t: JavaScript 运行时
- key: tools.runtimes.question
t: 你最常使用哪个引擎/运行时/执行环境?
- key: tools.runtimes.others
t: 其他运行时
- key: tools.runtimes.others.description
t: 其他答案(自由填写的答案)。
- key: tools.package_registries
t: 包管理工具
- key: tools.package_registries.question
t: 你最常使用哪个包管理工具?
- key: tools.package_registries.others
t: 其他包管理工具
- key: tools.package_registries.others.description
t: 其他答案(自由填写的答案)。
- 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: 后端即服务 (BasS) 提供商
- key: tools.backend_as_a_service.question
t: 托管数据并提供客户端 API 以访问数据的服务。
- key: tools.backend_as_a_service.others
t: 其他 BasS 提供商
- key: tools.date_management
t: 日期管理
- key: tools.date_management.question
t: 帮助进行日期和时区管理的库。
- key: tools.date_management.others
t: 其他日期管理的库
- key: tools.data_visualization
t: 数据可视化
- key: tools.data_visualization.question
t: 帮助图表和其他数据可视化的库。
- key: tools.data_visualization.others
t: 其他数据可视化的库
- key: tools.graphics_animation
t: 图形与动画
- key: tools.graphics_animation.question
t: 专用于图形和动画的库。
- key: tools.graphics_animation.others
t: 其他图形与动画的库
- key: tools.data_fetching
t: 数据获取
- key: tools.data_fetching.question
t: 管理数据获取和缓存的库。
- key: tools.data_fetching.others
t: 其他数据获取库
- 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
- key: tools.backend_frameworks.description
t: 生成 API 和管理后端的框架
- key: tools.backend_frameworks.others
t: 其他后端框架
- key: other_tools.runtimes
aliasFor: tools.runtimes
- key: other_tools.runtimes.description
aliasFor: tools.runtimes.question
- key: other_tools.runtimes.others
aliasFor: tools.runtimes.others
- key: other_tools.runtimes.others.description