-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstate_of_js.yml
1114 lines (958 loc) · 46 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: vi-VN
namespace: js
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_js.intro
t: >
Thế giới JavaScript có thể cần một chút phân loại.
Kể từ năm 2016, cuộc khảo sát này đã thu thập
dữ liệu từ hơn 20.000 lập trình viên mỗi năm để xác định xu hướng hiện tại và sắp tới.
Cùng nhau, hãy tìm hiểu xem lập trình viên muốn học thư viện nào tiếp theo, thư viện nào có tỷ lệ giữ chân người dùng tốt nhất, và nhiều hơn nữa.
- key: general.state_of_js.title
t: Cuộc Khảo Sát Lập Trình Viên JavaScript
- key: general.state_of_js.description
t: Cuộc khảo sát hàng năm của lập trình viên trong hệ sinh thái JavaScript
###########################################################################
# Sections
###########################################################################
- key: sections.features.title
t: Tính năng
- key: sections.features.description
t: Cú pháp, API trình duyệt, và các tính năng khác.
- key: sections.syntax.description
t: Ngữ pháp của JavaScript.
- key: sections.language.description
t: Từ vựng của JavaScript.
- key: sections.data_structures.description
t: Cách bạn lưu trữ và thao tác dữ liệu.
- key: sections.browser_apis.description
t: Các tính năng do trình duyệt cung cấp.
- key: sections.other_features.description
t: Các công nghệ và mô hình khác
- key: sections.patterns.title
t: Mô hình
- key: sections.patterns.description
t: Cách bạn thích viết code
- key: sections.javascript_flavors.description
t: Ngôn ngữ biên dịch thành JavaScript
- key: sections.front_end_frameworks.description
t: Các framework và thư viện front-end
- key: sections.datalayer.description
t: Tải và quản lý dữ liệu trong ứng dụng của bạn
- key: sections.rendering_frameworks.description
t: Các framework tập trung vào việc render và phục vụ ứng dụng của bạn
- key: sections.meta_frameworks.description
t: Các framework tập trung vào việc render và phục vụ ứng dụng của bạn
- key: sections.back_end_frameworks.description
t: JavaScript trên máy chủ
- key: sections.testing.title
t: Kiểm thử
- key: sections.testing.description
t: Công cụ để kiểm thử code của bạn
- key: sections.mobile_desktop.title
t: Di động & Máy tính để bàn
- key: sections.mobile_desktop.description
t: JavaScript cho thiết bị di động và ứng dụng máy tính để bàn
- key: sections.build_tools.title
t: Công cụ xây dựng
- key: sections.build_tools.description
t: Biên dịch & gói code
- key: sections.monorepo_tools.title
t: Công cụ Monorepo
- key: sections.monorepo_tools.description
t: Công cụ được sử dụng để quản lý monorepo JavaScript.
- key: sections.tools.title
t: Công cụ khác
- key: sections.tools.description
t: Công cụ JavaScript khác
- key: sections.other_tools.title
t: Công cụ khác
- key: sections.other_tools.description
t: Đối với những công cụ & công nghệ này, chỉ cần kiểm tra những cái mà bạn sử dụng thường xuyên.
- key: sections.resources_js.title
t: Tài nguyên
- key: sections.resources_js.description
t: Bạn tham khảo những tài nguyên JavaScript nào?
- key: sections.usage_js.title
t: Sử dụng
- key: sections.usage_js.description
t: Cách bạn sử dụng JavaScript
###########################################################################
# Hỗ trợ Khảo sát
###########################################################################
- key: features.features_intro
t: >
Chào mừng bạn đến với cuộc khảo sát! Phần đầu tiên này tất cả về việc tìm hiểu
những **tính năng** nào của ngôn ngữ JavaScript mà bạn biết.
Và nếu bạn biết về điều gì đó nhưng chưa sử dụng nó, cũng không sao!
- key: tools.tools_intro
t: >
Các phần tiếp theo tập trung vào các **thư viện** và **framework** tạo nên
hệ sinh thái JavaScript. Hãy cho chúng tôi biết điều gì bạn thích thú!
###########################################################################
# Options
###########################################################################
# JS pain points
# - key: options.top_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: Quản lý trạng thái
- key: options.js_pain_points.state_management.description
t: Quản lý trạng thái dữ liệu toàn cục trong các ứng dụng phức tạp.
- key: options.js_pain_points.managing_dependencies
t: Quản lý phụ thuộc
- key: options.js_pain_points.managing_dependencies.description
t: Quản lý phụ thuộc, phiên bản và kích thước package.
- key: options.js_pain_points.architecture
t: Kiến trúc code
- key: options.js_pain_points.architecture.description
t: Tổ chức và duy trì codebase của bạn.
- key: options.js_pain_points.finding_packages
t: Tìm kiếm package
- key: options.js_pain_points.finding_packages.description
t: Tìm kiếm và đánh giá các JavaScript package.
- key: options.js_pain_points.writing_modules
t: Viết module
- key: options.js_pain_points.writing_modules.description
t: Viết module JavaScript và xuất bản chúng dưới dạng gói.
- key: options.js_pain_points.debugging
t: Debug
- key: options.js_pain_points.debugging.description
t: Xác định và giải quyết các vấn đề với code của bạn.
- key: options.js_pain_points.async_code
t: Code bất đồng bộ
- key: options.js_pain_points.async_code.description
t: Xử lý các hàm bất đồng bộ.
- key: options.js_pain_points.modules_management
t: Quản lý module
- key: options.js_pain_points.modules_management.description
t: Viết và nhập các module.
- key: options.js_pain_points.date_management
t: Quản lý Ngày
- key: options.js_pain_points.date_management.description
t: Xử lý và thao tác ngày và giờ.
# - 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: Hiệu suất
- key: options.top_js_pain_points.performance.description
t: Viết code JavaScript hiệu quả và hiệu suất
- key: options.top_js_pain_points.build_tools
t: Công cụ xây dựng
- key: options.top_js_pain_points.build_tools.description
t: Quản lý công cụ để gói code của bạn
- key: options.top_js_pain_points.typing
t: Gõ
- key: options.top_js_pain_points.typing.description
t: Quản lý và duy trì các loại
- key: options.top_js_pain_points.build_tools
t: Công cụ xây dựng
- key: options.top_js_pain_points.typing
t: Gõ
- key: options.top_js_pain_points.typescript
t: TypeScript
- key: options.top_js_pain_points.esm_cjs
t: ESM so với CJS
- key: options.top_js_pain_points.testing
t: Kiểm thử
- key: options.top_js_pain_points.performance
t: Hiệu suất
- key: options.top_js_pain_points.too_many_choices
t: Quá nhiều lựa chọn
- key: options.top_js_pain_points.react
t: React
- key: options.top_js_pain_points.bundlers
t: Các công cụ gói
- key: options.top_js_pain_points.complexity
t: Sự phức tạp
- key: options.top_js_pain_points.standard_library
t: Thư viện chuẩn
- key: options.top_js_pain_points.tooling
t: Công cụ
- key: options.top_js_pain_points.dependencies
t: Phụ thuộc
- key: options.top_js_pain_points.security
t: Bảo mật
- key: options.top_js_pain_points.slow
t: Chậm
# JS missing features
- key: options.currently_missing_from_js.static_typing
t: Kiểu tĩnh
- key: options.currently_missing_from_js.static_typing.description
t: Kiểu chạy nguyên thủy; hoặc kiểu dạng nhận xét theo kiểu TypeScript
- key: options.currently_missing_from_js.standard_library
t: Thư viện chuẩn
- key: options.currently_missing_from_js.standard_library.description
t: Một thư viện chuẩn của các tiện ích phổ biến
- key: options.currently_missing_from_js.pattern_matching
t: Khớp mẫu
- key: options.currently_missing_from_js.pattern_matching.description
t: Một từ khóa `match` mới để khớp mẫu các đối tượng.
- key: options.currently_missing_from_js.js_pipeline_operator
t: Toán tử ống
- key: options.currently_missing_from_js.js_pipeline_operator.description
t: Một toán tử `|>` mới để truyền kết quả của một hàm cho một hàm khác.
- key: options.currently_missing_from_js.decorators
t: Trang trí
- key: options.currently_missing_from_js.decorators.description
t: Trang trí được sử dụng để metaprogram và thêm chức năng cho một giá trị.
- key: options.currently_missing_from_js.immutable_data_structures
t: Cấu trúc dữ liệu bất biến
- key: options.currently_missing_from_js.immutable_data_structures.description
t: Cấu trúc dữ liệu mới hoàn toàn bất biến như `Record` và `Tuple`.
- key: options.currently_missing_from_js.better_date_management
t: Quản lý Ngày tốt hơn
- key: options.currently_missing_from_js.better_date_management.description
t: Một đối tượng `Temporal` mới để làm việc với ngày và giờ.
- key: options.currently_missing_from_js.observable
t: Quan sát được
- key: options.currently_missing_from_js.observable.description
t: Một loại `Observable` mới được sử dụng để mô hình hóa các nguồn dữ liệu dựa trên đẩy.
# - 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: Kiểu tĩnh
- key: options.top_currently_missing_from_js.standard_library
t: Thư viện chuẩn
- key: options.top_currently_missing_from_js.operator_overloading
t: Nạp chồng toán tử
- key: options.top_currently_missing_from_js.immutable
t: Cấu trúc dữ liệu bất biến
- key: options.top_currently_missing_from_js.deep_clone
t: Sao chép sâu
- key: options.top_currently_missing_from_js.enums
t: Liệt kê
- key: options.top_currently_missing_from_js.decorators
t: Trang trí
- key: options.top_currently_missing_from_js.multithreading
t: Đa luồng
- key: options.top_currently_missing_from_js.js_pipeline_operator
t: Toán tử ống
- key: options.top_currently_missing_from_js.native_observables
t: Quan sát được tự nhiên
# Bạn sử dụng JS cho gì?
- key: options.what_do_you_use_js_for.frontend_development
t: Frontend Development
- key: options.what_do_you_use_js_for.backend_development
t: Backend Development
- key: options.what_do_you_use_js_for.data_analysis
t: Data Analysis
- key: options.what_do_you_use_js_for.machine_learning
t: Machine Learning
- key: options.what_do_you_use_js_for.desktop_apps
t: Desktop Apps
- key: options.what_do_you_use_js_for.mobile_apps
t: Mobile Apps
- key: options.what_do_you_use_js_for.embedded_apps
t: Embedded Apps
- key: options.what_do_you_use_js_for.game_development
t: Game Development
- key: options.what_do_you_use_js_for.data_visualization
t: Data Visualization
- key: options.what_do_you_use_js_for.graphics_animation
t: Graphics & Animation
- key: options.what_do_you_use_js_for.scripting
t: Scripting
- key: options.what_do_you_use_js_for.command_line_tools
t: Command Line Tools
- key: options.what_do_you_use_js_for.developer_tooling
t: Developer Tooling
- key: options.what_do_you_use_js_for.automation
t: Automation
- key: options.what_do_you_use_js_for.bots
t: Bots
- key: options.what_do_you_use_js_for.testing
t: Testing
- key: options.what_do_you_use_js_for.browser_extensions
t: Browser Extensions
- key: options.what_do_you_use_js_for.api
t: APIs
- key: options.what_do_you_use_js_for.infrastructure_as_code
t: Infrastructure as Code
- key: options.what_do_you_use_js_for.prototyping
t: Prototyping
# JS App Patterns
- key: options.js_app_patterns.single_page_app
t: Ứng dụng đơn trang (SPA)
- key: options.js_app_patterns.single_page_app.description
t: Ứng dụng chạy hoàn toàn trong trình duyệt
- key: options.js_app_patterns.multiple_page_app
t: Ứng dụng đa trang (MPA)
- key: options.js_app_patterns.multiple_page_app.description
t: Ứng dụng chạy hoàn toàn trên máy chủ, với hành vi động phía khách hàng tối thiểu
- key: options.js_app_patterns.static_site_generation
t: Tạo trang web tĩnh (SSG)
- key: options.js_app_patterns.static_site_generation.description
t: Nội dung tĩnh được tạo trước vào thời gian xây dựng, có hoặc không có một yếu tố động phía khách hàng
- key: options.js_app_patterns.server_side_rendering
t: Hiển thị phía máy chủ (SSR)
- key: options.js_app_patterns.server_side_rendering.description
t: Hiển thị nội dung HTML động trên máy chủ theo yêu cầu, trước khi tái tạo nó trên khách hàng
- key: options.js_app_patterns.partial_hydration
t: Tái tạo một phần
- key: options.js_app_patterns.partial_hydration.description
t: Chỉ tái tạo một số thành phần của bạn trên khách hàng (ví dụ Thành phần máy chủ React)
- key: options.js_app_patterns.progressive_rehydration
t: Tái tạo tiến bộ
- key: options.js_app_patterns.progressive_rehydration.description
t: Điều khiển thứ tự tái tạo thành phần trên khách hàng
- key: options.js_app_patterns.islands_architecture
t: Kiến trúc đảo
- key: options.js_app_patterns.islands_architecture.description
t: Các hòn đảo cô lập của hành vi động với nhiều điểm vào trong một trang web tĩnh khác (Astro, Eleventy)
- key: options.js_app_patterns.progressive_enhancement
t: Tăng cường tiến bộ
- key: options.js_app_patterns.progressive_enhancement.description
t: Đảm bảo một ứng dụng hoạt động ngay cả khi không có JavaScript
- key: options.js_app_patterns.incremental_static_generation
t: Tạo tĩnh tăng phần
- key: options.js_app_patterns.incremental_static_generation.description
t: Có khả năng tăng cường hoặc sửa đổi một trang web tĩnh ngay cả sau khi xây dựng ban đầu (Next.js ISR & on-demand revalidation, Gatsby DSG)
- key: options.js_app_patterns.streaming_ssr
t: SSR Streaming
- key: options.js_app_patterns.streaming_ssr.description
t: Phân chia nội dung được hiển thị trên máy chủ thành các phần nhỏ hơn
- key: options.js_app_patterns.resumability
t: Khả năng tiếp tục
- key: options.js_app_patterns.resumability.description
t: Tạo chuỗi trạng thái khung làm việc trên máy chủ để khách hàng có thể tiếp tục thực thi mà không cần thực thi mã trùng lặp.
- key: options.js_app_patterns.edge_rendering
t: Hiển thị cạnh
- key: options.js_app_patterns.edge_rendering.description
t: Thay đổi HTML đã hiển thị ở cạnh trước khi gửi nó đến khách hàng
- key: options.js_app_patterns.partial_prerendering
t: Hiển thị trước một phần
- key: options.js_app_patterns.partial_prerendering.description
t: Hiển thị một tuyến đường với vỏ tải tĩnh, trong khi giữ một số phần động
- key: options.js_app_patterns.micro_frontend
t: Micro Frontend
- key: options.js_app_patterns.domain_driven_design
t: Domain-Driven 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
###########################################################################
# Features
###########################################################################
# syntax
- key: features.destructuring
t: Destructuring
- key: features.spread_operator
t: Spread operator
- key: features.arrow_functions
t: Arrow Functions
- key: features.nullish_coalescing
t: Nullish Coalescing
- key: features.optional_chaining
t: Optional Chaining
- key: features.private_fields
t: Private Fields
# language
- key: features.proxies
t: Proxies
- key: features.async_await
t: Async/Await
- key: features.promises
t: Promises
- key: features.decorators
t: Trang trí
- key: features.decorators.description
t: >
Trong hình thức đơn giản nhất, một trang trí chỉ đơn giản là cách
bao một đoạn mã với một đoạn mã khác - đúng nghĩa "trang trí" nó.
- key: features.dynamic_import
t: Nhập động
- key: features.syntax_features
t: Tính năng cú pháp
- key: features.syntax_features.question
t: Bạn đã sử dụng những tính năng cú pháp nào?
- key: features.string_features
t: Tính năng chuỗi
- key: features.string_features.question
t: Bạn đã sử dụng những tính năng chuỗi nào?
- key: features.array_features
t: Tính năng Mảng
- key: features.array_features.question
t: Bạn đã sử dụng những tính năng Mảng nào?
- key: features.async_features
t: Tính năng Bất đồng bộ
- key: features.async_features.question
t: Bạn đã sử dụng những tính năng bất đồng bộ nào?
- key: features.browser_api_features
t: API Trình duyệt
- key: features.browser_api_features.question
t: Bạn đã sử dụng những API trình duyệt nào?
- key: features.language_pain_points
t: Điểm đau về Ngôn ngữ
- key: features.language_pain_points.question
t: Những điểm đau chính của bạn về ngôn ngữ JavaScript là gì?
- key: features.browser_apis_pain_points
t: Điểm đau về API Trình duyệt
- key: features.browser_apis_pain_points.question
t: Những điểm đau chính của bạn về API trình duyệt là gì?
# patterns
- key: patterns.object_oriented_programming
t: Lập trình Hướng đối tượng
- key: features.functional_programming
t: Lập trình Chức năng
- key: features.reactive_programming
t: Lập trình Phản ứng
# 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: >
Lưu ý rằng câu hỏi này chỉ nhắm vào kinh nghiệm [Angular](https://angular.io/),
và cụ thể không áp dụng cho [AngularJS](https://angularjs.org/) đã bị ngừng hỗ trợ.
- key: tools.best_of_js_projects.note
t: >
Thư viện được tải từ [Best of JS](https://bestofjs.org/).
Nếu một dự án bị thiếu, bạn có thể [gửi nó tại đây](https://github.com/michaelrambeau/bestofjs/issues/new?template=add-a-project-to-best-of-javascript.md).
# front-end frameworks
- key: tools.front_end_frameworks_happiness
t: Hạnh phúc với Frameworks Front-end
- key: tools.front_end_frameworks_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của các frameworks front-end như thế nào?
- key: tools.front_end_frameworks_pain_points
t: Điểm đau với Frameworks Front-end
- key: tools.front_end_frameworks_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng các frameworks front-end?
# meta-frameworks
- key: tools.meta_frameworks_happiness
t: Hạnh phúc với Meta-Frameworks
- key: tools.meta_frameworks_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của meta-frameworks như thế nào?
- key: tools.meta_frameworks_pain_points
t: Điểm đau với Meta-Frameworks
- key: tools.meta_frameworks_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng meta-frameworks?
# testing
- key: tools.testing_happiness
t: Hạnh phúc với Công cụ Kiểm thử
- key: tools.testing_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của công cụ kiểm thử như thế nào?
- key: tools.testing_pain_points
t: Điểm đau với Công cụ Kiểm thử
- key: tools.testing_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng công cụ kiểm thử?
# mobile & desktop
- key: tools.mobile_desktop_happiness
t: Hạnh phúc với Công cụ Mobile & Desktop
- key: tools.mobile_desktop_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của công cụ mobile & desktop như thế nào?
- key: tools.mobile_desktop_pain_points
t: Điểm đau với Công cụ Mobile & Desktop
- key: tools.mobile_desktop_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng JavaScript để xây dựng ứng dụng mobile & desktop?
# build tools
- key: tools.build_tools_happiness
t: Hạnh phúc với Công cụ Xây dựng
- key: tools.build_tools_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của công cụ xây dựng như thế nào?
- key: tools.build_tools_pain_points
t: Điểm đau với Công cụ Xây dựng
- key: tools.build_tools_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng công cụ xây dựng?
# monorepo tools
- key: tools.monorepo_tools_happiness
t: Hạnh phúc với Công cụ Monorepo
- key: tools.monorepo_tools_happiness.question
t: Bạn hài lòng với trạng thái hiện tại của công cụ monorepo như thế nào?
- key: tools.monorepo_tools_pain_points
t: Điểm đau với Công cụ Monorepo
- key: tools.monorepo_tools_pain_points.question
t: Bạn đã gặp phải những điểm đau nào khi sử dụng công cụ monorepo?
###########################################################################
# Other Tools
###########################################################################
- key: tools.libraries
t: Thư viện
- key: tools.libraries.question
t: Bạn thường xuyên sử dụng những thư viện nào?
- key: tools.libraries.others
t: Thư viện khác
- key: tools.libraries.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.text_editors
t: Trình soạn thảo văn bản
- key: tools.text_editors.question
t: Bạn thường xuyên sử dụng trình soạn thảo văn bản nào?
- key: tools.text_editors.others
t: Trình soạn thảo văn bản khác
- key: tools.text_editors.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.utilities
t: Tiện ích
- key: tools.utilities.question
t: Bạn thường xuyên sử dụng tiện ích hoặc công cụ nào?
- key: tools.utilities.others
t: Tiện ích khác
- key: tools.utilities.others.description
t: Các tiện ích khác (trường tự do).
- key: tools.browsers
t: Trình duyệt
- key: tools.browsers.question
t: Bạn chủ yếu làm việc trên trình duyệt nào trong quá trình phát triển ban đầu?
- key: tools.browsers.others
t: Trình duyệt khác
- key: tools.browsers.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.build_tools
t: Công cụ xây dựng
- key: tools.build_tools.question
t: Bạn sử dụng công cụ xây dựng nào?
- key: tools.build_tools.others
t: Công cụ xây dựng khác
- key: tools.build_tools.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.non_js_languages
t: Ngôn ngữ không phải JavaScript
- key: tools.non_js_languages.question
t: Bạn sử dụng ngôn ngữ lập trình nào khác?
- key: tools.non_js_languages.others
t: Ngôn ngữ khác
- key: tools.non_js_languages.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.javascript_flavors
t: Phiên bản JavaScript
- key: tools.javascript_flavors.question
t: Ngôn ngữ biên dịch thành JavaScript
- key: tools.javascript_flavors.others
t: Phiên bản JavaScript khác
- key: tools.javascript_flavors.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.runtimes
t: Môi trường chạy JavaScript
- key: tools.runtimes.question
t: Bạn thường xuyên sử dụng môi trường nào để chạy JavaScript?
- key: tools.runtimes.others
t: Môi trường chạy khác
- key: tools.runtimes.others.description
t: Các câu trả lời khác (trường tự do).
- key: tools.package_registries
t: Kho lưu trữ gói
- key: tools.package_registries.question
t: Bạn thường xuyên lấy gói từ kho lưu trữ nào?
- key: tools.package_registries.others
t: Kho lưu trữ gói khác
- key: tools.package_registries.others.description
t: Các câu trả lời khác (trường tự do).
- 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: Nhà cung cấp Dịch vụ Backend-as-a-Service
- key: tools.backend_as_a_service.question
t: Dịch vụ lưu trữ dữ liệu của bạn và cung cấp API cho khách hàng để truy cập vào nó.
- key: tools.backend_as_a_service.others
t: Nhà cung cấp BaaS khác
- key: tools.date_management
t: Quản lý Ngày
- key: tools.date_management.question
t: Thư viện hỗ trợ quản lý ngày và múi giờ.
- key: tools.date_management.others
t: Thư viện Quản lý Ngày khác
- key: tools.data_visualization
t: Trực quan hóa Dữ liệu
- key: tools.data_visualization.question
t: Thư viện hỗ trợ vẽ biểu đồ và các trực quan hóa dữ liệu khác.
- key: tools.data_visualization.others
t: Thư viện Trực quan hóa Dữ liệu khác
- key: tools.graphics_animation
t: Đồ họa & Hoạt ảnh
- key: tools.graphics_animation.question
t: Thư viện chuyên về đồ họa và hoạt ảnh.
- key: tools.graphics_animation.others
t: Thư viện Đồ họa & Hoạt ảnh khác
- key: tools.data_fetching
t: Lấy Dữ liệu
- key: tools.data_fetching.question
t: Thư viện quản lý việc lấy dữ liệu và lưu trong bộ nhớ cache.
- key: tools.data_fetching.others
t: Thư viện Lấy Dữ liệu khác
- 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: Frameworks for generating APIs and managing back-ends
- key: tools.backend_frameworks.others
t: Other Back-end Frameworks
- 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
aliasFor: tools.runtimes.others.description
- key: other_tools.package_registries
aliasFor: tools.package_registries
- key: other_tools.package_registries.description
aliasFor: tools.package_registries.question
- key: other_tools.package_registries.others
aliasFor: tools.package_registries.others
- key: other_tools.package_registries.others.description
aliasFor: tools.package_registries.others.description
- key: other_tools.form_factors
aliasFor: tools.form_factors
- key: other_tools.form_factors.description
aliasFor: tools.form_factors.description
- key: other_tools.backend_as_a_service
aliasFor: tools.backend_as_a_service
- key: other_tools.backend_as_a_service.description
aliasFor: tools.backend_as_a_service.question
- key: other_tools.backend_as_a_service.others
aliasFor: tools.backend_as_a_service.others
- key: other_tools.date_management
aliasFor: tools.date_management
- key: other_tools.date_management.description
aliasFor: tools.date_management.question
- key: other_tools.date_management.others
aliasFor: tools.date_management.others
- key: other_tools.data_visualization
aliasFor: tools.data_visualization
- key: other_tools.data_visualization.description
aliasFor: tools.data_visualization.question
- key: other_tools.data_visualization.others
aliasFor: tools.data_visualization.others
- key: other_tools.graphics_animation
aliasFor: tools.graphics_animation
- key: other_tools.graphics_animation.description
aliasFor: tools.graphics_animation.question
- key: other_tools.graphics_animation.others
aliasFor: tools.graphics_animation.others
- key: other_tools.data_fetching
aliasFor: tools.data_fetching
- key: other_tools.data_fetching.description
aliasFor: tools.data_fetching.question
- key: other_tools.data_fetching.others
aliasFor: tools.data_fetching.others
- key: other_tools.backend_frameworks
aliasFor: tools.backend_frameworks
- key: other_tools.backend_frameworks.description
aliasFor: tools.backend_frameworks.description
- key: other_tools.backend_frameworks.others
aliasFor: tools.backend_frameworks.others
- key: tools.ai_tools
t: Công cụ AI
- key: tools.ai_tools.question
t: Bạn thường xuyên sử dụng công cụ AI nào để hỗ trợ viết code?
- key: tools.hosting
t: Dịch vụ Hosting
- key: tools.hosting.question
t: Bạn đã sử dụng dịch vụ nào để host ứng dụng JavaScript?
###########################################################################
# Sử dụng
###########################################################################
- key: usage.js_app_patterns
t: Mô hình Ứng dụng
- key: usage.js_app_patterns.question
t: Bạn đã sử dụng mô hình kiến trúc và rendering nào **trong năm qua**?
- key: usage.js_app_patterns.others
t: Mô hình Ứng dụng khác
- key: usage.what_do_you_use_js_for
t: Sử dụng JavaScript
- key: usage.what_do_you_use_js_for.question
t: Bạn sử dụng JavaScript cho mục đích gì?
- key: usage.what_do_you_use_js_for.others
t: Các trường hợp sử dụng JavaScript khác
- key: usage.js_ts_balance
t: Cân nhắc giữa JavaScript/TypeScript
- key: usage.js_ts_balance.question
t: Bạn chia thời gian giữa việc viết code JavaScript và TypeScript như thế nào?
- key: tools.edge_runtimes
t: Môi trường chạy JavaScript Edge/Serverless
- key: tools.edge_runtimes.question
t: Bạn thường xuyên sử dụng môi trường chạy edge hoặc serverless nào?
- key: tools.edge_runtimes.others
t: Môi trường chạy Edge khác
- key: usage.usage_type
t: Sử dụng JavaScript
- key: usage.usage_type.question
t: Bạn chủ yếu sử dụng JavaScript trong ngữ cảnh nào?
- key: usage.usage_type.others
t: Các trường hợp sử dụng khác
- key: opinions.pick_of_the_year
t: Lựa chọn của bạn trong năm
- key: opinions.pick_of_the_year.description
t: Tên của một tính năng, thư viện, website, người, v.v. mà bạn muốn nổi bật trong năm nay.
- key: usage.industry_sector_js
aliasFor: usage.industry_sector
- key: usage.industry_sector_js.question
t: Bạn đang sử dụng JavaScript trong ngành công nghiệp nào?
- key: usage.industry_sector_js.others
aliasFor: usage.industry_sector.others
###########################################################################
# Opinions
###########################################################################
- key: opinions.js_moving_in_right_direction
t: JavaScript đang đi đúng hướng
- key: opinions.building_js_apps_overly_complex
t: Việc xây dựng ứng dụng JavaScript hiện nay quá phức tạp
- key: opinions.js_over_used_online
t: JavaScript được sử dụng quá mức trên mạng
- key: opinions.enjoy_building_js_apps
t: Tôi thích xây dựng ứng dụng JavaScript
- key: opinions.would_like_js_to_be_main_lang