-
Notifications
You must be signed in to change notification settings - Fork 139
/
README.md
1585 lines (1314 loc) · 199 KB
/
README.md
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
> 该项目受 [awesome-nodejs](https://github.com/sindresorhus/awesome-nodejs) 启发
>
> 因库收录较多,全部同步star数会影响加载速度,因此只展示 > 100 的仓库
>
> 同时推荐你查看我正在维护的其他仓库
> - [awesome-nodejs](https://github.com/huaize2020/awesome-nodejs)
> - [awesome-koa](https://github.com/huaize2020/awesome-koa)
> - [awesome-egg](https://github.com/huaize2020/awesome-egg)
> - [awesome-frontend](https://github.com/huaize2020/awesome-frontend)
> - [awesome-react](https://github.com/huaize2020/awesome-react)
> - [awesome-react-native](https://github.com/huaize2020/awesome-react-native)
> - [awesome-electron](https://github.com/electron-modules/awesome-electron)
> - [awesome-rust](https://github.com/huaize2020/awesome-rust)
[English](./README-en.md) | 简体中文
## 目录
- [目录](#目录)
- [官方资源](#官方资源)
- [资源](#资源)
- [工具](#工具)
- [书籍](#书籍)
- [教程](#教程)
- [免费教程](#免费教程)
- [付费教程](#付费教程)
- [视频](#视频)
- [付费视频](#付费视频)
- [面试题](#面试题)
- [GIT 仓库](#git-仓库)
- [文本/字符串](#文本字符串)
- [数字](#数字)
- [数学运算](#数学运算)
- [日期 和 时间](#日期-和-时间)
- [正则/通配符匹配](#正则通配符匹配)
- [URL](#url)
- [对象 / JSON / JSON Schema](#对象--json--json-schema)
- [元编程](#元编程)
- [图像处理](#图像处理)
- [SVG](#svg)
- [画布(Canvas)](#画布canvas)
- [音频 / 视频处理](#音频--视频处理)
- [字体](#字体)
- [颜色](#颜色)
- [加解密](#加解密)
- [流](#流)
- [检测/判断](#检测判断)
- [数据校验](#数据校验)
- [函数式编程](#函数式编程)
- [流程控制](#流程控制)
- [控制反转/依赖注入](#控制反转依赖注入)
- [Shell](#shell)
- [环境](#环境)
- [事件](#事件)
- [命令行工具](#命令行工具)
- [Node.js 管理工具](#nodejs-管理工具)
- [NPM](#npm)
- [Monorepo](#monorepo)
- [文件系统](#文件系统)
- [解析工具](#解析工具)
- [Git](#git)
- [日志](#日志)
- [进程管理](#进程管理)
- [代码校验 和 格式化工具](#代码校验-和-格式化工具)
- [配置工具](#配置工具)
- [构建工具](#构建工具)
- [模板引擎](#模板引擎)
- [Web 框架](#web-框架)
- [GraphQL](#graphql)
- [内容管理系统 (CMS)](#内容管理系统-cms)
- [静态网站生成 \& 博客](#静态网站生成--博客)
- [文档生成](#文档生成)
- [接口管理](#接口管理)
- [桌面应用程序](#桌面应用程序)
- [实时通信](#实时通信)
- [任务队列](#任务队列)
- [定时任务](#定时任务)
- [调试](#调试)
- [性能分析/诊断](#性能分析诊断)
- [性能优化](#性能优化)
- [应用性能监控 (APM)](#应用性能监控-apm)
- [论坛](#论坛)
- [数据库](#数据库)
- [缓存](#缓存)
- [搜索引擎/分词](#搜索引擎分词)
- [Serverless](#serverless)
- [自动化 \& 机器人流程自动化 - RPA](#自动化--机器人流程自动化---rpa)
- [测试相关](#测试相关)
- [办公软件](#办公软件)
- [操作系统识别](#操作系统识别)
- [文件压缩解压](#文件压缩解压)
- [最小化](#最小化)
- [源码混淆/保护](#源码混淆保护)
- [邮箱](#邮箱)
- [网络](#网络)
- [HTTP](#http)
- [限流](#限流)
- [验证](#验证)
- [授权 / 鉴权](#授权--鉴权)
- [分布式](#分布式)
- [序列化](#序列化)
- [RPC](#rpc)
- [服务端 DOM](#服务端-dom)
- [爬虫](#爬虫)
- [AST](#ast)
- [WebAssembly](#webassembly)
- [设计稿转代码(D2C)](#设计稿转代码d2c)
- [沙箱](#沙箱)
- [硬件](#硬件)
- [物联网 IoT](#物联网-iot)
- [机器学习 和 神经网络](#机器学习-和-神经网络)
- [自然语言处理](#自然语言处理)
- [GPT](#gpt)
- [OCR](#ocr)
- [比特币](#比特币)
- [场景](#场景)
- [低代码(Lowcode)](#低代码lowcode)
- [云 IDE](#云-ide)
## 官方资源
- [官网](https://nodejs.org)
- [文档](https://nodejs.org/dist/latest/docs/api/)
- [仓库](https://github.com/nodejs/node)
- [文章教程](https://nodejs.dev/learn)
## 资源
### 工具
- [openbase](https://openbase.com/) - 让你每次都要找到合适的包。目前支持 JavaScript,即将推出更多语言。
- [npm.devtool](https://npm.devtool.tech/) - 找到最适合您的包,分析您的项目技术栈。
### 书籍
- [狼书(卷3):Node.js高级技术](https://item.jd.com/10066761907558.html) - 2022-12-01 - [@狼叔](https://www.zhihu.com/people/i5ting)
- 本书聚焦于Node.js高级技术。第1章介绍如何编写npm模块,其中涉及对许多常用模块的解析。第2章介绍如何编写企业级Web开发框架,主要剖析了开发框架的流程。第3章介绍如何构建具有Node.js特色的服务,着重讲解了页面即服务的概念。第4章介绍服务器部署与性能调优的相关知识。第5章介绍TDD和BDD理念,以及如何编写测试用例,同时分享了笔者关于开源和自学的看法。
- [狼书(卷2):Node.js Web应用开发](https://item.jd.com/12614927.html) - 2020-01-01 - [@狼叔](https://www.zhihu.com/people/i5ting)
- 本书主要讲解Node.js Web应用开发涉及的HTTP基础知识、常用开发框架、源码原理、数据库和项目实战,旨在向读者展示如何通过Node.js和Koa编写出更具前端特色的Web应用。本书还讲解了Koa中的核心中间件原理,展望了未来Web应用开发的发展方向。
- [狼书(卷1):更了不起的Node.js](https://item.jd.com/12623248.html) - 2019-07-01 - [@狼叔](https://www.zhihu.com/people/i5ting)
- 本书以Node.js为主,讲解了Node.js的基础知识、开发调试方法、源码原理和应用场景,旨在向读者展示如何通过新的Node.js和npm编写出更具前端特色、更具工程化优势的代码。
- [Node.js:来一打 C++ 扩展](https://item.jd.com/12380404.html) - 2018-06-01 - [@死月](https://www.zhihu.com/people/xadillax)
- Node.js 作为近几年新兴的一种编程运行时,托 V8 引擎的福,在作为后端服务时有比较高的运行效率,在很多场景下对于我们的日常开发足够用了。不过,它还为开发者开了一个使用C++ 开发 Node.js 原生扩展的口子,让开发者进行项目开发时有了更多的选择。
- [深入浅出Node.js](https://item.jd.com/11355978.html) - 2013-12-01 - [@朴灵](https://www.zhihu.com/people/po-ling)
- 初版时间《深入浅出Node.js》从不同的视角介绍了 Node 内在的特点和结构。由首章Node 介绍为索引,涉及Node 的各个方面,主要内容包含模块机制的揭示、异步I/O 实现原理的展现、异步编程的探讨、内存控制的介绍、二进制数据Buffer 的细节、Node 中的网络编程基础、Node 中的Web 开发、进程间的消息传递、Node 测试以及通过Node 构建产品需要的注意事项。附录介绍了Node 的安装、调试、编码规范和NPM 仓库等事宜。
### 教程
#### 免费教程
- [Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices/blob/master/README.chinese.md) - Node.js 最佳体验列表。 ![](https://img.shields.io/github/stars/goldbergyoni/nodebestpractices.svg?style=social&label=Star)
- [Nodejs 包教不包会](https://github.com/alsotang/node-lessons) - 经典 Nodejs 教程。 ![](https://img.shields.io/github/stars/alsotang/node-lessons.svg?style=social&label=Star)
- [Nodejs 技术栈](https://www.nodejs.red/) - 包含很多 nodejs 相关文章。
- [七天学会 NodeJS](http://nqdeng.github.io/7-days-nodejs/) - 经典 Nodejs 教程。 ![](https://img.shields.io/github/stars/nqdeng/7-days-nodejs.svg?style=social&label=Star)
- [understand-nodejs](https://github.com/theanarkh/understand-nodejs) - 通过源码分析 nodejs 原理。 ![](https://img.shields.io/github/stars/theanarkh/understand-nodejs.svg?style=social&label=Star)
- [Nodejs-Roadmap](https://github.com/qufei1993/Nodejs-Roadmap) - 本文档是作者 @五月君 从事 Node.js 开发以来的学习历程。![](https://img.shields.io/github/stars/qufei1993/Nodejs-Roadmap.svg?style=social&label=Star)
- [Node.js 应用故障排查手册](https://github.com/aliyun-node/Node.js-Troubleshooting-Guide) - 本手册主要的目的是帮助广大的 Node.js 开发者应对开发和线上部署中遇到的问题。![](https://img.shields.io/github/stars/aliyun-node/Node.js-Troubleshooting-Guide.svg?style=social&label=Star)
#### 付费教程
> 仅做整理,不代表编者意图和推荐,请自行判断
- [深入剖析 Node.js 底层原理](https://juejin.cn/book/7171733571638738952) - 掘金小册 - theanarkh 字节跳动 Node.js 工程师
- 从源码角度解读 Node.js 底层设计,并实现一个简单的 JS 运行时。
### 视频
#### 付费视频
> 仅做整理,不代表编者意图和推荐,请自行判断
- [Node.js 开发实战](https://time.geekbang.org/course/intro/100036001) - 极客时间 - 杨浩 腾讯高级工程师
- 本课程站在一个前端工程师的角度,讲解如何基于 Node.js 开发一个完整的项目,从一开始的技术预研再到实际开发、性能优化以及最终的框架架构搭建和工程化建设,带你完整体验一遍前端工程师使用 Node.js 进行项目开发会碰到的各种常见场景和技术难点,学完课程之后,你将能够熟练运用 Node.js 进行大型项目的设计和开发。
- [构建千万级高可用企业级Node.js应用](https://coding.imooc.com/class/569.html) - 慕客网 - 进阶
- 即使你会用 Node.js 开发小型项目后端系统,也只能说你掌握了它最基本的用法,并不足以打动大厂招聘官。因为,很多大厂选择 Node.js来承接服务端(BFF层),涉及的项目更为复杂,要求也更加精细,这需要前端既非常懂 Node.js 本身,也要懂其相关的服务端知识,才能更好地支撑大规模线上业务。本课程就带你学习BAT级别的 Node.js 用法,快速提升你在前端市场的区分度和竞争力。
- [Node.js工程师养成计划](https://coding.imooc.com/class/chapter/584.html) - 慕客网 - 初级 - 北瑶 - 系统架构师
- 保姆级教程,手把手带你完成工具、服务器、中间层等多类应用开发实战
### 面试题
- [饿了么 Node.js 面试题及实战教程](https://github.com/ElemeFE/node-interview/tree/master/sections/zh-cn) - 由饿了么前端团队分享的 node.js 实战经验,非常实用。
## GIT 仓库
### 文本/字符串
- 通用
- [humps](https://github.com/domchristie/humps) - 将字符串 或 对象的Key 从下划线转化为驼峰。 ![](https://img.shields.io/github/stars/domchristie/humps.svg?style=social&label=Star)
- [dedent](https://github.com/dmnd/dedent) - ES6 模板字符串函数,用于去除多行字符串的缩进。 ![](https://img.shields.io/github/stars/dmnd/dedent.svg?style=social&label=Star)
- [camelcase](https://github.com/sindresorhus/camelcase) - 将破折号/点号/下划线/空格分隔的字符串转换为驼峰式, 案例:foo-bar→fooBar。
- [string-width](https://github.com/sindresorhus/string-width) - 获取字符串的可视宽度-显示字符串所需的列数。
- [decamelize](https://github.com/sindresorhus/decamelize) - 将驼峰式字符串转化成小写带分隔符带字符串, 案例:unicornRainbow → unicorn_rainbow。
- [detect-indent](https://github.com/sindresorhus/detect-indent) - 检查代码缩进。
- [string-length](https://github.com/sindresorhus/string-length) - 获取字符串的真实长度 - 通过正确计算星号并忽略 ansi 转义码。
- [strip-indent](https://github.com/sindresorhus/strip-indent) - 将字符串每一行中前置的空格删除。
- [strip-bom](https://github.com/sindresorhus/strip-bom) - 从字符串中删除 UTF-8 字节顺序标记(BOM)。
- [indent-string](https://github.com/sindresorhus/indent-string) - 将字符串每一行缩进。
- [redent](https://github.com/sindresorhus/redent) - 去除多余的缩进并缩进字符串。
- [normalize-newline](https://github.com/sindresorhus/normalize-newline) - 将字符串中的换行符规范化为 `\n`。
- [min-indent](https://github.com/jamiebuilds/min-indent) - 取每一行最少前置空格数。
- [trim-right](https://github.com/sindresorhus/trim-right) - 与 String#trim() 类似,但仅删除右侧的空格。
- [splice-string](https://github.com/sindresorhus/splice-string) - 移除或替换字符串的一部分。类似`Array#splice`.
- 国际化
- [i18next](https://github.com/i18next/i18next) - 国际化框架。 ![](https://img.shields.io/github/stars/i18next/i18next.svg?style=social&label=Star)
- [i18n-node](https://github.com/mashpie/i18n-node) - 具有动态 JSON 存储的简单翻译模块。 ![](https://img.shields.io/github/stars/mashpie/i18n-node.svg?style=social&label=Star)
- [babelfish](https://github.com/nodeca/babelfish) - 适用于 JavaScript 的人性化 i18n(node.js +浏览器)。 ![](https://img.shields.io/github/stars/nodeca/babelfish.svg?style=social&label=Star)
- 唯一 ID
- [nanoid](https://github.com/ai/nanoid) - 小巧、安全、URL 友好、唯一的字符串 ID 生成器。 ![](https://img.shields.io/github/stars/ai/nanoid.svg?style=social&label=Star)
- [uuid](https://github.com/uuidjs/uuid) - 在 JavaScript 中生成符合 RFC 规范的 UUID。 ![](https://img.shields.io/github/stars/uuidjs/uuid.svg?style=social&label=Star)
- [shortid](https://github.com/dylang/shortid) - 短 ID 生成器。 网址友好。 不可预测的。 集群兼容。 ![](https://img.shields.io/github/stars/dylang/shortid.svg?style=social&label=Star)
- [cuid](https://github.com/ericelliott/cuid) - 针对水平扩展和性能优化的抗冲突 ids。 ![](https://img.shields.io/github/stars/ericelliott/cuid.svg?style=social&label=Star)
- [ulid](https://github.com/ulid/javascript) - 通用唯一词典分类排序标识符。 ![](https://img.shields.io/github/stars/ulid/javascript.svg?style=social&label=Star)
- [short-uuid](https://github.com/oculus42/short-uuid) - 将标准 UUID 转换为更短的格式并返回。 ![](https://img.shields.io/github/stars/oculus42/short-uuid.svg?style=social&label=Star)
- [uuid-js](https://github.com/pnegri/uuid-js) - 用于生成和解析 UUID、TimeUUID 并根据日期生成 TimeUUID 以供范围选择。 ![](https://img.shields.io/github/stars/pnegri/uuid-js.svg?style=social&label=Star)
- [pure-uuid](https://github.com/rse/pure-uuid) - 基于纯 JavaScript 全局唯一 ID(UUID)。
- [lsp-uuid](https://github.com/ryouaki/lsp-uuid) - 一个基于 SnowFlake 的 uuid 生成器,用于浏览器和 Nodejs。 保持序列并且可以反序列化。
- 编码/解码
- [he](https://github.com/mathiasbynens/he) - HTML 实体编码器/解码器。 ![](https://img.shields.io/github/stars/mathiasbynens/he.svg?style=social&label=Star)
- [iconv-lite](https://github.com/ashtuchkin/iconv-lite) - 转换字符编码。 ![](https://img.shields.io/github/stars/ashtuchkin/iconv-lite.svg?style=social&label=Star)
- [html-entities](https://github.com/mdevils/html-entities) - 最快的 HTML 实体编码/解码库. ![](https://img.shields.io/github/stars/andrejewski/himalaya.svg?style=social&label=Star)
- [jschardet](https://github.com/aadsm/jschardet) - JavaScript 编码自动识别 (Python 版 chardet 的实现)。 ![](https://img.shields.io/github/stars/aadsm/jschardet.svg?style=social&label=Star)
- 差异对比
- [jsdiff](https://github.com/kpdecker/jsdiff) - 一种 JavaScript 文本差异实现。 ![](https://img.shields.io/github/stars/kpdecker/jsdiff.svg?style=social&label=Star)
- [recursive-diff](https://github.com/cosmicanant/recursive-diff) - 查找两个 JavaScript 对象的差异,支持数组、数字、日期和其他原始数据类型。 ![](https://img.shields.io/github/stars/cosmicanant/recursive-diff.svg?style=social&label=Star)
- [json0-ot-diff](https://github.com/kbadk/json0-ot-diff) - 查找两个 JSON 对象之间的差异,并根据 JSON0 OT Type 生成将第一个对象转换为第二个对象的操作转换/值(OT)操作。 ![](https://img.shields.io/github/stars/kbadk/json0-ot-diff.svg?style=social&label=Star)
- 随机字符串
- [generate-password](https://github.com/brendanashworth/generate-password) - 用于生成加密安全密码的 NodeJS 库。 ![](https://img.shields.io/github/stars/brendanashworth/generate-password.svg?style=social&label=Star)
- [randomatic](https://github.com/jonschlinkert/randomatic) - 使用简单的选项来指定长度和使用数字、字母数字、字母、特殊或自定义字符的模式,轻松生成密码等随机字符串。(源自`generate-password`) ![](https://img.shields.io/github/stars/jonschlinkert/randomatic.svg?style=social&label=Star)
- 其他
- [StegCloak](https://github.com/kurolabs/stegcloak) - 基于纯 JavaScript 开发的隐写功能模块,StegCloak 可以对文本中的机密信息进行压缩和加密,然后再使用特殊的 Unicode 不可见字符来隐藏它。 ![](https://img.shields.io/github/stars/kurolabs/stegcloak.svg?style=social&label=Star)
- [unhomoglyph](https://github.com/nodeca/unhomoglyph) - 规范视觉上相似的 unicode 字符。
### 数字
- [Numeral.js](https://github.com/adamwdraper/Numeral-js) - 格式化和操作数字。 ![](https://img.shields.io/github/stars/adamwdraper/Numeral-js.svg?style=social&label=Star)
- [bignumber.js](https://github.com/MikeMcl/bignumber.js) - 用于任意精度十进制和非十进制算术的 JavaScript 库。 ![](https://img.shields.io/github/stars/MikeMcl/bignumber.js.svg?style=social&label=Star)
- [decimal.js](https://github.com/MikeMcl/decimal.js) - JavaScript 的任意精度的十进制类型。 ![](https://img.shields.io/github/stars/MikeMcl/decimal.js.svg?style=social&label=Star)
- [big.js](https://github.com/MikeMcl/big.js) - 一个小型,快速的 JavaScript 库,用于任意精度的十进制算术运算。 ![](https://img.shields.io/github/stars/MikeMcl/big.js.svg?style=social&label=Star)
- [random-js](https://github.com/ckknight/random-js) - 一个 JavaScript 随机数生成库。 ![](https://img.shields.io/github/stars/ckknight/random-js.svg?style=social&label=Star)
- [round-to](https://github.com/sindresorhus/round-to) - 将数字四舍五入到指定的小数位数:`1.234`→`1.2`。 ![](https://img.shields.io/github/stars/sindresorhus/round-to.svg?style=social&label=Star)
- [unique-random](https://github.com/sindresorhus/unique-random) - 生成连续唯一的随机数。
- [random-int](https://github.com/sindresorhus/random-int) - 生成随机整数。
- [random-float](https://github.com/sindresorhus/random-float) - 生成随机浮点数。 label=Star)
### 数学运算
- [mathjs](https://github.com/josdejong/mathjs) - 广泛的数学运算库。 ![](https://img.shields.io/github/stars/josdejong/mathjs.svg?style=social&label=Star)
- [ndarray](https://github.com/scijs/ndarray) - 多维数组。 ![](https://img.shields.io/github/stars/scijs/ndarray.svg?style=social&label=Star)
- [algebra](https://github.com/fibo/algebra) - 代数结构。
- [multimath](https://github.com/nodeca/multimath) - 在 WebAssembly 和 JS 中进行快速图像数学运算。
### 日期 和 时间
- [moment](https://github.com/moment/moment) - 解析、校验、操作和显示日期。 ![](https://img.shields.io/github/stars/moment/moment.svg?style=social&label=Star)
- [dayjs](https://github.com/iamkun/dayjs) - 仅 2KB,不可变的日期时间库。使用与 Moment.js 同样的 API,Moment.js 的替代库。 ![](https://img.shields.io/github/stars/iamkun/dayjs.svg?style=social&label=Star)
- [date-fns](https://github.com/date-fns/date-fns) - 现代 JavaScript 日期工具库。 ![](https://img.shields.io/github/stars/date-fns/date-fns.svg?style=social&label=Star)
- [luxon](https://github.com/moment/luxon) - 用于处理日期和时间的库。 ![](https://img.shields.io/github/stars/moment/luxon.svg?style=social&label=Star)
- [timeago.js](https://github.com/hustcc/timeago.js) - timeago.js 是一个很小的(2.0 kb)库,用于使用 *** time ago 语句格式化日期。 ![](https://img.shields.io/github/stars/hustcc/timeago.js.svg?style=social&label=Star)
- [ms](https://github.com/vercel/ms) - 毫秒转换工具。 ![](https://img.shields.io/github/stars/vercel/ms.svg?style=social&label=Star)
- [dateformat](https://github.com/felixge/node-dateformat) - 日期格式化。 ![](https://img.shields.io/github/stars/felixge/node-dateformat.svg?style=social&label=Star)
- [pretty-ms](https://github.com/sindresorhus/pretty-ms) - 将毫秒转换为人类可读的字符串,如: `1337000000` → `15d 11h 23m 20s`。 ![](https://img.shields.io/github/stars/sindresorhus/pretty-ms.svg?style=social&label=Star)
- [strftime](https://github.com/samsonjs/strftime) - JavaScript 版时间格式化 Strftime。 ![](https://img.shields.io/github/stars/samsonjs/strftime.svg?style=social&label=Star)
- [node-microtime](https://github.com/wadey/node-microtime) - 以微秒为单位获取当前时间。 ![](https://img.shields.io/github/stars/wadey/node-microtime.svg?style=social&label=Star)
- [date-utils](https://github.com/JerrySievert/date-utils) - 用于 Node.js 和浏览器的日期垫片(Polyfills)。 ![](https://img.shields.io/github/stars/JerrySievert/date-utils.svg?style=social&label=Star)
- [pretty-hrtime](https://github.com/robrich/pretty-hrtime) - 将 process.hrtime()的结果转换为人可读性的字符串。
- [humanize-ms](https://github.com/node-modules/humanize-ms) - 对人友好可读的时间格式转换为毫秒。
### 正则/通配符匹配
- [path-to-regexp](https://github.com/pillarjs/path-to-regexp) - 将路径字符串(如`/user/:name`)转化为正则。 ![](https://img.shields.io/github/stars/pillarjs/path-to-regexp.svg?style=social&label=Star)
- [minimatch](https://github.com/isaacs/minimatch) - 最小匹配工具。 ![](https://img.shields.io/github/stars/isaacs/minimatch.svg?style=social&label=Star)
- [micromatch](https://github.com/micromatch/micromatch) - 高度优化的通配符和全局匹配库。更快,直接替换到 minimatch 和 multimatch。由 webpack、babel core、yarn、jest、browser-sync、documentation.js、stylelint、nyc、ava 以及许多其他资源使用! ![](https://img.shields.io/github/stars/micromatch/micromatch.svg?style=social&label=Star)
- [randexp.js](https://github.com/fent/randexp.js) - 根据给定的正则表达式,生成随机字符串。 ![](https://img.shields.io/github/stars/fent/randexp.js.svg?style=social&label=Star)
- [safe-regex](https://github.com/substack/safe-regex) - 检测可能是灾难性的、指数时间的正则表达式。 ![](https://img.shields.io/github/stars/substack/safe-regex.svg?style=social&label=Star)
- [matcher](https://github.com/sindresorhus/matcher) - 简单通配符匹配。 ![](https://img.shields.io/github/stars/sindresorhus/matcher.svg?style=social&label=Star)
- [escape-string-regexp](https://github.com/sindresorhus/escape-string-regexp) - 转义特殊正则字符。 ![](https://img.shields.io/github/stars/sindresorhus/escape-string-regexp.svg?style=social&label=Star)
- [multimatch](https://github.com/sindresorhus/multimatch) - 扩展 minimatch.match() 以支持多种模式。 ![](https://img.shields.io/github/stars/sindresorhus/multimatch.svg?style=social&label=Star)
- [execall](https://github.com/sindresorhus/execall) - 在字符串中查找多个 RegExp 匹配项。
### URL
- [URI.js](https://github.com/medialize/URI.js) - URL 转换库。 ![](https://img.shields.io/github/stars/medialize/URI.js.svg?style=social&label=Star)
- [qs](https://github.com/ljharb/qs) - 请求字符串解析器。 ![](https://img.shields.io/github/stars/ljharb/qs.svg?style=social&label=Star)
- [query-string](https://github.com/sindresorhus/query-string) - 解析和字符串化 URL 查询字符串。 ![](https://img.shields.io/github/stars/sindresorhus/query-string.svg?style=social&label=Star)
- [url-parse](https://github.com/unshiftio/url-parse) - 轻量 URL 解析器,可跨 Node.js 和浏览器环境无缝运行。 ![](https://img.shields.io/github/stars/unshiftio/url-parse.svg?style=social&label=Star)
- [normalize-url](https://github.com/sindresorhus/normalize-url) - 规范化 URL. ![](https://img.shields.io/github/stars/sindresorhus/normalize-url.svg?style=social&label=Star)
- [url-pattern](https://github.com/snd/url-pattern) - 比正则表达式更易匹配 URL 和其他字符串,将字符串转化成数据 或 将数据转换成字符串。 ![](https://img.shields.io/github/stars/snd/url-pattern.svg?style=social&label=Star)
- [native-url](https://github.com/GoogleChromeLabs/native-url) - 使用内建 URL API 实现的 NodeJS URL 模块。 ![](https://img.shields.io/github/stars/GoogleChromeLabs/native-url.svg?style=social&label=Star)
- [url-join](https://github.com/jfromaniello/url-join) - 将所有参数连接在一起,并将结果 url 规范化。 ![](https://img.shields.io/github/stars/jfromaniello/url-join.svg?style=social&label=Star)
- [humanize-url](https://github.com/sindresorhus/humanize-url) - 使 URL 更可读: http://sindresorhus.com → sindresorhus.com。 ![](https://img.shields.io/github/stars/sindresorhus/humanize-url.svg?style=social&label=Star)
- [parseurl](https://github.com/pillarjs/parseurl) - 使用记忆化方式解析 URL. ![](https://img.shields.io/github/stars/pillarjs/parseurl.svg?style=social&label=Star)
- [file-url](https://github.com/sindresorhus/file-url) - 将文件路径转化为文件 URL: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`。
- [encodeurl](https://github.com/pillarjs/encodeurl) - 将 URL 编码为"百分比"形式,不编码已编码部分。
### 对象 / JSON / JSON Schema
- [json5](https://github.com/json5/json5) - JSON5 是对 JSON 的扩展,其目的是能够更加容易的阅读和编写。 ![](https://img.shields.io/github/stars/json5/json5.svg?style=social&label=Star)
- [jsondiffpatch](https://github.com/benjamine/jsondiffpatch) - 对比 JSON 对象,并生成差异和 Patch 信息。 ![](https://img.shields.io/github/stars/benjamine/jsondiffpatch.svg?style=social&label=Star)
- [json-schema-faker](https://github.com/json-schema-faker/json-schema-faker) - JSON-Schema + 假数据生成器。 ![](https://img.shields.io/github/stars/json-schema-faker/json-schema-faker.svg?style=social&label=Star)
- [fast-json-stringify](https://github.com/fastify/fast-json-stringify) - 比 JSON.stringify()快 2 倍。 ![](https://img.shields.io/github/stars/fastify/fast-json-stringify.svg?style=social&label=Star)
- [humps](https://github.com/domchristie/humps) - 将字符串 或 对象的Key 从下划线转化为驼峰。 ![](https://img.shields.io/github/stars/domchristie/humps.svg?style=social&label=Star)
- [jsonfile](https://github.com/jprichardson/node-jsonfile) - 轻松读写 JSON 文件。 ![](https://img.shields.io/github/stars/jprichardson/node-jsonfile.svg?style=social&label=Star)
- [bson](https://github.com/mongodb/js-bson) - Node.js 和浏览器的 BSON 解析器,BSON 是“Binary JSON”的缩写,是类 JSON 文档的二进制编码序列化。![](https://img.shields.io/github/stars/mongodb/js-bson.svg?style=social&label=Star)
- [jsonata](https://github.com/jsonata-js/jsonata) - JSONata 查询和转换语言 - http://jsonata.org ![](https://img.shields.io/github/stars/jsonata-js/jsonata.svg?style=social&label=Star)
- [json-stable-stringify](https://github.com/substack/json-stable-stringify) - 具有自定义排序功能的确定性 JSON.stringify(), 可以从字符串化结果中获取确定性哈希值。 ![](https://img.shields.io/github/stars/substack/json-stable-stringify.svg?style=social&label=Star)
- [json-diff](https://github.com/andreyvit/json-diff) - 结构化对比 JSON 文件差异。 ![](https://img.shields.io/github/stars/andreyvit/json-diff.svg?style=social&label=Star)
- [json-mask](https://github.com/nemtsov/json-mask) - 用于选择 JS 对象特定部分,而隐藏其余部分的微型语言和引擎。 ![](https://img.shields.io/github/stars/nemtsov/json-mask.svg?style=social&label=Star)
- [strip-json-comments](https://github.com/sindresorhus/strip-json-comments) - 去除 JSON 文件中的注释。让你可以在 JSON 中使用注释。 ![](https://img.shields.io/github/stars/sindresorhus/strip-json-comments.svg?style=social&label=Star)
- [json-stringify-safe](https://github.com/moll/json-stringify-safe) - 类似于 JSON.stringify,但不会引发循环引用。 ![](https://img.shields.io/github/stars/moll/json-stringify-safe.svg?style=social&label=Star)
- [dottie.js](https://github.com/mickhansen/dottie.js) - 快速安全的访问和操作嵌套对象。 ![](https://img.shields.io/github/stars/mickhansen/dottie.js.svg?style=social&label=Star)
- [load-json-file](https://github.com/sindresorhus/load-json-file) - 读取并解析 JSON 文件。 ![](https://img.shields.io/github/stars/sindresorhus/load-json-file.svg?style=social&label=Star)
- [jsonc-parser](https://github.com/microsoft/node-jsonc-parser) - 带注释的 JSON 扫描器和解析器。 ![](https://img.shields.io/github/stars/microsoft/node-jsonc-parser.svg?style=social&label=Star)
- [parse-json](https://github.com/sindresorhus/parse-json) - 解析 JSON,如果解析失败带有更有帮助的错误信息。 ![](https://img.shields.io/github/stars/sindresorhus/parse-json.svg?style=social&label=Star)
- [write-json-file](https://github.com/sindresorhus/write-json-file) - 序列化并写入 JSON 文件。 ![](https://img.shields.io/github/stars/sindresorhus/write-json-file.svg?style=social&label=Star)
- [fast-json-stable-stringify](https://github.com/epoberezkin/fast-json-stable-stringify) - 确定性 JSON.stringify() - 比 @substack 的 json-stable-stringify 更快的版本,不带 jsonify。 ![](https://img.shields.io/github/stars/epoberezkin/fast-json-stable-stringify.svg?style=social&label=Star)
- [jsonuri](https://github.com/aligay/jsonuri) - 使用”URI 样式“的方法来操作数据。 ![](https://img.shields.io/github/stars/aligay/jsonuri.svg?style=social&label=Star)
### 元编程
- [reflect-metadata](https://github.com/rbuckton/reflect-metadata) - ECMAScript 元数据反射 API 的原型。 ![](https://img.shields.io/github/stars/rbuckton/reflect-metadata.svg?style=social&label=Star)
### 图像处理
- [sharp](https://github.com/lovell/sharp) - 调整 JPEG,PNG,WebP 和 TIFF 格式图像大小的最快模块。 ![](https://img.shields.io/github/stars/lovell/sharp.svg?style=social&label=Star)
- [jimp](https://github.com/oliver-moran/jimp) - 纯 JavaScript 中的图像处理。 ![](https://img.shields.io/github/stars/oliver-moran/jimp.svg?style=social&label=Star)
- [satori](https://github.com/vercel/satori) - html 转 svg. ![](https://img.shields.io/github/stars/vercel/satori.svg?style=social&label=Star)
- [gm](https://github.com/aheckmann/gm) - GraphicsMagick 和 ImageMagick 封装。 ![](https://img.shields.io/github/stars/aheckmann/gm.svg?style=social&label=Star)
- [qrcode](https://github.com/soldair/node-qrcode) - 二维码和条形码生成器。 ![](https://img.shields.io/github/stars/soldair/node-qrcode.svg?style=social&label=Star)
- [pixelmatch](https://github.com/mapbox/pixelmatch) - 最小、最简单、最快的 JavaScript 像素级图像比较库。 ![](https://img.shields.io/github/stars/mapbox/pixelmatch.svg?style=social&label=Star)
- [Resemble.js](https://github.com/rsmbl/Resemble.js) - 图像分析和比较。 ![](https://img.shields.io/github/stars/rsmbl/Resemble.js.svg?style=social&label=Star)
- [pica](https://github.com/nodeca/pica) - 使用纯 JS 中的高质量和快速调整大小(lanczos3)。 当不允许像素化时替代 canvas drawImage()。 ![](https://img.shields.io/github/stars/nodeca/pica.svg?style=social&label=Star)
- [jsQR](https://github.com/cozmo/jsQR) - 一个纯 javascript 的二维码读取库。 该库接收原始图像,并将定位、提取和解析其中发现的任何二维码。 ![](https://img.shields.io/github/stars/cozmo/jsQR.svg?style=social&label=Star)
- [lwip](https://github.com/EyalAr/lwip) - 不需要 ImageMagick 的轻量级图像处理器。 ![](https://img.shields.io/github/stars/EyalAr/lwip.svg?style=social&label=Star)
- [gifski](https://github.com/ImageOptim/gifski) - 基于 libimagequant (pngquant) 的 GIF 编码器。 从糟糕的 GIF 格式中挤出最大可能的质量。 ![](https://img.shields.io/github/stars/ImageOptim/gifski.svg?style=social&label=Star)
- [probe-image-size](https://github.com/nodeca/probe-image-size) - 无需完全下载即可获取大多数图像格式的大小. ![](https://img.shields.io/github/stars/nodeca/probe-image-size.svg?style=social&label=Star)
- [omggif](https://github.com/deanm/omggif) - GIF 89a 编码解码器。 ![](https://img.shields.io/github/stars/deanm/omggif.svg?style=social&label=Star)
- [jpeg-js](https://github.com/jpeg-js/jpeg-js) - 使用纯 JavaScript 的 JPEG 编码和解码器。 ![](https://img.shields.io/github/stars/jpeg-js/jpeg-js.svg?style=social&label=Star)
- [pngjs](https://github.com/lukeapage/pngjs) - 简单的 PNG 编码解码器。 ![](https://img.shields.io/github/stars/lukeapage/pngjs.svg?style=social&label=Star)
- [get-pixels](https://github.com/scijs/get-pixels) - 将图像读入 ndarray。 ![](https://img.shields.io/github/stars/scijs/get-pixels.svg?style=social&label=Star)
- [gifencoder](https://github.com/eugeneware/gifencoder) - Node.js 服务器端动画 gif 生成。 ![](https://img.shields.io/github/stars/eugeneware/gifencoder.svg?style=social&label=Star)
- [ImageScript](https://github.com/matmen/ImageScript) - 零依赖的JavaScript图片操作库。 ![](https://img.shields.io/github/stars/matmen/ImageScript.svg?style=social&label=Star)
- [image-type](https://github.com/sindresorhus/image-type) - 检测 Buffer / Uint8Array 的图像类型。 ![](https://img.shields.io/github/stars/sindresorhus/image-type.svg?style=social&label=Star)
- [node-pngquant](https://github.com/papandreou/node-pngquant) - pngquant 作为可读/可写流操作 png。
- [node-bitmap](https://github.com/nowelium/node-bitmap) - 纯 JavaScript Bitmap 库。
#### SVG
- [svgo](https://github.com/svg/svgo) - 一个优化 SVG 文件的工具。 ![](https://img.shields.io/github/stars/lovell/sharp.svg?style=social&label=Star)
- [svg-captcha](https://github.com/produck/svg-captcha) - Node.js 中生成 SVG 验证码。 ![](https://img.shields.io/github/stars/produck/svg-captcha.svg?style=social&label=Star)
### 画布(Canvas)
- [node-canvas](https://github.com/Automattic/node-canvas) - Node canvas 是一个由 [Cairo](http://cairographics.org/) 支持的 NodeJS 的 Canvas 实现。 ![](https://img.shields.io/github/stars/Automattic/node-canvas.svg?style=social&label=Star)
- [skia-canvas](https://github.com/samizdatco/skia-canvas) - Canvas 环境。 ![](https://img.shields.io/github/stars/samizdatco/skia-canvas.svg?style=social&label=Star)
### 音频 / 视频处理
- [fluent-ffmpeg](https://github.com/fluent-ffmpeg/node-fluent-ffmpeg) - FFMPEG 的流畅 API (http://www.ffmpeg.org) ![](https://img.shields.io/github/stars/fluent-ffmpeg/node-fluent-ffmpeg.svg?style=social&label=Star)
- [FFCreator](https://github.com/tnfe/FFCreator) - 一个基于 node.js 的高速短视频加工库。 ![](https://img.shields.io/github/stars/tnfe/FFCreator.svg?style=social&label=Star)
- [node-ffmpeg](https://github.com/damianociarla/node-ffmpeg) - Nodejs 版 Ffmpeg 模块。 ![](https://img.shields.io/github/stars/damianociarla/node-ffmpeg.svg?style=social&label=Star)
### 字体
- [font-spider](https://github.com/aui/font-spider) - 字蛛是一个智能 WebFont 压缩工具,它能自动分析出页面使用的 WebFont 并进行按需压缩。 ![](https://img.shields.io/github/stars/aui/font-spider.svg?style=social&label=Star)
- [svg2ttf](https://github.com/fontello/svg2ttf) - 字体转换器, SVG 格式转化为 TTF。 ![](https://img.shields.io/github/stars/fontello/svg2ttf.svg?style=social&label=Star)
- [ttf2woff](https://github.com/fontello/ttf2woff) - 字体转换器, TTF 格式转化为 WOFF。 ![](https://img.shields.io/github/stars/fontello/ttf2woff.svg?style=social&label=Star)
- [svgicons2svgfont](https://github.com/nfroidure/svgicons2svgfont) - 连接 SVG 图标并输出 SVG 字体。 ![](https://img.shields.io/github/stars/nfroidure/svgicons2svgfont.svg?style=social&label=Star)
- [webfont](https://github.com/itgalaxy/webfont) - 很棒的网页字体生成器。 ![](https://img.shields.io/github/stars/itgalaxy/webfont.svg?style=social&label=Star)
- [ttf2eot](https://github.com/fontello/ttf2eot) - 字体转换器, TTF 格式转化为 EOT。 ![](https://img.shields.io/github/stars/fontello/ttf2eot.svg?style=social&label=Star)
- [wawoff2](https://github.com/fontello/wawoff2) - 使用 WebAssembly 构建 Google 的 woff2。
### 颜色
- [chroma](https://github.com/gka/chroma.js) - JavaScript 库,用于各种颜色处理。 ![](https://img.shields.io/github/stars/gka/chroma.js.svg?style=social&label=Star)
- [randomColor](https://github.com/davidmerfield/randomColor) - 一个小型脚本,用于优雅的生成颜色。 ![](https://img.shields.io/github/stars/davidmerfield/randomColor.svg?style=social&label=Star)
- [rgbaster](https://github.com/briangonzalez/rgbaster.js) - 🎨一个简单的库,用于从图像中提取主色。 ![](https://img.shields.io/github/stars/briangonzalez/rgbaster.js.svg?style=social&label=Star)
- [TinyColor](https://github.com/bgrins/TinyColor) - 快速、小型的颜色操作和转换库。 ![](https://img.shields.io/github/stars/bgrins/TinyColor.svg?style=social&label=Star)
- [onecolor](https://github.com/One-com/one-color) - 面向对象的 JavaScript 颜色解析器/计算工具包,支持 RGB,HSV,HSL,CMYK 和 alpha 通道。 颜色空间之间的转换是隐式进行的,并且所有方法都返回新对象,而不是对现有实例进行突变。 可在浏览器和 Node.js 中使用。 ![](https://img.shields.io/github/stars/One-com/one-color.svg?style=social&label=Star)
### 加解密
- [crypto-js](https://github.com/brix/crypto-js) - JavaScript 加密标准库。 ![](https://img.shields.io/github/stars/brix/crypto-js.svg?style=social&label=Star)
- [sjcl](https://github.com/bitwiseshiftleft/sjcl) - 斯坦福 Javascript 加密库。 ![](https://img.shields.io/github/stars/bitwiseshiftleft/sjcl.svg?style=social&label=Star)
- [bcrypt](https://github.com/kelektiv/node.bcrypt.js) - Node.js 版 Bcrypt。 ![](https://img.shields.io/github/stars/kelektiv/node.bcrypt.js.svg?style=social&label=Star)
- [jsencrypt](https://github.com/travist/jsencrypt) - 用于执行 OpenSSL RSA 加密、解密和密钥生成的 Javascript 库。 ![](https://img.shields.io/github/stars/travist/jsencrypt.svg?style=social&label=Star)
- [bcrypt.js](https://github.com/dcodeIO/bcrypt.js) - 经过优化 bcrypt 库,使用纯 JavaScript 且零依赖。 ![](https://img.shields.io/github/stars/dcodeIO/bcrypt.js.svg?style=social&label=Star)
- [jsrsasign](https://github.com/kjur/jsrsasign) - "jsrsasign"(RSA Sign JavaScript 库)是一个开源的免费加密库,支持纯 JavaScript 中的 RSA/RSAPSS/ECDSA/DSA 签名/验证、ASN.1、PKCS#1/5/8 私钥/公钥、X.509 证书、CRL、OCSP、CMS SignedData、TimeStamp、CAdES JSON Web 签名/令牌。 ![](https://img.shields.io/github/stars/kjur/jsrsasign.svg?style=social&label=Star)
- [node-rsa](https://github.com/rzcoder/node-rsa) - Node.js RSA 库。 ![](https://img.shields.io/github/stars/rzcoder/node-rsa.svg?style=social&label=Star)
- [aes-js](https://github.com/ricmoo/aes-js) - AES 的纯 JavaScript 实现。 ![](https://img.shields.io/github/stars/ricmoo/aes-js.svg?style=social&label=Star)
- [object-hash](https://github.com/puleos/object-hash) - 基于 javascript 对象生成对应哈希。 ![](https://img.shields.io/github/stars/puleos/object-hash.svg?style=social&label=Star)
- [node-md5](https://github.com/pvorb/node-md5) - 一个 JavaScript 函数,用于使用 MD5 对消息进行哈希处理。 ![](https://img.shields.io/github/stars/pvorb/node-md5.svg?style=social&label=Star)
- [crypto-hash](https://github.com/sindresorhus/crypto-hash) - 微型哈希模块,在 Node.js 和浏览器中使用原生 crypto API。 ![](https://img.shields.io/github/stars/sindresorhus/crypto-hash.svg?style=social&label=Star)
- [hash.js](https://github.com/indutny/hash.js) - 使用纯 JavaScript 的哈希实现。 ![](https://img.shields.io/github/stars/indutny/hash.js.svg?style=social&label=Star)
- [crc](https://github.com/alexgorbatchev/crc) - 在 Node.js 和浏览器的超快 CRC 实现。 ![](https://img.shields.io/github/stars/alexgorbatchev/crc.svg?style=social&label=Star)
- [sm-crypto](https://github.com/JuneAndGreen/sm-crypto) - sm2, sm3, sm4 的 JavaScript 实现。 ![](https://img.shields.io/github/stars/JuneAndGreen/sm-crypto.svg?style=social&label=Star)
- [sha.js](https://github.com/crypto-browserify/sha.js) - 使用纯 JavaScript 中的流式 SHA 哈希。 ![](https://img.shields.io/github/stars/crypto-browserify/sha.js.svg?style=social&label=Star)
- [hash-sum](https://github.com/bevacqua/hash-sum) - 极快的唯一哈希生成器。 ![](https://img.shields.io/github/stars/bevacqua/hash-sum.svg?style=social&label=Star)
- [cryptr](https://github.com/MauriceButler/cryptr) - 非常基础的加密和解密 Node.js 模块。 ![](https://img.shields.io/github/stars/MauriceButler/cryptr.svg?style=social&label=Star)
- [pbkdf2](https://github.com/crypto-browserify/pbkdf2) - 在 Node 中具有任何受支持的哈希算法 PBKDF2。 ![](https://img.shields.io/github/stars/crypto-browserify/pbkdf2.svg?style=social&label=Star)
- [node-object-hash](https://github.com/SkeLLLa/node-object-hash) - Node.js 对象哈希库,具有属性/数组排序以提供常量哈希。它还提供了一种返回排序对象字符串的方法,可用于不使用哈希的对象比较。 ![](https://img.shields.io/github/stars/SkeLLLa/node-object-hash.svg?style=social&label=Star)
- [bcrypt-pbkdf](https://github.com/joyent/node-bcrypt-pbkdf) - POpenBSD `bcrypt_pbkdf` Javascript 实现。
### 流
- [event-stream](https://github.com/dominictarr/event-stream) - EventStream 就像函数式编程遇到 IO。 ![](https://img.shields.io/github/stars/dominictarr/event-stream.svg?style=social&label=Star)
- [through2](https://github.com/rvagg/through2) - 基于 Node stream2 的封装进行转换以避免显式的子类化噪声。 ![](https://img.shields.io/github/stars/rvagg/through2.svg?style=social&label=Star)
- [JSONStream](https://github.com/dominictarr/JSONStream) - 流 JSON.parse 和 stringify。 ![](https://img.shields.io/github/stars/dominictarr/JSONStream.svg?style=social&label=Star)
- [mississippi](https://github.com/maxogden/mississippi) - 有用的流实用程序模块的集合,用于更好编写的使用流的代码。 ![](https://img.shields.io/github/stars/maxogden/mississippi.svg?style=social&label=Star)
- [readable-stream](https://github.com/nodejs/readable-stream) - 可读流。 ![](https://img.shields.io/github/stars/nodejs/readable-stream.svg?style=social&label=Star)
- [pump](https://github.com/mafintosh/pump) - 将流连接在一起,如果其中一个关闭,则关闭所有流。 ![](https://img.shields.io/github/stars/mafintosh/pump.svg?style=social&label=Star)
- [concat-stream](https://github.com/maxogden/concat-stream) - 可写流,它将字符串或数据连接起来并执行回调。 ![](https://img.shields.io/github/stars/maxogden/concat-stream.svg?style=social&label=Star)
- [stream-json](https://github.com/uhop/stream-json) - stream-json 是用于创建自定义标准兼容 JSON 处理器的 node.js 流组件的集合,该组件所需的内存占用最少。它可以解析远远超出可用内存的 JSON 文件。甚至单个原始数据项(键,字符串和数字)也可以分段流式传输。还包括流式 SAX 启发式的基于事件的 API。 ![](https://img.shields.io/github/stars/uhop/stream-json.svg?style=social&label=Star)
- [split](https://github.com/dominictarr/split) - 分解流并重新组装它,以便每一行都是一块。匹配器可以是字符串,也可以是正则表达式。 ![](https://img.shields.io/github/stars/dominictarr/split.svg?style=social&label=Star)
- [tar-stream](https://github.com/mafintosh/tar-stream) - tar-stream 是一个流式 tar 解析器和生成器。 ![](https://img.shields.io/github/stars/mafintosh/tar-stream.svg?style=social&label=Star)
- [node-byline](https://github.com/jahewson/node-byline) - 逐行流阅读器。 ![](https://img.shields.io/github/stars/jahewson/node-byline.svg?style=social&label=Star)
- [ndjson](https://github.com/maxogden/ndjson) - 流逐行分隔的 json 解析器 + 序列化器。 ![](https://img.shields.io/github/stars/maxogden/ndjson.svg?style=social&label=Star)
- [oppressor](https://github.com/substack/oppressor) - 流 HTTP 压缩响应协商程序。 ![](https://img.shields.io/github/stars/substack/oppressor.svg?style=social&label=Star)
- [multistream](https://github.com/feross/multistream) - 一种流,一个接一个地发出多个其他流(streams2)。 ![](https://img.shields.io/github/stars/feross/multistream.svg?style=social&label=Star)
- [get-stream](https://github.com/sindresorhus/get-stream) - 以字符串,缓冲区或数组的形式获取流。 ![](https://img.shields.io/github/stars/sindresorhus/get-stream.svg?style=social&label=Star)
- [node-stream-buffer](https://github.com/samcday/node-stream-buffer) - 使用缓存的可读和可写流。 ![](https://img.shields.io/github/stars/samcday/node-stream-buffer.svg?style=social&label=Star)
- [split2](https://github.com/mcollina/split2) - 拆分 stream3 样式。 ![](https://img.shields.io/github/stars/mcollina/split2.svg?style=social&label=Star)
- [fstream](https://github.com/npm/fstream) - 高级的 Node.js 文件操作流。 ![](https://img.shields.io/github/stars/npm/fstream.svg?style=social&label=Star)
- [pumpify](https://github.com/mafintosh/pumpify) - 使用泵和全双工,将一系列流合并为单个双工流。 ![](https://img.shields.io/github/stars/mafintosh/pumpify.svg?style=social&label=Star)
- [progress-stream](https://github.com/freeall/progress-stream) - 读取流的进度。 ![](https://img.shields.io/github/stars/freeall/progress-stream.svg?style=social&label=Star)
- [merge-stream](https://github.com/grncdr/merge-stream) - 将多个流合并为一个交错流。 ![](https://img.shields.io/github/stars/grncdr/merge-stream.svg?style=social&label=Star)
- [duplexify](https://github.com/mafintosh/duplexify) - 将可写和可读流转换为具有异步初始化和 stream1/streams2 输入支持的 stream2 双工流。
- [into-stream](https://github.com/sindresorhus/into-stream) - 将缓存/字符串/数组/对象转换为流。
- [merge2](https://github.com/teambition/merge2) - 按顺序或并行的方式将多个流合并为一个流。
- [end-of-stream](https://github.com/mafintosh/end-of-stream) - 当可读/可写/双工流已完成或失败时,调用回调。
- [stream-to-promise](https://github.com/bendrucker/stream-to-promise) - 将流(可读或可写流)转换为 Promise。
- [node-streamifier](https://github.com/gagle/node-streamifier) - 将 Buffer/String 转换为可读流。
- [stream-spec](https://github.com/dominictarr/stream-spec) - Stream 的可执行规范(让测试流变得更容易)。
- [from2](https://github.com/hughsk/from2) - ReadableStream 的便捷封装,其灵感来自 through2。
- [dmap-stream](https://github.com/dominictarr/map-stream) - 基于 Event-stream 事件流重构。
- [emit-stream](https://github.com/substack/emit-stream) - 将 event-emiiters 转换为流 和 将流转换为 event-emiiters。
- [stream-combiner](https://github.com/dominictarr/stream-combiner) - 将管道变成单个流。合并返回的流,写入第一个流并从最后一个流读取的流。
- [duplexer](https://github.com/raynos/duplexer) - 创建一个双工流。
- [promise-streams](https://github.com/spion/promise-streams) - Node.js 流的集合,可以很好地与 Promises (through, map, reduce 等)一起使用。
- [stromjs](https://github.com/lewisdiamond/stromjs) - 无依赖的流实用程序。流的 Lodash。 ![](https://img.shields.io/github/stars/lewisdiamond/stromjs.svg?style=social&label=Star)
- [cloneable-readable](https://github.com/mcollina/cloneable-readable) - 安全地克隆可读流。
- [binary-split](https://github.com/maxogden/binary-split) - 快速的换行符(或任何分隔符)分隔符流。
- [stream-combiner2](https://github.com/substack/stream-combiner2) - stream3 的 stream-combiner。
- [through2-concurrent](https://github.com/almost/through2-concurrent) - 简单的 Node.JS 流(streams2)转换,可并行执行转换功能(可设置的最大并发数)。
- [destroy](https://github.com/stream-utils/destroy) - 如果可能,销毁流。
- [peek-stream](https://github.com/mafintosh/peek-stream) - 转换流,可让您在决定如何解析前先窥视第一行。
- [resumer](https://github.com/substack/resumer) - 通过流开始暂停,并在下一个 tick 恢复。
- [stream-each](https://github.com/mafintosh/stream-each) - 迭代流中的所有数据。
- [flush-write-stream](https://github.com/mafintosh/flush-write-stream) - 一种写入流构造函数,支持流完成之前调用的 flush 函数。
- [multi-write-stream](https://github.com/mafintosh/multi-write-stream) - 创建一个可写流,其可写入多个其他可写流。
- [first-chunk-stream](https://github.com/sindresorhus/first-chunk-stream) - 缓冲并转换流的前 n 个字节。
- [multi-read-stream](https://github.com/mafintosh/multi-read-stream) - 可读流,它同时从多个可读流中读取。
- [node-stream-reduce](https://github.com/parshap/node-stream-reduce) - 将流数据减少为单个值。
- [stream-shift](https://github.com/mafintosh/stream-shift) - 返回流可读队列中的下一个缓冲区/对象。
- [stream-assert](https://github.com/floatdrop/stream-assert) - 流的断言库。
- [stream-from-promise](https://github.com/schnittstabil/stream-from-promise) - 根据 Promise 创建流。
- [exec-stream](https://github.com/suarasaur/exec-stream) - 将流传入到子进程。
- [stream-callback](https://github.com/kikobeats/stream-callback) – 将流转换为一个回调函数。
### 检测/判断
- [is.js](https://github.com/arasatasaygin/is.js) - 微型检查库。 ![](https://img.shields.io/github/stars/arasatasaygin/is.js.svg?style=social&label=Star)
- [is-promise](https://github.com/then/is-promise) - 测试对象是否看起来像一个 Promises-a+ promise。 ![](https://img.shields.io/github/stars/then/is-promise.svg?style=social&label=Star)
- [is-ci](https://github.com/watson/is-ci) - 判断当前环境是否为 CI 服务器。 ![](https://img.shields.io/github/stars/watson/is-ci.svg?style=social&label=Star)
- [is](https://github.com/enricomarino/is) - JavaScript 类型测试库。 ![](https://img.shields.io/github/stars/enricomarino/is.svg?style=social&label=Star)
- [is-type-of](https://github.com/node-modules/is-type-of) - Node.js 完整类型判断。 ![](https://img.shields.io/github/stars/node-modules/is-type-of.svg?style=social&label=Star)
- [is-stream](https://github.com/sindresorhus/is-stream) - 判断对象是否为流对象。 ![](https://img.shields.io/github/stars/sindresorhus/is-stream.svg?style=social&label=Star)
- [is-utf8](https://github.com/wayfind/is-utf8) - 判断 Buffer 对象是否 UTF8 编码。 ![](https://img.shields.io/github/stars/wayfind/is-utf8.svg?style=social&label=Star)
- [core-util-is](https://github.com/isaacs/core-util-is) - Node.js 核心工具 util.is* 函数。
- [is-ip](https://github.com/sindresorhus/is-ip) - 检查字符串是否为 IP 地址。
- [isstream](https://github.com/rvagg/isstream) - 判断对象是否为流对象。
- [is-class](https://github.com/miguelmota/is-class) - 判断函数是否为 ES6 类(class) 类型。
- [isexe](https://github.com/isaacs/isexe) - 检查文件是否可执行文件。
- [is-type](https://github.com/juliangruber/is-type) - Node.js 核心类型判断。
- [is-core-module](https://github.com/inspect-js/is-core-module) - 判断一个说明符 是否为 Node.js 核心模块。
- [is-md5](https://github.com/imanhodjaev/is-md5) - JavaScript 实用程序,用于检查字符串是否为 md5 加密。
### 数据校验
- [zod](https://github.com/colinhacks/zod) - TypeScript 优先的 Schema 校验 ![](https://img.shields.io/github/stars/colinhacks/zod.svg?style=social&label=Star)
- [validator.js](https://github.com/validatorjs/validator.js) - 字符串校验库。 ![](https://img.shields.io/github/stars/validatorjs/validator.js.svg?style=social&label=Star)
- [joi](https://github.com/hapijs/joi) - 基于 JavaScript 对象的对象模式描述语言和验证器。 ![](https://img.shields.io/github/stars/hapijs/joi.svg?style=social&label=Star)
- [yup](https://github.com/jquense/yup) - 受 joi 启发的极简的对象 Schema 校验。 ![](https://img.shields.io/github/stars/jquense/yup.svg?style=social&label=Star)
- [async-validator](https://github.com/yiminghe/async-validator) - 异步校验。 ![](https://img.shields.io/github/stars/yiminghe/async-validator.svg?style=social&label=Star)
- [class-validator](https://github.com/typestack/class-validator) - 基于装饰器属性校验的类校验器。 ![](https://img.shields.io/github/stars/typestack/class-validator.svg?style=social&label=Star)
- [ajv](https://github.com/epoberezkin/ajv) - 最快的 JSON Schema 验证器。支持 JSON Schema draft-04/06/07/2019-09/2020-12 and JSON 类型定义(RFC8927)。 ![](https://img.shields.io/github/stars/epoberezkin/ajv.svg?style=social&label=Star)
- [Superstruct](https://github.com/ianstormtaylor/superstruct) - 用简单和可组合的方式在 JavaScript 和 TypeScript 中校验数据。 ![](https://img.shields.io/github/stars/ianstormtaylor/superstruct.svg?style=social&label=Star)
- [v8n](https://github.com/imbrn/v8n) - 流畅的 JavaScript 校验库。 ![](https://img.shields.io/github/stars/imbrn/v8n.svg?style=social&label=Star)
- [forgJs](https://github.com/oussamahamdaoui/forgJs) - 轻量的 JavaScript 对象校验器。 ![](https://img.shields.io/github/stars/oussamahamdaoui/forgJs.svg?style=social&label=Star)
- [jsonschema](https://github.com/tdegrunt/jsonschema) - JSON Schema 校验器. ![](https://img.shields.io/github/stars/tdegrunt/jsonschema.svg?style=social&label=Star)
- [validatorjs](https://github.com/mikeerickson/validatorjs) - 受 Laravel 的校验器启发,在浏览器和 Node.JS 上的数据校验库。 ![](https://img.shields.io/github/stars/mikeerickson/validatorjs.svg?style=social&label=Star)
- [is-my-json-valid](https://github.com/mafintosh/is-my-json-valid) - 极快的 JSON Schema 校验工具。 ![](https://img.shields.io/github/stars/mafintosh/is-my-json-valid.svg?style=social&label=Star)
- [parameter](https://github.com/node-modules/parameter) - 参数校验工具。 ![](https://img.shields.io/github/stars/node-modules/parameter.svg?style=social&label=Star)
- [schema-inspector](https://github.com/Atinux/schema-inspector) - 用于净化和验证 JS 对象的强大工具。 ![](https://img.shields.io/github/stars/Atinux/schema-inspector.svg?style=social&label=Star)
- [property-validator](https://github.com/nettofarah/property-validator) - 用于 JavaScript、Node 和 Express 的易用的属性校验工具。 ![](https://img.shields.io/github/stars/nettofarah/property-validator.svg?style=social&label=Star)
### 函数式编程
- [lodash](https://github.com/lodash/lodash) - 可提供一致性、自定义、性能和其他功能的实用程序库,比 Underscore.js 更好更快。 ![](https://img.shields.io/github/stars/lodash/lodash.svg?style=social&label=Star)
- [immutable](https://github.com/facebook/immutable-js) - 不可变的数据集合。 ![](https://img.shields.io/github/stars/facebook/immutable-js.svg?style=social&label=Star)
- [RxJS](https://github.com/reactivex/rxjs) - 用于转换、组合和查询各种数据的函数式响应式库。 ![](https://img.shields.io/github/stars/reactivex/rxjs.svg?style=social&label=Star)
- [Ramda](https://github.com/ramda/ramda) - 实用程序库着重于通过自动计算和相反的参数顺序实现的灵活功能组合,避免数据变化。 ![](https://img.shields.io/github/stars/ramda/ramda.svg?style=social&label=Star)
- [immer](https://github.com/immerjs/immer) - 函数式响应式编程。 ![](https://img.shields.io/github/stars/immerjs/immer.svg?style=social&label=Star)
- [Bacon.js](https://github.com/baconjs/bacon.js) - 函数式响应式编程。 ![](https://img.shields.io/github/stars/baconjs/bacon.js.svg?style=social&label=Star)
- [Lazy.js](https://github.com/dtao/lazy.js) - 类似于 lodash/underline 的工具库,但具有惰性计算,在许多情况下可以转换为卓越的性能. ![](https://img.shields.io/github/stars/dtao/lazy.js.svg?style=social&label=Star)
- [Folktale](https://github.com/origamitower/folktale) - 一套用于 JavaScript 中的通用函数编程的库,它允许您编写优雅的、模块化的应用程序,并且 bug 更少及更强的重用性。 ![](https://img.shields.io/github/stars/origamitower/folktale.svg?style=social&label=Star)
- [Kefir.js](https://github.com/kefirjs/kefir) - 响应式库,专注于高性能和低内存使用。 ![](https://img.shields.io/github/stars/kefirjs/kefir.svg?style=social&label=Star)
- [Mout](https://github.com/mout/mout) - 该库与其他现有解决方案之间最大的区别是,您可以选择只加载需要的模块/函数,而不需要额外开销。. ![](https://img.shields.io/github/stars/mout/mout.svg?style=social&label=Star)
### 流程控制
- Promises
- [Bluebird](https://github.com/petkaantonov/bluebird) - Bluebird 是一个功能齐全的 Promise 库,专注于创新功能和性能。 ![](https://img.shields.io/github/stars/petkaantonov/bluebird.svg?style=social&label=Star)
- [co](https://github.com/tj/co) - 拥有流程控制优势的 Nodejs 终极生成器(支持 thunks、promises 等)。 ![](https://img.shields.io/github/stars/tj/co.svg?style=social&label=Star)
- [pify](https://github.com/sindresorhus/pify) - 将回调式的函数 Promisify 化。 ![](https://img.shields.io/github/stars/sindresorhus/pify.svg?style=social&label=Star)
- [p-map](https://github.com/sindresorhus/p-map) - 并发的 Map 执行 Promise 。 ![](https://img.shields.io/github/stars/sindresorhus/p-map.svg?style=social&label=Star)
- [delay](https://github.com/sindresorhus/delay) - 将 Promise 延迟指定的时间。 ![](https://img.shields.io/github/stars/sindresorhus/delay.svg?style=social&label=Star)
- [thenify](https://github.com/thenables/thenify) - 将一个基于回调的函数 Promise 化。 ![](https://img.shields.io/github/stars/thenables/thenify.svg?style=social&label=Star)
- [thenify-all](https://github.com/thenables/thenify-all) - 将一个对象中所有选中的方法全部 Promise 化。
- [promise-memoize](https://github.com/nodeca/promise-memoize) - 记忆化 Promise 返回函数,带过期和 prefetch 预取功能。
- [valvelet](https://github.com/lpinca/valvelet) - 限制 Promise 返回函数的执行率(限流)。
- 可观察对象
- [RxJS](https://github.com/ReactiveX/RxJS) - 响应式编程。 ![](https://img.shields.io/github/stars/ReactiveX/RxJS.svg?style=social&label=Star)
- [zen-observable](https://github.com/zenparsing/zen-observable) - 可观察对象的实现。 ![](https://img.shields.io/github/stars/zenparsing/zen-observable.svg?style=social&label=Star)
- [observable-to-promise](https://github.com/sindresorhus/observable-to-promise) - 将可观察对象转化为 Promise.
- 回调函数
- [async](https://github.com/caolan/async) - 提供直接、强大的函数们来处理异步问题。 ![](https://img.shields.io/github/stars/caolan/async.svg?style=social&label=Star)
- 管道
- [js-csp](https://github.com/ubolonton/js-csp) - 用于 JavaScript 的顺序通信进程 CSP(如 ClojureScript core.async 或 Go)。 ![](https://img.shields.io/github/stars/ubolonton/js-csp.svg?style=social&label=Star)
- 其他
- [mz](https://github.com/normalize/mz) - 将 Node.s Api 现代化转化为当前 ECMAScript 标准(将 child_process、crypto、dns、fs、readline、zlib 等 Promise 化)。 ![](https://img.shields.io/github/stars/normalize/mz.svg?style=social&label=Star)
- [mz-modules](https://github.com/node-modules/mz-modules) - 与 `mz` 类似,但在世界中封装模块而不是核心 API。![](https://img.shields.io/github/stars/node-modules/mz-modules.svg?style=social&label=Star)
### 控制反转/依赖注入
- [InversifyJS](https://github.com/inversify/InversifyJS) - 功能强大且轻便的控制反转容器。 ![](https://img.shields.io/github/stars/inversify/InversifyJS.svg?style=social&label=Star)
- [injection-js](https://github.com/mgechev/injection-js) - 5.1K 中的 JavaScript 和 TypeScript 的依赖注入库。它提取自 Angular 的 ReflectiveInjector,这意味着它设计合理,功能完整、快速、可靠且经过良好测试。 ![](https://img.shields.io/github/stars/mgechev/injection-js.svg?style=social&label=Star)
- [power-di](https://github.com/zhang740/power-di) - 轻量的依赖注入库。 ![](https://img.shields.io/github/stars/zhang740/power-di.svg?style=social&label=Star)
- [@opensumi/di](https://github.com/opensumi/di) - 依赖注入工具。
### Shell
- [zx](https://github.com/google/zx) - 用于编写更好脚本的工具。 ![](https://img.shields.io/github/stars/google/zx.svg?style=social&label=Star)
- [shelljs](https://github.com/shelljs/shelljs) - 跨平台 Unix shell 命令。 ![](https://img.shields.io/github/stars/shelljs/shelljs.svg?style=social&label=Star)
- [execa](https://github.com/sindresorhus/execa) - 跨平台实现子进程执行 `child_process.{execFile,exec}`。 ![](https://img.shields.io/github/stars/sindresorhus/execa.svg?style=social&label=Star)
- [node-windows](https://github.com/coreybutler/node-windows) - Node.js 上支持的 Windows 脚本。如(daemons, eventlog, UAC 等)。 ![](https://img.shields.io/github/stars/coreybutler/node-windows.svg?style=social&label=Star)
- [shx](https://github.com/shelljs/shx) - Node 的可移植 Shell 命令。 ![](https://img.shields.io/github/stars/shelljs/shx.svg?style=social&label=Star)
- [clipboardy](https://github.com/sindresorhus/clipboardy) - 跨平台的复制/粘贴。 ![](https://img.shields.io/github/stars/sindresorhus/clipboardy.svg?style=social&label=Star)
- [cross-spawn](https://github.com/IndigoUnited/node-cross-spawn) - 跨平台实现 `child_process.spawn()`。 ![](https://img.shields.io/github/stars/IndigoUnited/node-cross-spawn.svg?style=social&label=Star)
- [parallelshell](https://github.com/darkguy2008/parallelshell) - 并行运行多个 shell 命令。 ![](https://img.shields.io/github/stars/darkguy2008/parallelshell.svg?style=social&label=Star)
- [clipboard-cli](https://github.com/sindresorhus/clipboard-cli) - 跨平台的复制/粘贴。 ![](https://img.shields.io/github/stars/sindresorhus/clipboard-cli.svg?style=social&label=Star)
- [gulp-execa](https://github.com/ehmicky/gulp-execa) - 在 Gulp 中跨平台命令执行。
- [runscript](https://github.com/node-modules/runscript) - 更容易的运行脚本命令。
- [cross-spawn-promise](https://github.com/zentrick/cross-spawn-promise) - Promise 化的 cross-spawn。
- [shell-exec](https://github.com/tiaanduplessis/shell-exec) - 通过系统 Shell 执行命令。
### 环境
- [dotenv](https://github.com/motdotla/dotenv) - 从 .env 文件 加载用于 nodejs 项目的环境变量。 ![](https://img.shields.io/github/stars/motdotla/dotenv.svg?style=social&label=Star)
- [cross-env](https://github.com/kentcdodds/cross-env) - 跨平台设置环境变量。 ![](https://img.shields.io/github/stars/kentcdodds/cross-env.svg?style=social&label=Star)
- [envinfo](https://github.com/tabrindle/envinfo) - 生成关于您的开发环境的报告,用于调试和问题报告。 ![](https://img.shields.io/github/stars/tabrindle/envinfo.svg?style=social&label=Star)
- [which](https://github.com/npm/node-which) - 跨平台实现的 Unix `which`. ![](https://img.shields.io/github/stars/npm/node-which.svg?style=social&label=Star)
- [user-home](https://github.com/sindresorhus/user-home) - 跨平台获取用户 home 目录路径。 ![](https://img.shields.io/github/stars/sindresorhus/user-home.svg?style=social&label=Star)
- [username](https://github.com/sindresorhus/username) - 获取当前用户名。 ![](https://img.shields.io/github/stars/sindresorhus/username.svg?style=social&label=Star)
- [osenv](https://github.com/npm/osenv) - 跨平台环境变量。 ![](https://img.shields.io/github/stars/npm/osenv.svg?style=social&label=Star)
- [is-elevated](https://github.com/sindresorhus/is-elevated) - 检查进程是否以提升的权限运行。
### 事件
- [eventemitter3](https://github.com/primus/eventemitter3) - 高性能 EventEmitter. ![](https://img.shields.io/github/stars/primus/eventemitter3.svg?style=social&label=Star)
- [tiny-emitter](https://github.com/scottcorgan/tiny-emitter) - 小型 EventEmitter 库 (小于 1k) event emitter library. ![](https://img.shields.io/github/stars/scottcorgan/tiny-emitter.svg?style=social&label=Star)
- [ee-first](https://github.com/jonathanong/ee-first) - 获取一组 EventEmitter 和 Event 对中的第一个事件,然后对其进行清理。
### 命令行工具
- 框架/解决方案
- [Commander.js](https://github.com/tj/commander.js) - Node.JS 命令行界面完整解决方案。 ![](https://img.shields.io/github/stars/tj/commander.js.svg?style=social&label=Star)
- [yargs](https://github.com/yargs/yargs) - 通用可交互命令行工具集合。 ![](https://img.shields.io/github/stars/yargs/yargs.svg?style=social&label=Star)
- [oclif](https://github.com/oclif/oclif) - 基于 Heroku 开源 Node.js CLI 框架。 ![](https://img.shields.io/github/stars/oclif/oclif.svg?style=social&label=Star)
- [meow](https://github.com/sindresorhus/meow) - CLI 应用助手。 ![](https://img.shields.io/github/stars/sindresorhus/meow.svg?style=social&label=Star)
- [cac](https://github.com/cacjs/cac) - 用于构建命令行应用的强大框架。 ![](https://img.shields.io/github/stars/cacjs/cac.svg?style=social&label=Star)
- [clipanion](https://github.com/arcanis/clipanion) - 无运行时依赖的类型安全的 CLI 库。 ![](https://img.shields.io/github/stars/arcanis/clipanion.svg?style=social&label=Star)
- [Cliffy](https://github.com/drew-y/cliffy) - 可交互命令行框架。 ![](https://img.shields.io/github/stars/drew-y/cliffy.svg?style=social&label=Star)
- [common-bin](https://github.com/node-modules/common-bin) - 基于 yargs 的命令行工具抽象,提供更方便的使用,支持 async/generator。 ![](https://img.shields.io/github/stars/node-modules/common-bin.svg?style=social&label=Star)
- 命令行参数解析
- [minimist](https://github.com/substack/minimist) - 命令行参数解析引擎。 ![](https://img.shields.io/github/stars/substack/minimist.svg?style=social&label=Star)
- [arg](https://github.com/vercel/arg) - 简单的参数解析。 ![](https://img.shields.io/github/stars/vercel/arg.svg?style=social&label=Star)
- [nopt](https://github.com/npm/nopt) - Node/npm 参数解析。 ![](https://img.shields.io/github/stars/npm/nopt.svg?style=social&label=Star)
- [argparse](https://github.com/nodeca/argparse) - Node.js CLI 参数解析。 ![](https://img.shields.io/github/stars/nodeca/argparse.svg?style=social&label=Star)
- [yargs-parser](https://github.com/yargs/yargs-parser) - yargs 在使用,优雅参数解析库. ![](https://img.shields.io/github/stars/yargs/yargs-parser.svg?style=social&label=Star)
- Prompt 提示
- [Inquirer.js](https://github.com/SBoudrias/Inquirer.js) - 通用可交互命令行工具集合。 ![](https://img.shields.io/github/stars/SBoudrias/Inquirer.js.svg?style=social&label=Star)
- [prompts](https://github.com/terkelg/prompts) - 轻量、美观、用户友好的交互式命令行提示。 ![](https://img.shields.io/github/stars/terkelg/prompts.svg?style=social&label=Star)
- [Enquirer](https://github.com/enquirer/enquirer) - 用户友好、直观且易于创建的时尚 CLI 提示。 ![](https://img.shields.io/github/stars/enquirer/enquirer.svg?style=social&label=Star)
- [node-promptly](https://github.com/moxystudio/node-promptly) - 简单命令行提示实用程序。 ![](https://img.shields.io/github/stars/moxystudio/node-promptly.svg?style=social&label=Star)
- 进度条
- [progress](https://github.com/visionmedia/node-progress) - Node.js 的灵活 ascii 进度条。 ![](https://img.shields.io/github/stars/visionmedia/node-progress.svg?style=social&label=Star)
- [progress-estimator](https://github.com/bvaughn/progress-estimator) - 打印进度条并估计完成 Promise 所需的时间。 ![](https://img.shields.io/github/stars/bvaughn/progress-estimator.svg?style=social&label=Star)
- [cli-progress](https://github.com/AndiDittrich/Node.CLI-Progress) - 在命令行/终端应用中轻松的使用进度条。 ![](https://img.shields.io/github/stars/AndiDittrich/Node.CLI-Progress.svg?style=social&label=Star)
- 样式
- [chalk](https://github.com/chalk/chalk) - 命令行字符串样式美化工具。 ![](https://img.shields.io/github/stars/chalk/chalk.svg?style=social&label=Star)
- [ora](https://github.com/sindresorhus/ora) - 优雅的命令行 loading 效果。 ![](https://img.shields.io/github/stars/sindresorhus/ora.svg?style=social&label=Star)
- [colors.js](https://github.com/Marak/colors.js) - 获取 Node.js 控制台的颜色。 ![](https://img.shields.io/github/stars/Marak/colors.js.svg?style=social&label=Star)
- [listr](https://github.com/SamVerschueren/listr) - 命令行任务列表。 ![](https://img.shields.io/github/stars/SamVerschueren/listr.svg?style=social&label=Star)
- [figlet.js](https://github.com/patorjk/figlet.js) - 用 JavaScript 编写的 FIG,旨在完全实现 FIGfont 规范。 ![](https://img.shields.io/github/stars/patorjk/figlet.js.svg?style=social&label=Star)
- [kleur](https://github.com/lukeed/kleur) - 使用 ANSI 颜色格式化命令行文本的最快的 Node.js 库。 ![](https://img.shields.io/github/stars/lukeed/kleur.svg?style=social&label=Star)
- [colorette](https://github.com/jorgebucaran/colorette) - 在终端中轻松设置文本的颜色和样式。 ![](https://img.shields.io/github/stars/jorgebucaran/colorette.svg?style=social&label=Star)
- [qrcode-terminal](https://github.com/gtanner/qrcode-terminal) - 命令行中显示二维码。 ![](https://img.shields.io/github/stars/gtanner/qrcode-terminal.svg?style=social&label=Star)
- [boxen](https://github.com/sindresorhus/boxen) - 控制台中创建盒子。 ![](https://img.shields.io/github/stars/sindresorhus/boxen.svg?style=social&label=Star)
- [terminal-image](https://github.com/sindresorhus/terminal-image) - 在终端中展示图片。 ![](https://img.shields.io/github/stars/sindresorhus/terminal-image.svg?style=social&label=Star)
- [log-symbols](https://github.com/sindresorhus/log-symbols) - 为不同日志级别添加色彩图标。 ![](https://img.shields.io/github/stars/sindresorhus/log-symbols.svg?style=social&label=Star)
- [gradient-string](https://github.com/bokub/gradient-string) - 终端输出中漂亮的颜色渐变。 ![](https://img.shields.io/github/stars/bokub/gradient-string.svg?style=social&label=Star)
- [figures](https://github.com/sindresorhus/figures) - Windows 兜底的 Unicode 符号。 ![](https://img.shields.io/github/stars/sindresorhus/figures.svg?style=social&label=Star)
- [terminal-link](https://github.com/sindresorhus/terminal-link) - 在终端中创建可点击的链接。 ![](https://img.shields.io/github/stars/sindresorhus/terminal-link.svg?style=social&label=Star)
- [snazzy](https://github.com/standard/snazzy) - 将 JavaScript 标准样式格式化为时尚(即时髦)输出。 ![](https://img.shields.io/github/stars/standard/snazzy.svg?style=social&label=Star)
- [columnify](https://github.com/timoxley/columnify) - 创建适合控制台输出的基于文本的列。 支持单元格。 ![](https://img.shields.io/github/stars/timoxley/columnify.svg?style=social&label=Star)
- [cli-table3](https://github.com/cli-table/cli-table3) - 命令行的漂亮 unicode 表。 ![](https://img.shields.io/github/stars/cli-table/cli-table3.svg?style=social&label=Star)
- [easy-table](https://github.com/eldargab/easy-table) - 漂亮的文本表格。 ![](https://img.shields.io/github/stars/eldargab/easy-table.svg?style=social&label=Star)
- [cli-highlight](https://github.com/felixfbecker/cli-highlight) - 终端的语法高亮显示💻✨ ![](https://img.shields.io/github/stars/felixfbecker/cli-highlight.svg?style=social&label=Star)
- [treeify](https://github.com/notatestuser/treeify) - 将 javascript 对象漂亮地打印为树。 ![](https://img.shields.io/github/stars/notatestuser/treeify.svg?style=social&label=Star)
- [kolorist](https://github.com/marvinhagemeister/kolorist) - 使用输入和输出色彩化的小工具。 ![](https://img.shields.io/github/stars/marvinhagemeister/kolorist.svg?style=social&label=Star)
- [console-png](https://github.com/aantthony/console-png) - 在命令行输出中打印 PNG 图片。
- 编辑器
- [slap](https://github.com/slap-editor/slap) - 基于命令行终端的类 Sublime 文本编辑器。 ![](https://img.shields.io/github/stars/slap-editor/slap.svg?style=social&label=Star)
- 其他
- [commitizen](https://github.com/commitizen/cz-cli) - Commitizen 命令行实用程序。 ![](https://img.shields.io/github/stars/commitizen/cz-cli.svg?style=social&label=Star)
- [plop](https://github.com/plopjs/plop) - 微型代码模板生成工具,可让整个团队轻松创建具有统一的文件。 ![](https://img.shields.io/github/stars/plopjs/plop.svg?style=social&label=Star)
- [update-notifier](https://github.com/yeoman/update-notifier) - 为你的 CLI 应用提供的更新提示。 ![](https://img.shields.io/github/stars/yeoman/update-notifier.svg?style=social&label=Star)
- [console-stamp](https://github.com/starak/node-console-stamp) - 为 NodeJS console 方法添加布丁,使其按模式添加时间戳信息。 ![](https://img.shields.io/github/stars/starak/node-console-stamp.svg?style=social&label=Star)
- [didyoumean](https://github.com/dcporter/didyoumean.js) - 简单、优化的 JS 库 和 Node.JS 模块,用于将简短的人为的输入匹配到一个可能性列表中。 ![](https://img.shields.io/github/stars/dcporter/didyoumean.js.svg?style=social&label=Star)
- [console-clear](https://github.com/lukeed/console-clear) - 跨平台清空控制台。
### Node.js 管理工具
- [nvm](https://github.com/nvm-sh/nvm) - Node.js 版本管理工具。 ![](https://img.shields.io/github/stars/nvm-sh/nvm.svg?style=social&label=Star)
- [nvm for Windows](https://github.com/coreybutler/nvm-windows) - Node.js 版本管理工具 Windows 版。 ![](https://img.shields.io/github/stars/coreybutler/nvm-windows.svg?style=social&label=Star)
- [n](https://github.com/tj/n) - Node.js 版本管理工具。 ![](https://img.shields.io/github/stars/tj/n.svg?style=social&label=Star)
- [fnm](https://github.com/Schniz/fnm) - 🚀 快速、轻量的 Node.js 版本管理工具,由 Rust 构建。 ![](https://img.shields.io/github/stars/Schniz/fnm.svg?style=social&label=Star)
- [nodenv](https://github.com/nodenv/nodenv) - 版本管理工具(类似 Ruby 的 rbenv ),它支持自动切换。 ![](https://img.shields.io/github/stars/nodenv/nodenv.svg?style=social&label=Star)
- [nave](https://github.com/isaacs/nave) - Node.js 虚拟环境。 ![](https://img.shields.io/github/stars/isaacs/nave.svg?style=social&label=Star)
- [nvs](https://github.com/jasongin/nvs) - Node Version Switcher - 一个跨平台的工具,用于在 Node.js 的版本之间切换。 ![](https://img.shields.io/github/stars/jasongin/nvs.svg?style=social&label=Star)
- [nodeenv](https://github.com/ekalinin/nodeenv) - 与 Python 的 virtualenv 兼容的 Node.js 虚拟环境。 ![](https://img.shields.io/github/stars/ekalinin/nodeenv.svg?style=social&label=Star)
### NPM
- NPM 管理工具
- [pnpm](https://github.com/pnpm/pnpm) - 快速、节省磁盘空间高效的包管理器。 ![](https://img.shields.io/github/stars/pnpm/pnpm.svg?style=social&label=Star)
- [npm](https://github.com/npm/cli) - JavaScript 包管理工具。 ![](https://img.shields.io/github/stars/npm/cli.svg?style=social&label=Star)
- [yarn](https://github.com/yarnpkg/berry) - 现代包管理工具,拆分成多个不同的包。 ![](https://img.shields.io/github/stars/yarnpkg/berry.svg?style=social&label=Star)
- [yalc](https://github.com/wclr/yalc) - 更适用的前端 link 工具。 ![](https://img.shields.io/github/stars/wclr/yalc.svg?style=social&label=Star)
- [nrm](https://github.com/Pana/nrm) - 快速切换 npm 注册服务商,如 npm、cnpm、nj、taobao。 ![](https://img.shields.io/github/stars/Pana/nrm.svg?style=social&label=Star)
- [cnpm](https://github.com/cnpm/cnpm) - NPM 中国区镜像客户端。 ![](https://img.shields.io/github/stars/cnpm/cnpm.svg?style=social&label=Star)
- package.json
- [read-pkg-up](https://github.com/sindresorhus/read-pkg-up) - 读取最近的 package.json 文件。 ![](https://img.shields.io/github/stars/sindresorhus/read-pkg-up.svg?style=social&label=Star)
- [node-pkginfo](https://github.com/indexzero/node-pkginfo) - 从 package.json 读取属性的简单方法。 ![](https://img.shields.io/github/stars/indexzero/node-pkginfo.svg?style=social&label=Star)
- [pkg-dir](https://github.com/sindresorhus/pkg-dir) - 查找 npm 包的根目录。 ![](https://img.shields.io/github/stars/sindresorhus/pkg-dir.svg?style=social&label=Star)
- [read-pkg](https://github.com/sindresorhus/read-pkg) - 读取 package.json 文件。 ![](https://img.shields.io/github/stars/sindresorhus/read-pkg.svg?style=social&label=Star)
- [write-pkg](https://github.com/sindresorhus/write-pkg) - 写入 package.json 文件。 ![](https://img.shields.io/github/stars/sindresorhus/write-pkg.svg?style=social&label=Star)
- [read-package-json-fast](https://github.com/npm/read-package-json-fast) - 类似 read-package-json, 但更快。 ![](https://img.shields.io/github/stars/npm/read-package-json-fast.svg?style=social&label=Star)
- 语义化版本
- [semver](https://github.com/npm/node-semver) - NPM 使用的 JavaScript 语义化版本号解析器。 ![](https://img.shields.io/github/stars/npm/node-semver.svg?style=social&label=Star)
- [compare-versions](https://github.com/omichelsen/compare-versions) - 比较 semver 版本字符串,找出哪个更大,哪个相等,哪个更小。 ![](https://img.shields.io/github/stars/omichelsen/compare-versions.svg?style=social&label=Star)
- [semver-diff](https://github.com/sindresorhus/semver-diff) - 获取两个 semver 版本号的区别类型:0.0.1 0.0.2 → patch. ![](https://img.shields.io/github/stars/sindresorhus/semver-diff.svg?style=social&label=Star)
- NPM 私有部署
- [verdaccio](https://github.com/verdaccio/verdaccio) - 私有轻量级的 NPM 镜像。 ![](https://img.shields.io/github/stars/verdaccio/verdaccio.svg?style=social&label=Star)
- [cnpmjs.org](https://github.com/cnpm/cnpmjs.org) - 企业级私有 NPM 镜像和 Web 界面。 ![](https://img.shields.io/github/stars/cnpm/cnpmjs.org.svg?style=social&label=Star)
- 工具
- [npm-check-updates](https://github.com/raineorshine/npm-check-updates) - 查找当前 package.json 依赖允许的更新的版本。 ![](https://img.shields.io/github/stars/raineorshine/npm-check-updates.svg?style=social&label=Star)
- [concurrently](https://github.com/open-cli-tools/concurrently) - 并行执行命令,类似 `npm run watch-js & npm run watch-less`但更优。 ![](https://img.shields.io/github/stars/open-cli-tools/concurrently.svg?style=social&label=Star)
- [npm-run-all](https://github.com/mysticatea/npm-run-all) - 命令行工具,同时运行多个 npm 脚本(并行或串行)。 ![](https://img.shields.io/github/stars/mysticatea/npm-run-all.svg?style=social&label=Star)
- [depcheck](https://github.com/depcheck/depcheck) - 检查你的 NPM 模块未使用的依赖。 ![](https://img.shields.io/github/stars/depcheck/depcheck.svg?style=social&label=Star)
- [npminstall](https://github.com/cnpm/npminstall) - 使 `npm install` 更快更容易。 ![](https://img.shields.io/github/stars/cnpm/npminstall.svg?style=social&label=Star)
- [validate-npm-package-name](https://github.com/npm/validate-npm-package-name) - 校验给定的字符串 是否为 可接受的 npm 包名称。 ![](https://img.shields.io/github/stars/npm/validate-npm-package-name.svg?style=social&label=Star)
- [npm-home](https://github.com/sindresorhus/npm-home) - 打开 npm 包页面。 ![](https://img.shields.io/github/stars/sindresorhus/npm-home.svg?style=social&label=Star)
- [npm-name](https://github.com/sindresorhus/npm-name) - 在 npm 上检查软件包名称的可用性。 ![](https://img.shields.io/github/stars/sindresorhus/npm-name.svg?style=social&label=Star)
- [pacote](https://github.com/npm/pacote) - 从 npm 注册商下载 tar 压缩文件,并获取包的资源信息。 ![](https://img.shields.io/github/stars/npm/pacote.svg?style=social&label=Star)
- [npm-package-arg](https://github.com/npm/npm-package-arg) - 根据包名解析信息。 ![](https://img.shields.io/github/stars/npm/npm-package-arg.svg?style=social&label=Star)
- [npm-registry-fetch](https://github.com/npm/npm-registry-fetch) - 类型 fetch()函数,但用于 npm 仓库。 ![](https://img.shields.io/github/stars/npm/npm-registry-fetch.svg?style=social&label=Star)
- [npm-updater](https://github.com/node-modules/npm-updater) - 检查 npm 包的更新。 ![](https://img.shields.io/github/stars/node-modules/npm-updater.svg?style=social&label=Star)
### Monorepo
*(你也许喜欢 [awesome-monorepo](https://github.com/korfuri/awesome-monorepo))*
- [lerna](https://github.com/lerna/lerna) - 用于管理具有多个包的 JavaScript 项目的工具。 ![](https://img.shields.io/github/stars/lerna/lerna.svg?style=social&label=Star)
- [rush](https://github.com/microsoft/rushstack) - 可伸缩的 monorepo 构建管理工具。 ![](https://img.shields.io/github/stars/microsoft/rushstack.svg?style=social&label=Star)
- [manypkg](https://github.com/Thinkmill/manypkg) - ☔️ 为您的 monorepo 提供保护伞 ![](https://img.shields.io/github/stars/Thinkmill/manypkg.svg?style=social&label=Star)
### 文件系统
- 通用
- [fs-extra](https://github.com/jprichardson/node-fs-extra) - 为 `fs` 模块提供额外方法。 ![](https://img.shields.io/github/stars/jprichardson/node-fs-extra.svg?style=social&label=Star)
- [graceful-fs](https://github.com/isaacs/node-graceful-fs) - graceful-fs 可以替代 fs 模块,并做了各种改进。 ![](https://img.shields.io/github/stars/isaacs/node-graceful-fs.svg?style=social&label=Star)
- [filesize.js](https://github.com/avoidwork/filesize.js) - 生成人类可读的文件大小字符串。 ![](https://img.shields.io/github/stars/avoidwork/filesize.js.svg?style=social&label=Star)
- [memfs](https://github.com/streamich/memfs) - Node.js API 内存文件系统。 ![](https://img.shields.io/github/stars/streamich/memfs.svg?style=social&label=Star)
- [fs-jetpack](https://github.com/szwacz/fs-jetpack) - 完全重新设计的文件系统 API,方便日常使用。 ![](https://img.shields.io/github/stars/szwacz/fs-jetpack.svg?style=social&label=Star)
- [make-dir](https://github.com/sindresorhus/make-dir) - 递归创建文件夹,类似 `mkdir -p`。 ![](https://img.shields.io/github/stars/sindresorhus/make-dir.svg?style=social&label=Star)
- [filenamify](https://github.com/sindresorhus/filenamify) - 将字符串转换为有效的文件名。 ![](https://img.shields.io/github/stars/sindresorhus/filenamify.svg?style=social&label=Star)
- [move-file](https://github.com/sindresorhus/move-file) - 移动文件,甚至可以跨设备工作。 ![](https://img.shields.io/github/stars/sindresorhus/move-file.svg?style=social&label=Star)
- [proper-lockfile](https://github.com/IndigoUnited/node-proper-lockfile) - 进程间和机器间文件锁实用工具。 ![](https://img.shields.io/github/stars/IndigoUnited/node-proper-lockfile.svg?style=social&label=Star)
- [istextorbinary](https://github.com/bevry/istextorbinary) - 检查文件是文本文件还是二进制文件。 ![](https://img.shields.io/github/stars/bevry/istextorbinary.svg?style=social&label=Star)
- [mkdirp](https://github.com/isaacs/node-mkdirp) - 递归创建文件夹,类似 `mkdir -p`。 ![](https://img.shields.io/github/stars/isaacs/node-mkdirp.svg?style=social&label=Star)
- [dir-compare](https://github.com/gliviu/dir-compare) - Node JS 文件夹对比。 ![](https://img.shields.io/github/stars/gliviu/dir-compare.svg?style=social&label=Star)
- [folder-hash](https://github.com/marc136/node-folder-hash) - 为 文件夹或文件 上创建哈希检验码。 ![](https://img.shields.io/github/stars/marc136/node-folder-hash.svg?style=social&label=Star)
- [lnfs](https://github.com/kevva/lnfs) - 强制创建符号链接。类似`ln -fs`. ![](https://img.shields.io/github/stars/kevva/lnfs.svg?style=social&label=Star)
- [vinyl-fs](https://github.com/gulpjs/vinyl-fs) - 文件系统的 `Vinyl` 适配器. ![](https://img.shields.io/github/stars/gulpjs/vinyl-fs.svg?style=social&label=Star)
- 复制
- [ncp](https://github.com/AvianFlu/ncp) - 使用 Node.js 进行异步递归文件复制。 ![](https://img.shields.io/github/stars/AvianFlu/ncp.svg?style=social&label=Star)
- [cpy](https://github.com/sindresorhus/cpy) - 文件拷贝。 ![](https://img.shields.io/github/stars/sindresorhus/cpy.svg?style=social&label=Star)
- [copyfiles](https://github.com/calvinmetcalf/copyfiles) - 在命令行中复制文件。 ![](https://img.shields.io/github/stars/calvinmetcalf/copyfiles.svg?style=social&label=Star)
- 删除
- [rimraf](https://github.com/isaacs/rimraf) - 递归删除文件,类似 `rm -rf`。 ![](https://img.shields.io/github/stars/isaacs/rimraf.svg?style=social&label=Star)
- [del](https://github.com/sindresorhus/del) - 删除文件/文件夹。 ![](https://img.shields.io/github/stars/sindresorhus/del.svg?style=social&label=Star)
- 临时
- [temp](https://github.com/bruce/node-temp) - Node.js 临时文件、文件夹、流。 ![](https://img.shields.io/github/stars/bruce/node-temp.svg?style=social&label=Star)
- [tempy](https://github.com/sindresorhus/tempy) - 获取随机的临时文件或目录路径。 ![](https://img.shields.io/github/stars/sindresorhus/tempy.svg?style=social&label=Star)
- [temp-dir](https://github.com/sindresorhus/temp-dir) - 获取系统临时文件夹的真实路径。 ![](https://img.shields.io/github/stars/sindresorhus/temp-dir.svg?style=social&label=Star)
- 监控
- [watchman](https://github.com/facebook/watchman) - 监视文件和记录,或在更改时触发操作。 ![](https://img.shields.io/github/stars/facebook/watchman.svg?style=social&label=Star)
- [chokidar](https://github.com/paulmillr/chokidar) - 最小且高效的跨平台 Watch 库。 ![](https://img.shields.io/github/stars/paulmillr/chokidar.svg?style=social&label=Star)
- [watchpack](https://github.com/webpack/watchpack) - Watch 文件和文件夹。 ![](https://img.shields.io/github/stars/webpack/watchpack.svg?style=social&label=Star)
- 查找
- [glob](https://github.com/isaacs/node-glob) - Node.js 版 glob 功能。 ![](https://img.shields.io/github/stars/isaacs/node-glob.svg?style=social&label=Star)
- [globby](https://github.com/sindresorhus/globby) - 基于 fast-glob,但添加了很多有用的特性。 ![](https://img.shields.io/github/stars/sindresorhus/globby.svg?style=social&label=Star)
- [fast-glob](https://github.com/mrmlnc/fast-glob) - 非常快速且高效的 Node.js glob 库。 ![](https://img.shields.io/github/stars/mrmlnc/fast-glob.svg?style=social&label=Star)
- [find-up](https://github.com/sindresorhus/find-up) - 通过上级父目录查找文件或目录。 ![](https://img.shields.io/github/stars/sindresorhus/find-up.svg?style=social&label=Star)
- [filehound](https://github.com/nspragg/filehound) - 灵活流畅的文件系统搜索接口。 ![](https://img.shields.io/github/stars/nspragg/filehound.svg?style=social&label=Star)
- [node-sync-glob](https://github.com/AndyOGo/node-sync-glob) - 通过 glob 模式在本地同步文件和文件夹,包括 watch 选项。 ![](https://img.shields.io/github/stars/AndyOGo/node-sync-glob.svg?style=social&label=Star)
### 解析工具
- Markdown
- [marked](https://github.com/markedjs/marked) - Markdown 解析器和编译器,专为提高速度而设计。 ![](https://img.shields.io/github/stars/markedjs/marked.svg?style=social&label=Star)
- [markdown-it](https://github.com/markdown-it/markdown-it) - 支持 100%通用 Markdown 标签解析的扩展&语法插件。 ![](https://img.shields.io/github/stars/markdown-it/markdown-it.svg?style=social&label=Star)
- [showdown](https://github.com/showdownjs/showdown) - Markdown 到 HTML 的双向转换器。 ![](https://img.shields.io/github/stars/showdownjs/showdown.svg?style=social&label=Star)
- [remark](https://github.com/wooorm/remark) - Markdown 处理工具。 ![](https://img.shields.io/github/stars/wooorm/remark.svg?style=social&label=Star)
- [turndown](https://github.com/mixmark-io/turndown) - 用 JavaScript 编写的 HTML 到 Markdown 转换器。 ![](https://img.shields.io/github/stars/mixmark-io/turndown.svg?style=social&label=Star)
- [remove-markdown](https://github.com/stiang/remove-markdown) - 从文本中删除 Markdown 内容。 ![](https://img.shields.io/github/stars/stiang/remove-markdown.svg?style=social&label=Star)
- CSV
- [PapaParse](https://github.com/mholt/PapaParse) - 快速而强大的 CSV(分隔文本)解析器,可以优雅地处理大文件和格式错误的输入。 ![](https://img.shields.io/github/stars/mholt/PapaParse.svg?style=social&label=Star)
- [node-csv](https://github.com/adaltas/node-csv) - 具有简单 api 的全功能 CSV 解析器,并针对大型数据集进行了测试。 ![](https://img.shields.io/github/stars/adaltas/node-csv.svg?style=social&label=Star)
- [csv-parser](https://github.com/mafintosh/csv-parser) - 旨在比其他任何人都快的流式 CSV 解析器。 ![](https://img.shields.io/github/stars/mafintosh/csv-parser.svg?style=social&label=Star)
- [neat-csv](https://github.com/sindresorhus/neat-csv) - 快速的 CSV 解析器。 ![](https://img.shields.io/github/stars/sindresorhus/neat-csv.svg?style=social&label=Star)
- YAML
- [js-yaml](https://github.com/nodeca/js-yaml) - 快速的 YAML 解析器。 ![](https://img.shields.io/github/stars/nodeca/js-yaml.svg?style=social&label=Star)
- [yaml](https://github.com/eemeli/yaml) - YAML 的 JavaScript 解析器和字符串化。 ![](https://img.shields.io/github/stars/eemeli/yaml.svg?style=social&label=Star)
- XML
- [xml2js](https://github.com/Leonidas-from-XIV/node-xml2js) - 将 XML 转换为 JavaScript 对象的转换器。 ![](https://img.shields.io/github/stars/Leonidas-from-XIV/node-xml2js.svg?style=social&label=Star)
- [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) - 验证&解析 XML。 ![](https://img.shields.io/github/stars/NaturalIntelligence/fast-xml-parser.svg?style=social&label=Star)
- [xmlbuilder](https://github.com/oozcitak/xmlbuilder-js) - XML 构建器。 ![](https://img.shields.io/github/stars/oozcitak/xmlbuilder-js.svg?style=social&label=Star)
- [js2xmlparser](https://github.com/michaelkourlas/node-js2xmlparser) - 用于将 JavaScript 对象解析为 XML 的流行 Node.js 模块。 ![](https://img.shields.io/github/stars/michaelkourlas/node-js2xmlparser.svg?style=social&label=Star)
- HTML
- [htmlparser2](https://github.com/fb55/htmlparser2) - 宽容的 HTML 和 XML 解析器。 ![](https://img.shields.io/github/stars/fb55/htmlparser2.svg?style=social&label=Star)
- [parse5](https://github.com/inikulin/parse5) - 用于 Node.js 的 HTML 解析/序列化工具集。 WHATWG HTML 标准(又名 HTML5)兼容。 ![](https://img.shields.io/github/stars/inikulin/parse5.svg?style=social&label=Star)
- [sanitize-html](https://github.com/apostrophecms/sanitize-html) - 清理用户提交的 HTML,在每个元素的基础上保留列入白名单的元素和属性。 建立在 htmlparser2 上,以提高速度和容忍度。 ![](https://img.shields.io/github/stars/apostrophecms/sanitize-html.svg?style=social&label=Star)
- [himalaya](https://github.com/andrejewski/himalaya) - 将 HTML 转化为 JSON 的解析器。 ![](https://img.shields.io/github/stars/andrejewski/himalaya.svg?style=social&label=Star)
- CSS
- [PostCSS](https://github.com/postcss/postcss) - CSS 解析工具。 ![](https://img.shields.io/github/stars/postcss/postcss.svg?style=social&label=Star)
- [less](https://github.com/less/less.js) - Less 动态样式表语言。 ![](https://img.shields.io/github/stars/less/less.js.svg?style=social&label=Star)
- SQL
- [pgsql-ast-parser](https://github.com/oguimbal/pgsql-ast-parser) - 简单的 Postgres SQL 解析器。 ![](https://img.shields.io/github/stars/oguimbal/pgsql-ast-parser.svg?style=social&label=Star)
- [dt-sql-parser](https://github.com/DTStack/dt-sql-parser) - 大数据的 SQL 解析器,用 antlr4 构建。 ![](https://img.shields.io/github/stars/DTStack/dt-sql-parser.svg?style=social&label=Star)
- Plist
- [node-bplist-parser](https://github.com/joeferner/node-bplist-parser) - 二进制 plist 文件解析。 ![](https://img.shields.io/github/stars/joeferner/node-bplist-parser.svg?style=social&label=Star)
- ini
- [ini](https://github.com/npm/ini) - ini 文件解析和序列化。 ![](https://img.shields.io/github/stars/npm/ini.svg?style=social&label=Star)
- MathJax
- [mathjax-node](https://github.com/mathjax/MathJax-node) - MathJax 解析。 ![](https://img.shields.io/github/stars/mathjax/MathJax-node.svg?style=social&label=Star)
- 其他
- [readability](https://github.com/mozilla/readability) - 可读内容提取库,用于 Firefox Reader View 的独立提取版本。 ![](https://img.shields.io/github/stars/mozilla/readability.svg?style=social&label=Star)
### Git
- [husky](https://github.com/typicode/husky) - 现代化的本地 Git 钩子使操作更加轻松! ![](https://img.shields.io/github/stars/typicode/husky.svg?style=social&label=Star)
- [isomorphic-git](https://github.com/isomorphic-git/isomorphic-git) - 用于 Node.js 和浏览器的 纯 JavaScript git 实现! ![](https://img.shields.io/github/stars/isomorphic-git/isomorphic-git.svg?style=social&label=Star)
- [nodegit](https://github.com/nodegit/nodegit) - [libgit2](https://libgit2.org/) 的 Node.js 绑定版本。 ![](https://img.shields.io/github/stars/nodegit/nodegit.svg?style=social&label=Star)
- [js-git](https://github.com/creationix/js-git) - Git 的 JavaScript 实现。 ![](https://img.shields.io/github/stars/creationix/js-git.svg?style=social&label=Star)
- [degit](https://github.com/Rich-Harris/degit) - Degit 制作 git 存储库的副本。用于构建简单的项目脚手架。 ![](https://img.shields.io/github/stars/Rich-Harris/degit.svg?style=social&label=Star)
- [simple-git](https://github.com/steveukx/git-js) - 一个轻量级的接口,用于在任何 node.js 应用程序中运行 git 命令。 ![](https://img.shields.io/github/stars/steveukx/git-js.svg?style=social&label=Star)
- [gitgraph-node](https://github.com/nicoespeon/gitgraph.js/tree/master/packages/gitgraph-node) - 在 Terminal 绘制 git 流程图(支持浏览器、React)。 ![](https://img.shields.io/github/stars/nicoespeon/gitgraph.js.svg?style=social&label=Star)
- [pre-commit](https://github.com/observing/pre-commit) - 自动在您的 git 储存库中安装 git pre-commit 脚本,该脚本在 pre-commit 上运行您的`npm test`。 ![](https://img.shields.io/github/stars/observing/pre-commit.svg?style=social&label=Star)
- [yorkie](https://github.com/yyx990803/yorkie) - husky 的 Fork,让 Git 钩子变得简单(在 vue3 中使用) ![](https://img.shields.io/github/stars/yyx990803/yorkie.svg?style=social&label=Star)
- [git-url-parse](https://github.com/IonicaBizau/git-url-parse) - 高级别 git 解析。 ![](https://img.shields.io/github/stars/IonicaBizau/git-url-parse.svg?style=social&label=Star)
- [git-promise](https://github.com/piuccio/git-promise) - 简单的封装,可运行任何 git 命令,并使用 promise 处理其输出。 ![](https://img.shields.io/github/stars/piuccio/git-promise.svg?style=social&label=Star)
- [gittar](https://github.com/lukeed/gittar) - 下载/提取 git 仓库 (GitHub, GitLab, BitBucket),跨平台和优先离线。 ![](https://img.shields.io/github/stars/lukeed/gittar.svg?style=social&label=Star)
- [parse-git-config](https://github.com/jonschlinkert/parse-git-config) - 将 `.git/config` 解析为 JavaScript 对象。 同步或异步。 ![](https://img.shields.io/github/stars/jonschlinkert/parse-git-config.svg?style=social&label=Star)
- [remote-git-tags](https://github.com/sindresorhus/remote-git-tags) - 从远程仓库中获取标签。 ![](https://img.shields.io/github/stars/sindresorhus/remote-git-tags.svg?style=social&label=Star)
- [giturl](https://github.com/repo-utils/giturl) - 将 Git 链接转化成 Web 链接。 ![](https://img.shields.io/github/stars/repo-utils/giturl.svg?style=social&label=Star)
- [download-git-repo](https://gitlab.com/flippidippi/download-git-repo) - 下载和提取 Git 仓库 (支持 GitHub, GitLab, Bitbucket)。
### 日志
- [winston](https://github.com/winstonjs/winston) - 多传输异步日志记录库。 ![](https://img.shields.io/github/stars/winstonjs/winston.svg?style=social&label=Star)
- [pino](https://github.com/pinojs/pino) - 受 Bunyan 启发的超快日志记录库。 ![](https://img.shields.io/github/stars/pinojs/pino.svg?style=social&label=Star)
- [signale](https://github.com/klauscfhq/signale) - 高度可配置的日志工具。 ![](https://img.shields.io/github/stars/klauscfhq/signale.svg?style=social&label=Star)
- [bunyan](https://github.com/trentm/node-bunyan) - 一个用于 Node.js 服务的简单快速的 JSON 日志模块。 ![](https://img.shields.io/github/stars/trentm/node-bunyan.svg?style=social&label=Star)
- [log4js-node](https://github.com/log4js-node/log4js-node) - 不同于 Java log4j 的日志记录库。 ![](https://img.shields.io/github/stars/log4js-node/log4js-node.svg?style=social&label=Star)
- [consola](https://github.com/nuxt/consola) - 优雅的 Node.js 和浏览器日志记录库。 ![](https://img.shields.io/github/stars/nuxt/consola.svg?style=social&label=Star)
- [loglevel](https://github.com/pimterry/loglevel) - 小巧的轻量级日志记录,添加可靠的日志级别方法来封装任何可用的 console.log 方法。 ![](https://img.shields.io/github/stars/pimterry/loglevel.svg?style=social&label=Star)
- [roarr](https://github.com/gajus/roarr) - JSON 日志。 ![](https://img.shields.io/github/stars/gajus/roarr.svg?style=social&label=Star)
- [storyboard](https://github.com/guigrpa/storyboard) - 一个 Chrome 浏览器插件,用于查看日志。 ![](https://img.shields.io/github/stars/guigrpa/storyboard.svg?style=social&label=Star)
- [cabin](https://github.com/cabinjs/cabin) - 提供日志服务和 NPM 包。 ![](https://img.shields.io/github/stars/cabinjs/cabin.svg?style=social&label=Star)
- [caterpillar](https://github.com/bevry/caterpillar) - Caterpillar 是 Deno、Node.js 和 Web 浏览器的终极日志系统。日志级别实现了 RFC 标准。日志条目可以过滤并通过管道传输到各种流,包括多色输出到终端、浏览器的控制台和调试文件。你甚至可以编写自己的转换。 ![](https://img.shields.io/github/stars/bevry/caterpillar.svg?style=social&label=Star)
- [fancy-log](https://github.com/gulpjs/fancy-log) - 带上时间前缀的日志记录库。 ![](https://img.shields.io/github/stars/gulpjs/fancy-log.svg?style=social&label=Star)
- [captains-log](https://github.com/balderdashy/captains-log) - 通过简单的配置就可以使用的轻量日志记录库。 ![](https://img.shields.io/github/stars/balderdashy/captains-log.svg?style=social&label=Star)
### 进程管理
- [PM2](https://github.com/Unitech/pm2) - 高级进程管理工具。 ![](https://img.shields.io/github/stars/Unitech/pm2.svg?style=social&label=Star)
- [nodemon](https://github.com/remy/nodemon) - 监视应用程序中的更改并自动重新启动服务器。 ![](https://img.shields.io/github/stars/remy/nodemon.svg?style=social&label=Star)
- [forever](https://github.com/foreversd/forever) - 简单的 CLI 工具,用于确认提供的代码持续运行。 ![](https://img.shields.io/github/stars/foreversd/forever.svg?style=social&label=Star)
- [supervisor](https://github.com/petruisfan/node-supervisor) - 当脚本崩溃时重新启动脚本,或者当`*.js'文件更改时重新启动脚本。 ![](https://img.shields.io/github/stars/petruisfan/node-supervisor.svg?style=social&label=Star)
- [node-windows](https://github.com/coreybutler/node-windows) - 将脚本作为本机 Windows 服务运行,并登录到事件查看器。 ![](https://img.shields.io/github/stars/coreybutler/node-windows.svg?style=social&label=Star)
- [node-mac](https://github.com/coreybutler/node-mac) - 将脚本作为本机 Mac 守护进程运行,并登录到控制台应用程序。 ![](https://img.shields.io/github/stars/coreybutler/node-mac.svg?style=social&label=Star)
- [node-linux](https://github.com/coreybutler/node-linux) - 将脚本作为本机系统服务运行,并登录到 syslog。 ![](https://img.shields.io/github/stars/coreybutler/node-linux.svg?style=social&label=Star)
- [current-processes](https://github.com/branneman/current-processes) - 可获取当前正在运行的进程快照(操作系统无关)。 ![](https://img.shields.io/github/stars/branneman/current-processes.svg?style=social&label=Star)
### 代码校验 和 格式化工具
- [prettier](https://github.com/prettier/prettier) - ❤"有主见"的多语言代码格式化程序。 ![](https://img.shields.io/github/stars/prettier/prettier.svg?style=social&label=Star)
- [standard](https://github.com/standard/standard) - JavaScript 代码规范,自带 linter & 代码自动修正。 ![](https://img.shields.io/github/stars/standard/standard.svg?style=social&label=Star)
- [eslint](https://github.com/eslint/eslint) - 插件化并且可配置的 JavaScript 语法规则和代码风格的检查工具。 ![](https://img.shields.io/github/stars/eslint/eslint.svg?style=social&label=Star)
- [stylelint](https://github.com/stylelint/stylelint) - 功能强大现代风格检查工具,帮助你避免错误和强制约定样式风格。 ![](https://img.shields.io/github/stars/stylelint/stylelint.svg?style=social&label=Star)
- [lint-staged](https://github.com/okonet/lint-staged) - 在 Git 暂存文件上运行风格检查工具。 ![](https://img.shields.io/github/stars/okonet/lint-staged.svg?style=social&label=Star)
- [commitlint](https://github.com/conventional-changelog/commitlint) - Git 提交信息风格检查工具。 ![](https://img.shields.io/github/stars/conventional-changelog/commitlint.svg?style=social&label=Star)
- [js-beautify](https://github.com/beautify-web/js-beautify) - Javascript 美化工具。 ![](https://img.shields.io/github/stars/beautify-web/js-beautify.svg?style=social&label=Star)
- [xo](https://github.com/xojs/xo) - 带出色默认配置的 JavaScript/TypeScript 代码校验 (基于 ESLint 封装) ![](https://img.shields.io/github/stars/xojs/xo.svg?style=social&label=Star)
- [markdownlint](https://github.com/DavidAnson/markdownlint) - Markdown/CommonMark 风格检查工具。 ![](https://img.shields.io/github/stars/DavidAnson/markdownlint.svg?style=social&label=Star)
- [textlint](https://github.com/textlint/textlint) - Text 和 Markdown 校验和格式化。 ![](https://img.shields.io/github/stars/textlint/textlint.svg?style=social&label=Star)
- [pretty-quick](https://github.com/azz/pretty-quick) - 快速美化。 ![](https://img.shields.io/github/stars/azz/pretty-quick.svg?style=social&label=Star)
- [dtslint](https://github.com/Microsoft/dtslint) - 基于 TSLint 构建的实用程序,用于对 TypeScript 声明 (.d.ts) 文件进行 linting。 ![](https://img.shields.io/github/stars/Microsoft/dtslint.svg?style=social&label=Star)
- [lint-md](https://github.com/lint-md/lint-md) - 用于检查中文 markdown 编写格式规范的核心模块,基于 AST 开发。 ![](https://img.shields.io/github/stars/lint-md/lint-md.svg?style=social&label=Star)
- [cz-customizable](https://github.com/leoforfree/cz-customizable) - 用于 (cz-cli)[https://github.com/commitizen/](或独立 util)的可定制 commitizen 适配器。 ![](https://img.shields.io/github/stars/leoforfree/cz-customizable.svg?style=social&label=Star)
### 配置工具
- [node-config](https://github.com/lorenwest/node-config) - Node.js 应用程序配置。 ![](https://img.shields.io/github/stars/lorenwest/node-config.svg?style=social&label=Star)
- [nconf](https://github.com/indexzero/nconf) - 可通过文件、环境变量、命令行参数和对象 合并的分层 Node.js 配置。 ![](https://img.shields.io/github/stars/indexzero/nconf.svg?style=social&label=Star)
- [convict](https://github.com/mozilla/node-convict/tree/master/packages/convict) - Convict 扩展了配置 node.js 应用程序的标准模式,提供了更健壮且易于访问。 ![](https://img.shields.io/github/stars/mozilla/node-convict.svg?style=social&label=Star)
- [rc](https://github.com/dominictarr/rc) - 懒人的配置加载器。 ![](https://img.shields.io/github/stars/dominictarr/rc.svg?style=social&label=Star)
### 构建工具
- [webpack](https://github.com/webpack/webpack) - 打包浏览器的模块和资产。 ![](https://img.shields.io/github/stars/webpack/webpack.svg?style=social&label=Star)
- [parcel](https://github.com/parcel-bundler/parcel) - 快速,零配置的 Web 应用构建工具。 ![](https://img.shields.io/github/stars/parcel-bundler/parcel.svg?style=social&label=Star)
- [gulp](https://github.com/gulpjs/gulp) - 流式快速构建系统,支持代码而不是配置。 ![](https://img.shields.io/github/stars/gulpjs/gulp.svg?style=social&label=Star)
- [esbuild](https://github.com/evanw/esbuild) - 极快的 JavaScript 打包压缩工具。 ![](https://img.shields.io/github/stars/evanw/esbuild.svg?style=social&label=Star)
- [rollup](https://github.com/rollup/rollup) - 新一代的 ES2015 打包构建工具。 ![](https://img.shields.io/github/stars/rollup/rollup.svg?style=social&label=Star)
- [pkg](https://github.com/zeit/pkg) - 将 Node.js 项目打包成可执行文件。 ![](https://img.shields.io/github/stars/zeit/pkg.svg?style=social&label=Star)
- [Grunt](https://github.com/gruntjs/grunt) - JavaScript 任务执行器。 ![](https://img.shields.io/github/stars/gruntjs/grunt.svg?style=social&label=Star)
- [Brunch](https://github.com/brunch/brunch) - 前端 web 应用程序构建工具,具有简单的声明性配置、快速的增量编译和自定的工作流。 ![](https://img.shields.io/github/stars/brunch/brunch.svg?style=social&label=Star)
- [FuseBox](https://github.com/fuse-box/fuse-box) - 快速构建系统,结合了 webpack,JSPM 和 SystemJS 的强大功能,并具有一流的 TypeScript 支持。 ![](https://img.shields.io/github/stars/fuse-box/fuse-box.svg?style=social&label=Star)
- [Broccoli](https://github.com/broccolijs/broccoli) - 快速、可靠的资产管道,支持固定时间重建和紧凑的构建定义。 ![](https://img.shields.io/github/stars/broccolijs/broccoli.svg?style=social&label=Star)
- ESM
- [Vite](https://github.com/vitejs/vite) - 新一代前端构建工具。 ![](https://img.shields.io/github/stars/vitejs/vite.svg?style=social&label=Star)
- [snowpack](https://github.com/snowpackjs/snowpack) - 由 ESM 支持的前端构建工具。 即时,轻量级,无捆绑开发。 ![](https://img.shields.io/github/stars/snowpackjs/snowpack.svg?style=social&label=Star)
### 模板引擎
- [Pug](https://github.com/pugjs/pug) - 受 Haml 启发的高性能模板引擎。 ![](https://img.shields.io/github/stars/pugjs/pug.svg?style=social&label=Star)
- [handlebars.js](https://github.com/wycats/handlebars.js) - Mustache 模板的超集,添加了强大的功能,如 helper 和更高级的 block。 ![](https://img.shields.io/github/stars/wycats/handlebars.js.svg?style=social&label=Star)
- [mustache.js](https://github.com/janl/mustache.js) - 轻量的 JavaScript 模板引擎{{八字须}}。 ![](https://img.shields.io/github/stars/janl/mustache.js.svg?style=social&label=Star)
- [marko](https://github.com/marko-js/marko) - 基于 HTML 的模板引擎,编译成 CommonJS 模块,支持流、异步渲染和自定义标签。 ![](https://img.shields.io/github/stars/marko-js/marko.svg?style=social&label=Star)
- [art-template](https://github.com/aui/art-template) - 高性能 JavaScript 模板引擎。 ![](https://img.shields.io/github/stars/aui/art-template.svg?style=social&label=Star)
- [nunjucks](https://github.com/mozilla/nunjucks) - 具有继承,异步控制等功能的模板引擎(受 Jinja2 启发)。 ![](https://img.shields.io/github/stars/mozilla/nunjucks.svg?style=social&label=Star)
- [EJS](https://github.com/mde/ejs) - 超级简单的模板语言。 ![](https://img.shields.io/github/stars/mde/ejs.svg?style=social&label=Star)
- [hogan.js](https://github.com/twitter/hogan.js) - {{八字须}} 样式的模板语言。 ![](https://img.shields.io/github/stars/twitter/hogan.js.svg?style=social&label=Star)
- [doT](https://github.com/olado/doT) - 最快简洁的 JavaScript 模板引擎。 ![](https://img.shields.io/github/stars/olado/doT.svg?style=social&label=Star)
- [dustjs](https://github.com/linkedin/dustjs) - 用于浏览器和服务器的异步 Javascript 模板。 ![](https://img.shields.io/github/stars/linkedin/dustjs.svg?style=social&label=Star)
- [jsrender](https://github.com/BorisMoore/jsrender) - 轻巧,功能强大且高度可扩展的模板引擎。 ![](https://img.shields.io/github/stars/BorisMoore/jsrender.svg?style=social&label=Star)
- [Twig.js](https://github.com/twigjs/twig.js) - Twig 模板语言的 JavaScript 实现。 ![](https://img.shields.io/github/stars/twigjs/twig.js.svg?style=social&label=Star)
- [hbs](https://github.com/pillarjs/hbs) - Handlebars 的 Express 版本封装。 ![](https://img.shields.io/github/stars/pillarjs/hbs.svg?style=social&label=Star)
- [Juicer](https://github.com/PaulGuo/Juicer) - 轻量级 JavaScript 模板引擎。 ![](https://img.shields.io/github/stars/PaulGuo/Juicer.svg?style=social&label=Star)
- [tempo](https://github.com/twigkit/tempo) - Tempo 是一个简单,直观的 JavaScript 渲染引擎,使您能够以纯 HTML 格式制作数据模板。 ![](https://img.shields.io/github/stars/twigkit/tempo.svg?style=social&label=Star)
- [xtemplate](https://github.com/xtemplate/xtemplate) - 用于浏览器和 Node.js 上的高速,可扩展模板引擎库。支持异步控制,继承,包含,逻辑表达式,自定义函数等。 ![](https://img.shields.io/github/stars/xtemplate/xtemplate.svg?style=social&label=Star)
### Web 框架
- [Express](https://github.com/expressjs/express) - Web 应用程序框架,为构建单页和多页以及混合 Web 应用程序提供了一组强大的功能。 ![](https://img.shields.io/github/stars/expressjs/express.svg?style=social&label=Star)
- [Next.js](https://github.com/zeit/next.js) - React 服务端渲染框架。 ![](https://img.shields.io/github/stars/zeit/next.js.svg?style=social&label=Star)
- [blitz](https://github.com/blitz-js/blitz) - 全栈 React 框架——建立在 Next.js 之上。 ![](https://img.shields.io/github/stars/blitz-js/blitz.svg?style=social&label=Star)
- [Meteor](https://github.com/meteor/meteor) - 超简单,无处不在的数据库,在线数据,纯 Javascript Web 框架。 *(你也许会喜欢 [awesome-meteor](https://github.com/Urigo/awesome-meteor))* ![](https://img.shields.io/github/stars/meteor/meteor.svg?style=social&label=Star)
- [Nuxt.js](https://github.com/nuxt/nuxt.js) - Vue 服务端渲染框架。 ![](https://img.shields.io/github/stars/nuxt/nuxt.js.svg?style=social&label=Star)
- [Nest](https://github.com/nestjs/nest) -受 Angular 启发的框架,用于构建高效且可扩展的服务器端应用程序。*(你也许会喜欢 [awesome-nestjs](https://github.com/juliandavidmr/awesome-nestjs))* ![](https://img.shields.io/github/stars/nestjs/nest.svg?style=social&label=Star)
- [Koa](https://github.com/koajs/koa) - 由 Express 背后的团队设计的框架,旨在为 Web 应用程序和 API 提供更小,更富表现力和更强大的基础。 ![](https://img.shields.io/github/stars/koajs/koa.svg?style=social&label=Star)
- *(你也许喜欢 [awesome-koa](https://github.com/huaize2020/awesome-koa))*
- [sails](https://github.com/balderdashy/sails) - Node.js 实时 MVC 框架。 ![](https://img.shields.io/github/stars/balderdashy/sails.svg?style=social&label=Star)
- [Fastify](https://github.com/fastify/fastify) - 快速和低开销的 Web 框架。 ![](https://img.shields.io/github/stars/fastify/fastify.svg?style=social&label=Star)
- [Hapi](https://github.com/hapijs/hapi) - 用于创建应用和服务的框架。 ![](https://img.shields.io/github/stars/hapijs/hapi.svg?style=social&label=Star)
- [Egg](https://github.com/eggjs/egg) - 为企业级框架和应用而生。 ![](https://img.shields.io/github/stars/eggjs/egg.svg?style=social&label=Star)
- *(你也许喜欢 [awesome-egg](https://github.com/huaize2020/awesome-egg))*
- [Feathers](https://github.com/feathersjs/feathers) - 基于 Express 精神构建的微服务框架。 ![](https://img.shields.io/github/stars/feathersjs/feathers.svg?style=social&label=Star)
- [AdonisJs](https://github.com/adonisjs/core) - 基于依赖注入和 IoC 容器的坚实基础构建的 Node.js 的真正 MVC 框架。 ![](https://img.shields.io/github/stars/adonisjs/core.svg?style=social&label=Star)
- [LoopBack](https://github.com/strongloop/loopback-next) - 用于创建 REST API 并轻松连接到后端数据源的强大框架。 v4 - ![](https://img.shields.io/github/stars/strongloop/loopback-next.svg?style=social&label=Star) v3 - ![](https://img.shields.io/github/stars/strongloop/loopback.svg?style=social&label=Star)
- [Restify](https://github.com/restify/node-restify) - 使你能够构建正确的 REST Web 服务。 ![](https://img.shields.io/github/stars/restify/node-restify.svg?style=social&label=Star)
- [ThinkJS](https://github.com/thinkjs/thinkjs) - 支持 ES2015 +的框架,WebSockets,REST API。 ![](https://img.shields.io/github/stars/thinkjs/thinkjs.svg?style=social&label=Star)
- [total.js](https://github.com/totaljs/framework) - 使用纯 JavaScript 编写的 Node.js 框架,类似 PHP's Laravel 或 Python's Django 或 ASP.NET MVC ![](https://img.shields.io/github/stars/totaljs/framework.svg?style=social&label=Star)
- [Micro](https://github.com/zeit/micro) - 具有异步方法的简约微服务框架。 ![](https://img.shields.io/github/stars/zeit/micro.svg?style=social&label=Star)
- [Midway](https://github.com/midwayjs/midway) - 一个面向未来的云端一体 Node.js 框架。 ![](https://img.shields.io/github/stars/midwayjs/midway.svg?style=social&label=Star)
- [Moleculer](https://github.com/moleculerjs/moleculer) - 快速而强大的微服务框架。 ![](https://img.shields.io/github/stars/moleculerjs/moleculer.svg?style=social&label=Star)
- [seneca](https://github.com/senecajs/seneca) - 编写微服务的工具包。 ![](https://img.shields.io/github/stars/senecajs/seneca.svg?style=social&label=Star)
- [server](https://github.com/franciscop/server) - 简单而强大的 Node.js 服务器。 ![](https://img.shields.io/github/stars/franciscop/server.svg?style=social&label=Star)
- [beidou](https://github.com/alibaba/beidou) - NodeJS & React 同构框架,基于 Egg.js 开发。 ![](https://img.shields.io/github/stars/alibaba/beidou.svg?style=social&label=Star)
- [Marble.js](https://github.com/marblejs/marble) - 基于 TypeScript 和 RxJS,用于构建服务端应用的函数响应式框架。 ![](https://img.shields.io/github/stars/marblejs/marble.svg?style=social&label=Star)
- [ActionHero](https://github.com/actionhero/actionhero) - 用于为 TCP 套接字,WebSocket 和 HTTP 客户端制作可重用和可扩展的 API 的框架。 ![](https://img.shields.io/github/stars/actionhero/actionhero.svg?style=social&label=Star)
- [lad](https://github.com/ladjs/lad) - 最好的 Node.js 框架,由前 Express 和 Koa 团队成员创建。 ![](https://img.shields.io/github/stars/ladjs/lad.svg?style=social&label=Star)
- [Tinyhttp](https://github.com/talentlessguy/tinyhttp) - 类 Express 更现代更快的 Web 框架。 ![](https://img.shields.io/github/stars/talentlessguy/tinyhttp.svg?style=social&label=Star)
- [daruk](https://github.com/darukjs/daruk) - 基于 typescript 的 Node.js web 框架。 ![](https://img.shields.io/github/stars/darukjs/daruk.svg?style=social&label=Star)
- [Hemera](https://github.com/hemerajs/hemera) - 使用以下工具编写可靠且容错的微服务 [NATS](https://nats.io)。 ![](https://img.shields.io/github/stars/hemerajs/hemera.svg?style=social&label=Star)
- [diet](https://github.com/adamhalasz/diet) - 一个小巧、快速、模块化的 node.js web 框架。适用于制作快速、可扩展的应用程序和 API。 ![](https://img.shields.io/github/stars/adamhalasz/diet.svg?style=social&label=Star)
- [restana](https://github.com/BackendStack21/restana) - 用于构建 REST 微服务的超快速和简约的框架。 ![](https://img.shields.io/github/stars/BackendStack21/restana.svg?style=social&label=Star)
- [CabloyJS](https://github.com/zhennann/Cabloy) - 一款自带工作流引擎的 Node.js 全栈框架。 ![](https://img.shields.io/github/stars/zhennann/Cabloy.svg?style=social&label=Star)
- [malagu](https://github.com/cellbang/malagu) - Malagu 是基于 TypeScript 的 Serverless First、可扩展和组件化的应用框架。 ![](https://img.shields.io/github/stars/cellbang/malagu.svg?style=social&label=Star)
- [Zeronode](https://github.com/sfast/zeronode) - 最小的构建块,可实现可靠且容错的微服务。 ![](https://img.shields.io/github/stars/sfast/zeronode.svg?style=social&label=Star)
- [hyper-express](https://github.com/kartikk221/hyper-express) - 高性能 web 服务器,具有简单易用的 API,基于 uWebsockets.js。 ![](https://img.shields.io/github/stars/kartikk221/hyper-express.svg?style=social&label=Star)
### GraphQL
- *(你也许喜欢 [awesome-graphql](https://github.com/chentsulin/awesome-graphql#javascript-libraries))*
### 内容管理系统 (CMS)
- [Ghost](https://github.com/TryGhost/Ghost) - 用于专业发布的无头 Node.js CMS。 ![](https://img.shields.io/github/stars/TryGhost/Ghost.svg?style=social&label=Star)
- [Strapi](https://github.com/strapi/strapi) - 用于构建强大 API 的内容管理框架 (headless-CMS)。 ![](https://img.shields.io/github/stars/strapi/strapi.svg?style=social&label=Star)
- [KeystoneJS](https://github.com/keystonejs/keystone) - 基于 Express 和 MongoDB 的 CMS 和 Web 应用程序平台。 ![](https://img.shields.io/github/stars/keystonejs/keystone.svg?style=social&label=Star)
- [AdminBro](https://github.com/SoftwareBrothers/admin-bro) - 为您的所有模型自动生成带有 增删查改(CRUD) 的管理面板。 ![](https://img.shields.io/github/stars/SoftwareBrothers/admin-bro.svg?style=social&label=Star)
- [ApostropheCMS](https://github.com/apostrophecms/apostrophe) - 基于 Express 和 MongoDB,拥有直观的内容编辑和管理的内容管理系统。 ![](https://img.shields.io/github/stars/apostrophecms/apostrophe.svg?style=social&label=Star)
- [Tipe](https://github.com/tipeio/tipe) - 面向开发人员的下一代 API 优先 CMS。使用离线原型和内置编辑器从 GraphQL Schema 中 生成 API 优先 的 CMS。 ![](https://img.shields.io/github/stars/tipeio/tipe.svg?style=social&label=Star)
- [Factor](https://github.com/fiction-com/factor) - Vue.js 仪表板框架 和 无头 CMS。 ![](https://img.shields.io/github/stars/fiction-com/factor.svg?style=social&label=Star)
### 静态网站生成 & 博客
- [gatsby](https://github.com/gatsbyjs/gatsby) - 使用 React 构建快速、现代的应用程序和网站。 ![](https://img.shields.io/github/stars/gatsbyjs/gatsby.svg?style=social&label=Star)
- [hexo](https://github.com/hexojs/hexo) - 使用 Node.js 的快速,简单,强大的博客框架。 ![](https://img.shields.io/github/stars/hexojs/hexo.svg?style=social&label=Star)
- [vuepress](https://github.com/vuejs/vuepress) - 极简的 Vue 静态网站生成工具。 ![](https://img.shields.io/github/stars/vuejs/vuepress.svg?style=social&label=Star)
- [netlify-cms](https://github.com/netlify/netlify-cms) - 基于 Git 的静态网站生成工具。 ![](https://img.shields.io/github/stars/netlify/netlify-cms.svg?style=social&label=Star)
- [react-static](https://github.com/react-static/react-static) - 渐进式的 React 静态网站生成工具。 ![](https://img.shields.io/github/stars/react-static/react-static.svg?style=social&label=Star)
- [gridsome](https://github.com/gridsome/gridsome) - Vue.js 静态网站生成工具。 ![](https://img.shields.io/github/stars/gridsome/gridsome.svg?style=social&label=Star)
- [vitepress](https://github.com/vuejs/vitepress) - Vite & Vue.js 静态网站生成工具。 ![](https://img.shields.io/github/stars/vuejs/vitepress.svg?style=social&label=Star)
- [scully](https://github.com/scullyio/scully) - Angular 应用程序的静态站点生成器。 ![](https://img.shields.io/github/stars/scullyio/scully.svg?style=social&label=Star)
### 文档生成
- [Docusaurus](https://github.com/facebook/docusaurus) - 使用 React 和 Markdown 并具有翻译和版本控制功能的文档站点生成器。 ![](https://img.shields.io/github/stars/facebook/docusaurus.svg?style=social&label=Star)
- [docsify](https://github.com/docsifyjs/docsify) - API 文档生成器。 ![](https://img.shields.io/github/stars/docsifyjs/docsify.svg?style=social&label=Star)
- [JSDoc](https://github.com/jsdoc3/jsdoc) - API 文档生成器,类似于 JavaDoc 或 PHPDoc。 ![](https://img.shields.io/github/stars/jsdoc3/jsdoc.svg?style=social&label=Star)
- [documentation.js](https://github.com/documentationjs/documentation) - API 文档生成器,支持 ES2015+和流程注释。 ![](https://img.shields.io/github/stars/documentationjs/documentation.svg?style=social&label=Star)
- [Docco](https://github.com/jashkenas/docco) - 文档生成器,该生成器生成一个 HTML 文档,该文档显示与代码混合的注释。 ![](https://img.shields.io/github/stars/jashkenas/docco.svg?style=social&label=Star)
- [docute](https://github.com/egoist/docute) - 毫不费力的文档,做就对了。 ![](https://img.shields.io/github/stars/egoist/docute.svg?style=social&label=Star)
- [ESDoc](https://github.com/esdoc/esdoc) - 针对 ES2015 的文档生成器,附加测试代码并衡量文档覆盖范围。 ![](https://img.shields.io/github/stars/esdoc/esdoc.svg?style=social&label=Star)
- [groc](https://github.com/nevir/groc) - 文档生成,本着文学编程的精神。 ![](https://img.shields.io/github/stars/nevir/groc.svg?style=social&label=Star)
### 接口管理
- [yapi](https://github.com/YMFE/yapi) - YApi 是一个可本地部署的、打通前后端及 QA 的、可视化的接口管理平台。 ![](https://img.shields.io/github/stars/YMFE/yapi.svg?style=social&label=Star)
- [swagger](https://github.com/swagger-api/swagger-node) - Swagger NodeJS 版。将符合 Swagger 规范 的 API 动态生成精美的文档。 ![](https://img.shields.io/github/stars/swagger-api/swagger-node.svg?style=social&label=Star)
- [rap2](https://github.com/thx/rap2-delos) - 阿里妈妈前端团队出品的开源接口管理工具 RAP 第二代。 ![](https://img.shields.io/github/stars/thx/rap2-delos.svg?style=social&label=Star)
### 桌面应用程序
- [Electron](https://github.com/atom/electron) - 使用 Web 技术构建跨平台的桌面应用程序。 *(你也许喜欢 [awesome-electron](https://github.com/sindresorhus/awesome-electron))* ![](https://img.shields.io/github/stars/atom/electron.svg?style=social&label=Star)
- [nw.js](https://github.com/nwjs/nw.js) - 使用 Web 技术编写应用程序的新方法,并直接从 DOM/WebWorker 调用所有 Node.js 模块。 ![](https://img.shields.io/github/stars/nwjs/nw.js.svg?style=social&label=Star)
### 实时通信
- [Socket.io](https://github.com/socketio/socket.io) - 实现基于事件的实时双向通信。 ![](https://img.shields.io/github/stars/socketio/socket.io.svg?style=social&label=Star)
- [ws](https://github.com/websockets/ws) - 简单易用,速度极快,经过全面测试的 WebSocket 客户端和服务器 Node.js 通信库。 ![](https://img.shields.io/github/stars/websockets/ws.svg?style=social&label=Star)