@maiyunnet/kebab 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/.VSCodeCounter/2025-02-14_14-46-44/details.md +82 -0
  2. package/.VSCodeCounter/2025-02-14_14-46-44/diff-details.md +15 -0
  3. package/.VSCodeCounter/2025-02-14_14-46-44/diff.csv +2 -0
  4. package/.VSCodeCounter/2025-02-14_14-46-44/diff.md +19 -0
  5. package/.VSCodeCounter/2025-02-14_14-46-44/diff.txt +22 -0
  6. package/.VSCodeCounter/2025-02-14_14-46-44/results.csv +69 -0
  7. package/.VSCodeCounter/2025-02-14_14-46-44/results.json +1 -0
  8. package/.VSCodeCounter/2025-02-14_14-46-44/results.md +48 -0
  9. package/.VSCodeCounter/2025-02-14_14-46-44/results.txt +118 -0
  10. package/.vscode/tasks.json +15 -0
  11. package/LICENSE +201 -0
  12. package/README.md +201 -0
  13. package/bin/kebab.js +2 -0
  14. package/eslint.config.js +22 -0
  15. package/index.js +19 -0
  16. package/index.ts +33 -0
  17. package/lib/buffer.js +108 -0
  18. package/lib/buffer.ts +152 -0
  19. package/lib/captcha/zcool-addict-italic.ttf +0 -0
  20. package/lib/captcha.js +71 -0
  21. package/lib/captcha.ts +63 -0
  22. package/lib/consistent.js +171 -0
  23. package/lib/consistent.ts +219 -0
  24. package/lib/core.js +663 -0
  25. package/lib/core.ts +880 -0
  26. package/lib/crypto.js +256 -0
  27. package/lib/crypto.ts +384 -0
  28. package/lib/db.js +521 -0
  29. package/lib/db.ts +719 -0
  30. package/lib/dns.js +321 -0
  31. package/lib/dns.ts +405 -0
  32. package/lib/fs.js +405 -0
  33. package/lib/fs.ts +527 -0
  34. package/lib/jwt.js +223 -0
  35. package/lib/jwt.ts +276 -0
  36. package/lib/kv.js +1004 -0
  37. package/lib/kv.ts +1489 -0
  38. package/lib/lan.js +99 -0
  39. package/lib/lan.ts +87 -0
  40. package/lib/net/cacert.pem +3480 -0
  41. package/lib/net/formdata.js +137 -0
  42. package/lib/net/formdata.ts +166 -0
  43. package/lib/net/request.js +102 -0
  44. package/lib/net/request.ts +150 -0
  45. package/lib/net/response.js +28 -0
  46. package/lib/net/response.ts +59 -0
  47. package/lib/net.js +462 -0
  48. package/lib/net.ts +662 -0
  49. package/lib/s3.js +180 -0
  50. package/lib/s3.ts +235 -0
  51. package/lib/scan.js +276 -0
  52. package/lib/scan.ts +364 -0
  53. package/lib/session.js +177 -0
  54. package/lib/session.ts +230 -0
  55. package/lib/sql.js +818 -0
  56. package/lib/sql.ts +1151 -0
  57. package/lib/ssh/sftp.js +373 -0
  58. package/lib/ssh/sftp.ts +508 -0
  59. package/lib/ssh/shell.js +109 -0
  60. package/lib/ssh/shell.ts +123 -0
  61. package/lib/ssh.js +171 -0
  62. package/lib/ssh.ts +191 -0
  63. package/lib/text/tld.json +1 -0
  64. package/lib/text.js +452 -0
  65. package/lib/text.ts +607 -0
  66. package/lib/time.js +216 -0
  67. package/lib/time.ts +254 -0
  68. package/lib/ws.js +373 -0
  69. package/lib/ws.ts +523 -0
  70. package/lib/zip.js +381 -0
  71. package/lib/zip.ts +447 -0
  72. package/lib/zlib.js +289 -0
  73. package/lib/zlib.ts +350 -0
  74. package/main.js +51 -0
  75. package/main.ts +27 -0
  76. package/package.json +37 -0
  77. package/sys/child.js +585 -0
  78. package/sys/child.ts +678 -0
  79. package/sys/cmd.js +226 -0
  80. package/sys/cmd.ts +225 -0
  81. package/sys/ctr.js +608 -0
  82. package/sys/ctr.ts +904 -0
  83. package/sys/master.js +314 -0
  84. package/sys/master.ts +355 -0
  85. package/sys/mod.js +1273 -0
  86. package/sys/mod.ts +1871 -0
  87. package/sys/route.js +922 -0
  88. package/sys/route.ts +1113 -0
  89. package/types/index.d.ts +283 -0
  90. package/www/example/ctr/main.js +42 -0
  91. package/www/example/ctr/main.ts +9 -0
  92. package/www/example/ctr/middle.js +57 -0
  93. package/www/example/ctr/middle.ts +26 -0
  94. package/www/example/ctr/test.js +2818 -0
  95. package/www/example/ctr/test.ts +3218 -0
  96. package/www/example/data/locale/en.test.json +8 -0
  97. package/www/example/data/locale/index.html +1 -0
  98. package/www/example/data/locale/ja.test.json +8 -0
  99. package/www/example/data/locale/sc.test.json +8 -0
  100. package/www/example/data/locale/tc.test.json +8 -0
  101. package/www/example/data/test.zip +0 -0
  102. package/www/example/kebab.json +24 -0
  103. package/www/example/mod/test.js +49 -0
  104. package/www/example/mod/test.ts +47 -0
  105. package/www/example/mod/testdata.js +11 -0
  106. package/www/example/mod/testdata.ts +30 -0
  107. package/www/example/route.json +6 -0
  108. package/www/example/view/test.ejs +11 -0
  109. package/www/example/ws/mproxy.js +49 -0
  110. package/www/example/ws/mproxy.ts +16 -0
  111. package/www/example/ws/rproxy.js +47 -0
  112. package/www/example/ws/rproxy.ts +14 -0
  113. package/www/example/ws/test.js +68 -0
  114. package/www/example/ws/test.ts +36 -0
@@ -0,0 +1,82 @@
1
+ # Details
2
+
3
+ Date : 2025-02-14 14:46:44
4
+
5
+ Directory d:\\sync\\www\\project\\maiyun\\Kebab
6
+
7
+ Total : 67 files, 15945 codes, 3622 comments, 1746 blanks, all 21313 lines
8
+
9
+ [Summary](results.md) / Details / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
10
+
11
+ ## Files
12
+ | filename | language | code | comment | blank | total |
13
+ | :--- | :--- | ---: | ---: | ---: | ---: |
14
+ | [README.md](/README.md) | Markdown | 134 | 0 | 67 | 201 |
15
+ | [conf/cert.json](/conf/cert.json) | JSON | 6 | 0 | 0 | 6 |
16
+ | [conf/config.json](/conf/config.json) | JSON | 67 | 0 | 1 | 68 |
17
+ | [conf/vhost/default.json](/conf/vhost/default.json) | JSON | 8 | 0 | 0 | 8 |
18
+ | [doc/CHANGELOG.md](/doc/CHANGELOG.md) | Markdown | 85 | 0 | 28 | 113 |
19
+ | [doc/CHANGELOG.sc.md](/doc/CHANGELOG.sc.md) | Markdown | 85 | 0 | 28 | 113 |
20
+ | [doc/CHANGELOG.tc.md](/doc/CHANGELOG.tc.md) | Markdown | 85 | 0 | 28 | 113 |
21
+ | [doc/README.sc.md](/doc/README.sc.md) | Markdown | 134 | 0 | 67 | 201 |
22
+ | [doc/README.tc.md](/doc/README.tc.md) | Markdown | 135 | 0 | 68 | 203 |
23
+ | [doc/icon.svg](/doc/icon.svg) | XML | 1 | 0 | 0 | 1 |
24
+ | [eslint.config.js](/eslint.config.js) | JavaScript | 23 | 1 | 1 | 25 |
25
+ | [index.ts](/index.ts) | TypeScript | 13 | 12 | 3 | 28 |
26
+ | [lib/buffer.ts](/lib/buffer.ts) | TypeScript | 103 | 25 | 25 | 153 |
27
+ | [lib/captcha.ts](/lib/captcha.ts) | TypeScript | 34 | 20 | 10 | 64 |
28
+ | [lib/consistent.ts](/lib/consistent.ts) | TypeScript | 142 | 59 | 19 | 220 |
29
+ | [lib/core.ts](/lib/core.ts) | TypeScript | 668 | 184 | 40 | 892 |
30
+ | [lib/crypto.ts](/lib/crypto.ts) | TypeScript | 246 | 115 | 24 | 385 |
31
+ | [lib/db.ts](/lib/db.ts) | TypeScript | 529 | 133 | 58 | 720 |
32
+ | [lib/dns.ts](/lib/dns.ts) | TypeScript | 328 | 63 | 19 | 410 |
33
+ | [lib/fs.ts](/lib/fs.ts) | TypeScript | 389 | 118 | 21 | 528 |
34
+ | [lib/jwt.ts](/lib/jwt.ts) | TypeScript | 203 | 52 | 22 | 277 |
35
+ | [lib/kv.ts](/lib/kv.ts) | TypeScript | 1,001 | 381 | 108 | 1,490 |
36
+ | [lib/lan.ts](/lib/lan.ts) | TypeScript | 69 | 4 | 3 | 76 |
37
+ | [lib/net.ts](/lib/net.ts) | TypeScript | 497 | 152 | 24 | 673 |
38
+ | [lib/net/formdata.ts](/lib/net/formdata.ts) | TypeScript | 104 | 46 | 17 | 167 |
39
+ | [lib/net/request.ts](/lib/net/request.ts) | TypeScript | 68 | 62 | 21 | 151 |
40
+ | [lib/net/response.ts](/lib/net/response.ts) | TypeScript | 27 | 21 | 12 | 60 |
41
+ | [lib/s3.ts](/lib/s3.ts) | TypeScript | 170 | 58 | 18 | 246 |
42
+ | [lib/scan.ts](/lib/scan.ts) | TypeScript | 256 | 86 | 23 | 365 |
43
+ | [lib/session.ts](/lib/session.ts) | TypeScript | 154 | 55 | 22 | 231 |
44
+ | [lib/sql.ts](/lib/sql.ts) | TypeScript | 815 | 281 | 49 | 1,145 |
45
+ | [lib/ssh.ts](/lib/ssh.ts) | TypeScript | 143 | 34 | 15 | 192 |
46
+ | [lib/ssh/sftp.ts](/lib/ssh/sftp.ts) | TypeScript | 367 | 113 | 29 | 509 |
47
+ | [lib/ssh/shell.ts](/lib/ssh/shell.ts) | TypeScript | 61 | 37 | 13 | 111 |
48
+ | [lib/text.ts](/lib/text.ts) | TypeScript | 399 | 170 | 38 | 607 |
49
+ | [lib/text/tld.json](/lib/text/tld.json) | JSON | 1 | 0 | 0 | 1 |
50
+ | [lib/time.ts](/lib/time.ts) | TypeScript | 180 | 58 | 17 | 255 |
51
+ | [lib/ws.ts](/lib/ws.ts) | TypeScript | 431 | 107 | 35 | 573 |
52
+ | [lib/zip.ts](/lib/zip.ts) | TypeScript | 350 | 75 | 23 | 448 |
53
+ | [lib/zlib.ts](/lib/zlib.ts) | TypeScript | 251 | 80 | 20 | 351 |
54
+ | [package.json](/package.json) | JSON | 23 | 0 | 1 | 24 |
55
+ | [sys/child.ts](/sys/child.ts) | TypeScript | 554 | 104 | 16 | 674 |
56
+ | [sys/cmd.ts](/sys/cmd.ts) | TypeScript | 53 | 14 | 5 | 72 |
57
+ | [sys/ctr.ts](/sys/ctr.ts) | TypeScript | 638 | 196 | 77 | 911 |
58
+ | [sys/def.ts](/sys/def.ts) | TypeScript | 12 | 9 | 5 | 26 |
59
+ | [sys/master.ts](/sys/master.ts) | TypeScript | 390 | 83 | 12 | 485 |
60
+ | [sys/mod.ts](/sys/mod.ts) | TypeScript | 1,436 | 335 | 85 | 1,856 |
61
+ | [sys/route.ts](/sys/route.ts) | TypeScript | 914 | 168 | 34 | 1,116 |
62
+ | [tsconfig.json](/tsconfig.json) | JSON with Comments | 30 | 1 | 0 | 31 |
63
+ | [types/index.d.ts](/types/index.d.ts) | TypeScript | 187 | 36 | 46 | 269 |
64
+ | [www/default/ctr/main.ts](/www/default/ctr/main.ts) | TypeScript | 6 | 0 | 4 | 10 |
65
+ | [www/default/ctr/middle.ts](/www/default/ctr/middle.ts) | TypeScript | 22 | 0 | 5 | 27 |
66
+ | [www/default/ctr/test.ts](/www/default/ctr/test.ts) | TypeScript | 2,752 | 46 | 393 | 3,191 |
67
+ | [www/default/data/locale/en.test.json](/www/default/data/locale/en.test.json) | JSON | 8 | 0 | 0 | 8 |
68
+ | [www/default/data/locale/index.html](/www/default/data/locale/index.html) | HTML | 1 | 0 | 0 | 1 |
69
+ | [www/default/data/locale/ja.test.json](/www/default/data/locale/ja.test.json) | JSON | 8 | 0 | 0 | 8 |
70
+ | [www/default/data/locale/sc.test.json](/www/default/data/locale/sc.test.json) | JSON | 8 | 0 | 0 | 8 |
71
+ | [www/default/data/locale/tc.test.json](/www/default/data/locale/tc.test.json) | JSON | 8 | 0 | 0 | 8 |
72
+ | [www/default/kebab.json](/www/default/kebab.json) | JSON | 24 | 0 | 0 | 24 |
73
+ | [www/default/mod/test.ts](/www/default/mod/test.ts) | TypeScript | 17 | 15 | 16 | 48 |
74
+ | [www/default/mod/testdata.ts](/www/default/mod/testdata.ts) | TypeScript | 9 | 11 | 11 | 31 |
75
+ | [www/default/route.json](/www/default/route.json) | JSON | 6 | 0 | 0 | 6 |
76
+ | [www/default/view/test.ejs](/www/default/view/test.ejs) | HTML | 11 | 0 | 0 | 11 |
77
+ | [www/default/ws/irp.ts](/www/default/ws/irp.ts) | TypeScript | 13 | 1 | 5 | 19 |
78
+ | [www/default/ws/mproxy.ts](/www/default/ws/mproxy.ts) | TypeScript | 13 | 0 | 4 | 17 |
79
+ | [www/default/ws/rproxy.ts](/www/default/ws/rproxy.ts) | TypeScript | 11 | 0 | 4 | 15 |
80
+ | [www/default/ws/test.ts](/www/default/ws/test.ts) | TypeScript | 29 | 1 | 7 | 37 |
81
+
82
+ [Summary](results.md) / Details / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
@@ -0,0 +1,15 @@
1
+ # Diff Details
2
+
3
+ Date : 2025-02-14 14:46:44
4
+
5
+ Directory d:\\sync\\www\\project\\maiyun\\Kebab
6
+
7
+ Total : 0 files, 0 codes, 0 comments, 0 blanks, all 0 lines
8
+
9
+ [Summary](results.md) / [Details](details.md) / [Diff Summary](diff.md) / Diff Details
10
+
11
+ ## Files
12
+ | filename | language | code | comment | blank | total |
13
+ | :--- | :--- | ---: | ---: | ---: | ---: |
14
+
15
+ [Summary](results.md) / [Details](details.md) / [Diff Summary](diff.md) / Diff Details
@@ -0,0 +1,2 @@
1
+ "filename", "language", "", "comment", "blank", "total"
2
+ "Total", "-", , 0, 0, 0
@@ -0,0 +1,19 @@
1
+ # Diff Summary
2
+
3
+ Date : 2025-02-14 14:46:44
4
+
5
+ Directory d:\\sync\\www\\project\\maiyun\\Kebab
6
+
7
+ Total : 0 files, 0 codes, 0 comments, 0 blanks, all 0 lines
8
+
9
+ [Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md)
10
+
11
+ ## Languages
12
+ | language | files | code | comment | blank | total |
13
+ | :--- | ---: | ---: | ---: | ---: | ---: |
14
+
15
+ ## Directories
16
+ | path | files | code | comment | blank | total |
17
+ | :--- | ---: | ---: | ---: | ---: | ---: |
18
+
19
+ [Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md)
@@ -0,0 +1,22 @@
1
+ Date : 2025-02-14 14:46:44
2
+ Directory : d:\sync\www\project\maiyun\Kebab
3
+ Total : 0 files, 0 codes, 0 comments, 0 blanks, all 0 lines
4
+
5
+ Languages
6
+ +----------+------------+------------+------------+------------+------------+
7
+ | language | files | code | comment | blank | total |
8
+ +----------+------------+------------+------------+------------+------------+
9
+ +----------+------------+------------+------------+------------+------------+
10
+
11
+ Directories
12
+ +------+------------+------------+------------+------------+------------+
13
+ | path | files | code | comment | blank | total |
14
+ +------+------------+------------+------------+------------+------------+
15
+ +------+------------+------------+------------+------------+------------+
16
+
17
+ Files
18
+ +----------+----------+------------+------------+------------+------------+
19
+ | filename | language | code | comment | blank | total |
20
+ +----------+----------+------------+------------+------------+------------+
21
+ | Total | | 0 | 0 | 0 | 0 |
22
+ +----------+----------+------------+------------+------------+------------+
@@ -0,0 +1,69 @@
1
+ "filename", "language", "JSON with Comments", "JSON", "TypeScript", "HTML", "JavaScript", "Markdown", "XML", "comment", "blank", "total"
2
+ "d:\sync\www\project\maiyun\Kebab\README.md", "Markdown", 0, 0, 0, 0, 0, 134, 0, 0, 67, 201
3
+ "d:\sync\www\project\maiyun\Kebab\conf\cert.json", "JSON", 0, 6, 0, 0, 0, 0, 0, 0, 0, 6
4
+ "d:\sync\www\project\maiyun\Kebab\conf\config.json", "JSON", 0, 67, 0, 0, 0, 0, 0, 0, 1, 68
5
+ "d:\sync\www\project\maiyun\Kebab\conf\vhost\default.json", "JSON", 0, 8, 0, 0, 0, 0, 0, 0, 0, 8
6
+ "d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.md", "Markdown", 0, 0, 0, 0, 0, 85, 0, 0, 28, 113
7
+ "d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.sc.md", "Markdown", 0, 0, 0, 0, 0, 85, 0, 0, 28, 113
8
+ "d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.tc.md", "Markdown", 0, 0, 0, 0, 0, 85, 0, 0, 28, 113
9
+ "d:\sync\www\project\maiyun\Kebab\doc\README.sc.md", "Markdown", 0, 0, 0, 0, 0, 134, 0, 0, 67, 201
10
+ "d:\sync\www\project\maiyun\Kebab\doc\README.tc.md", "Markdown", 0, 0, 0, 0, 0, 135, 0, 0, 68, 203
11
+ "d:\sync\www\project\maiyun\Kebab\doc\icon.svg", "XML", 0, 0, 0, 0, 0, 0, 1, 0, 0, 1
12
+ "d:\sync\www\project\maiyun\Kebab\eslint.config.js", "JavaScript", 0, 0, 0, 0, 23, 0, 0, 1, 1, 25
13
+ "d:\sync\www\project\maiyun\Kebab\index.ts", "TypeScript", 0, 0, 13, 0, 0, 0, 0, 12, 3, 28
14
+ "d:\sync\www\project\maiyun\Kebab\lib\buffer.ts", "TypeScript", 0, 0, 103, 0, 0, 0, 0, 25, 25, 153
15
+ "d:\sync\www\project\maiyun\Kebab\lib\captcha.ts", "TypeScript", 0, 0, 34, 0, 0, 0, 0, 20, 10, 64
16
+ "d:\sync\www\project\maiyun\Kebab\lib\consistent.ts", "TypeScript", 0, 0, 142, 0, 0, 0, 0, 59, 19, 220
17
+ "d:\sync\www\project\maiyun\Kebab\lib\core.ts", "TypeScript", 0, 0, 668, 0, 0, 0, 0, 184, 40, 892
18
+ "d:\sync\www\project\maiyun\Kebab\lib\crypto.ts", "TypeScript", 0, 0, 246, 0, 0, 0, 0, 115, 24, 385
19
+ "d:\sync\www\project\maiyun\Kebab\lib\db.ts", "TypeScript", 0, 0, 529, 0, 0, 0, 0, 133, 58, 720
20
+ "d:\sync\www\project\maiyun\Kebab\lib\dns.ts", "TypeScript", 0, 0, 328, 0, 0, 0, 0, 63, 19, 410
21
+ "d:\sync\www\project\maiyun\Kebab\lib\fs.ts", "TypeScript", 0, 0, 389, 0, 0, 0, 0, 118, 21, 528
22
+ "d:\sync\www\project\maiyun\Kebab\lib\jwt.ts", "TypeScript", 0, 0, 203, 0, 0, 0, 0, 52, 22, 277
23
+ "d:\sync\www\project\maiyun\Kebab\lib\kv.ts", "TypeScript", 0, 0, 1001, 0, 0, 0, 0, 381, 108, 1490
24
+ "d:\sync\www\project\maiyun\Kebab\lib\lan.ts", "TypeScript", 0, 0, 69, 0, 0, 0, 0, 4, 3, 76
25
+ "d:\sync\www\project\maiyun\Kebab\lib\net.ts", "TypeScript", 0, 0, 497, 0, 0, 0, 0, 152, 24, 673
26
+ "d:\sync\www\project\maiyun\Kebab\lib\net\formdata.ts", "TypeScript", 0, 0, 104, 0, 0, 0, 0, 46, 17, 167
27
+ "d:\sync\www\project\maiyun\Kebab\lib\net\request.ts", "TypeScript", 0, 0, 68, 0, 0, 0, 0, 62, 21, 151
28
+ "d:\sync\www\project\maiyun\Kebab\lib\net\response.ts", "TypeScript", 0, 0, 27, 0, 0, 0, 0, 21, 12, 60
29
+ "d:\sync\www\project\maiyun\Kebab\lib\s3.ts", "TypeScript", 0, 0, 170, 0, 0, 0, 0, 58, 18, 246
30
+ "d:\sync\www\project\maiyun\Kebab\lib\scan.ts", "TypeScript", 0, 0, 256, 0, 0, 0, 0, 86, 23, 365
31
+ "d:\sync\www\project\maiyun\Kebab\lib\session.ts", "TypeScript", 0, 0, 154, 0, 0, 0, 0, 55, 22, 231
32
+ "d:\sync\www\project\maiyun\Kebab\lib\sql.ts", "TypeScript", 0, 0, 815, 0, 0, 0, 0, 281, 49, 1145
33
+ "d:\sync\www\project\maiyun\Kebab\lib\ssh.ts", "TypeScript", 0, 0, 143, 0, 0, 0, 0, 34, 15, 192
34
+ "d:\sync\www\project\maiyun\Kebab\lib\ssh\sftp.ts", "TypeScript", 0, 0, 367, 0, 0, 0, 0, 113, 29, 509
35
+ "d:\sync\www\project\maiyun\Kebab\lib\ssh\shell.ts", "TypeScript", 0, 0, 61, 0, 0, 0, 0, 37, 13, 111
36
+ "d:\sync\www\project\maiyun\Kebab\lib\text.ts", "TypeScript", 0, 0, 399, 0, 0, 0, 0, 170, 38, 607
37
+ "d:\sync\www\project\maiyun\Kebab\lib\text\tld.json", "JSON", 0, 1, 0, 0, 0, 0, 0, 0, 0, 1
38
+ "d:\sync\www\project\maiyun\Kebab\lib\time.ts", "TypeScript", 0, 0, 180, 0, 0, 0, 0, 58, 17, 255
39
+ "d:\sync\www\project\maiyun\Kebab\lib\ws.ts", "TypeScript", 0, 0, 431, 0, 0, 0, 0, 107, 35, 573
40
+ "d:\sync\www\project\maiyun\Kebab\lib\zip.ts", "TypeScript", 0, 0, 350, 0, 0, 0, 0, 75, 23, 448
41
+ "d:\sync\www\project\maiyun\Kebab\lib\zlib.ts", "TypeScript", 0, 0, 251, 0, 0, 0, 0, 80, 20, 351
42
+ "d:\sync\www\project\maiyun\Kebab\package.json", "JSON", 0, 23, 0, 0, 0, 0, 0, 0, 1, 24
43
+ "d:\sync\www\project\maiyun\Kebab\sys\child.ts", "TypeScript", 0, 0, 554, 0, 0, 0, 0, 104, 16, 674
44
+ "d:\sync\www\project\maiyun\Kebab\sys\cmd.ts", "TypeScript", 0, 0, 53, 0, 0, 0, 0, 14, 5, 72
45
+ "d:\sync\www\project\maiyun\Kebab\sys\ctr.ts", "TypeScript", 0, 0, 638, 0, 0, 0, 0, 196, 77, 911
46
+ "d:\sync\www\project\maiyun\Kebab\sys\def.ts", "TypeScript", 0, 0, 12, 0, 0, 0, 0, 9, 5, 26
47
+ "d:\sync\www\project\maiyun\Kebab\sys\master.ts", "TypeScript", 0, 0, 390, 0, 0, 0, 0, 83, 12, 485
48
+ "d:\sync\www\project\maiyun\Kebab\sys\mod.ts", "TypeScript", 0, 0, 1436, 0, 0, 0, 0, 335, 85, 1856
49
+ "d:\sync\www\project\maiyun\Kebab\sys\route.ts", "TypeScript", 0, 0, 914, 0, 0, 0, 0, 168, 34, 1116
50
+ "d:\sync\www\project\maiyun\Kebab\tsconfig.json", "JSON with Comments", 30, 0, 0, 0, 0, 0, 0, 1, 0, 31
51
+ "d:\sync\www\project\maiyun\Kebab\types\index.d.ts", "TypeScript", 0, 0, 187, 0, 0, 0, 0, 36, 46, 269
52
+ "d:\sync\www\project\maiyun\Kebab\www\default\ctr\main.ts", "TypeScript", 0, 0, 6, 0, 0, 0, 0, 0, 4, 10
53
+ "d:\sync\www\project\maiyun\Kebab\www\default\ctr\middle.ts", "TypeScript", 0, 0, 22, 0, 0, 0, 0, 0, 5, 27
54
+ "d:\sync\www\project\maiyun\Kebab\www\default\ctr\test.ts", "TypeScript", 0, 0, 2752, 0, 0, 0, 0, 46, 393, 3191
55
+ "d:\sync\www\project\maiyun\Kebab\www\default\data\locale\en.test.json", "JSON", 0, 8, 0, 0, 0, 0, 0, 0, 0, 8
56
+ "d:\sync\www\project\maiyun\Kebab\www\default\data\locale\index.html", "HTML", 0, 0, 0, 1, 0, 0, 0, 0, 0, 1
57
+ "d:\sync\www\project\maiyun\Kebab\www\default\data\locale\ja.test.json", "JSON", 0, 8, 0, 0, 0, 0, 0, 0, 0, 8
58
+ "d:\sync\www\project\maiyun\Kebab\www\default\data\locale\sc.test.json", "JSON", 0, 8, 0, 0, 0, 0, 0, 0, 0, 8
59
+ "d:\sync\www\project\maiyun\Kebab\www\default\data\locale\tc.test.json", "JSON", 0, 8, 0, 0, 0, 0, 0, 0, 0, 8
60
+ "d:\sync\www\project\maiyun\Kebab\www\default\kebab.json", "JSON", 0, 24, 0, 0, 0, 0, 0, 0, 0, 24
61
+ "d:\sync\www\project\maiyun\Kebab\www\default\mod\test.ts", "TypeScript", 0, 0, 17, 0, 0, 0, 0, 15, 16, 48
62
+ "d:\sync\www\project\maiyun\Kebab\www\default\mod\testdata.ts", "TypeScript", 0, 0, 9, 0, 0, 0, 0, 11, 11, 31
63
+ "d:\sync\www\project\maiyun\Kebab\www\default\route.json", "JSON", 0, 6, 0, 0, 0, 0, 0, 0, 0, 6
64
+ "d:\sync\www\project\maiyun\Kebab\www\default\view\test.ejs", "HTML", 0, 0, 0, 11, 0, 0, 0, 0, 0, 11
65
+ "d:\sync\www\project\maiyun\Kebab\www\default\ws\irp.ts", "TypeScript", 0, 0, 13, 0, 0, 0, 0, 1, 5, 19
66
+ "d:\sync\www\project\maiyun\Kebab\www\default\ws\mproxy.ts", "TypeScript", 0, 0, 13, 0, 0, 0, 0, 0, 4, 17
67
+ "d:\sync\www\project\maiyun\Kebab\www\default\ws\rproxy.ts", "TypeScript", 0, 0, 11, 0, 0, 0, 0, 0, 4, 15
68
+ "d:\sync\www\project\maiyun\Kebab\www\default\ws\test.ts", "TypeScript", 0, 0, 29, 0, 0, 0, 0, 1, 7, 37
69
+ "Total", "-", 30, 167, 15054, 12, 23, 658, 1, 3622, 1746, 21313
@@ -0,0 +1 @@
1
+ {"file:///d%3A/sync/www/project/maiyun/Kebab/tsconfig.json":{"language":"JSON with Comments","code":30,"comment":1,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/package.json":{"language":"JSON","code":23,"comment":0,"blank":1},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/buffer.ts":{"language":"TypeScript","code":103,"comment":25,"blank":25},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/crypto.ts":{"language":"TypeScript","code":246,"comment":115,"blank":24},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/def.ts":{"language":"TypeScript","code":12,"comment":9,"blank":5},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/fs.ts":{"language":"TypeScript","code":389,"comment":118,"blank":21},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/child.ts":{"language":"TypeScript","code":554,"comment":104,"blank":16},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/jwt.ts":{"language":"TypeScript","code":203,"comment":52,"blank":22},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/master.ts":{"language":"TypeScript","code":390,"comment":83,"blank":12},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/kv.ts":{"language":"TypeScript","code":1001,"comment":381,"blank":108},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/core.ts":{"language":"TypeScript","code":668,"comment":184,"blank":40},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/mod.ts":{"language":"TypeScript","code":1436,"comment":335,"blank":85},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/ctr.ts":{"language":"TypeScript","code":638,"comment":196,"blank":77},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/dns.ts":{"language":"TypeScript","code":328,"comment":63,"blank":19},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/s3.ts":{"language":"TypeScript","code":170,"comment":58,"blank":18},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/scan.ts":{"language":"TypeScript","code":256,"comment":86,"blank":23},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ctr/middle.ts":{"language":"TypeScript","code":22,"comment":0,"blank":5},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/session.ts":{"language":"TypeScript","code":154,"comment":55,"blank":22},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/net.ts":{"language":"TypeScript","code":497,"comment":152,"blank":24},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/lan.ts":{"language":"TypeScript","code":69,"comment":4,"blank":3},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ctr/main.ts":{"language":"TypeScript","code":6,"comment":0,"blank":4},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/route.ts":{"language":"TypeScript","code":914,"comment":168,"blank":34},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/sql.ts":{"language":"TypeScript","code":815,"comment":281,"blank":49},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/time.ts":{"language":"TypeScript","code":180,"comment":58,"blank":17},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/ws.ts":{"language":"TypeScript","code":431,"comment":107,"blank":35},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/text.ts":{"language":"TypeScript","code":399,"comment":170,"blank":38},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ws/test.ts":{"language":"TypeScript","code":29,"comment":1,"blank":7},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ctr/test.ts":{"language":"TypeScript","code":2752,"comment":46,"blank":393},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ws/mproxy.ts":{"language":"TypeScript","code":13,"comment":0,"blank":4},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/zip.ts":{"language":"TypeScript","code":350,"comment":75,"blank":23},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ws/rproxy.ts":{"language":"TypeScript","code":11,"comment":0,"blank":4},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/ssh.ts":{"language":"TypeScript","code":143,"comment":34,"blank":15},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/ws/irp.ts":{"language":"TypeScript","code":13,"comment":1,"blank":5},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/zlib.ts":{"language":"TypeScript","code":251,"comment":80,"blank":20},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/net/request.ts":{"language":"TypeScript","code":68,"comment":62,"blank":21},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/view/test.ejs":{"language":"HTML","code":11,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/net/response.ts":{"language":"TypeScript","code":27,"comment":21,"blank":12},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/net/formdata.ts":{"language":"TypeScript","code":104,"comment":46,"blank":17},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/route.json":{"language":"JSON","code":6,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/data/locale/en.test.json":{"language":"JSON","code":8,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/mod/testdata.ts":{"language":"TypeScript","code":9,"comment":11,"blank":11},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/ssh/shell.ts":{"language":"TypeScript","code":61,"comment":37,"blank":13},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/ssh/sftp.ts":{"language":"TypeScript","code":367,"comment":113,"blank":29},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/mod/test.ts":{"language":"TypeScript","code":17,"comment":15,"blank":16},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/data/locale/index.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/data/locale/ja.test.json":{"language":"JSON","code":8,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/db.ts":{"language":"TypeScript","code":529,"comment":133,"blank":58},"file:///d%3A/sync/www/project/maiyun/Kebab/sys/cmd.ts":{"language":"TypeScript","code":53,"comment":14,"blank":5},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/kebab.json":{"language":"JSON","code":24,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/types/index.d.ts":{"language":"TypeScript","code":187,"comment":36,"blank":46},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/captcha.ts":{"language":"TypeScript","code":34,"comment":20,"blank":10},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/consistent.ts":{"language":"TypeScript","code":142,"comment":59,"blank":19},"file:///d%3A/sync/www/project/maiyun/Kebab/index.ts":{"language":"TypeScript","code":13,"comment":12,"blank":3},"file:///d%3A/sync/www/project/maiyun/Kebab/eslint.config.js":{"language":"JavaScript","code":23,"comment":1,"blank":1},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/data/locale/tc.test.json":{"language":"JSON","code":8,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/www/default/data/locale/sc.test.json":{"language":"JSON","code":8,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/CHANGELOG.md":{"language":"Markdown","code":85,"comment":0,"blank":28},"file:///d%3A/sync/www/project/maiyun/Kebab/README.md":{"language":"Markdown","code":134,"comment":0,"blank":67},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/README.tc.md":{"language":"Markdown","code":135,"comment":0,"blank":68},"file:///d%3A/sync/www/project/maiyun/Kebab/conf/config.json":{"language":"JSON","code":67,"comment":0,"blank":1},"file:///d%3A/sync/www/project/maiyun/Kebab/conf/cert.json":{"language":"JSON","code":6,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/CHANGELOG.tc.md":{"language":"Markdown","code":85,"comment":0,"blank":28},"file:///d%3A/sync/www/project/maiyun/Kebab/conf/vhost/default.json":{"language":"JSON","code":8,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/README.sc.md":{"language":"Markdown","code":134,"comment":0,"blank":67},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/icon.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///d%3A/sync/www/project/maiyun/Kebab/doc/CHANGELOG.sc.md":{"language":"Markdown","code":85,"comment":0,"blank":28},"file:///d%3A/sync/www/project/maiyun/Kebab/lib/text/tld.json":{"language":"JSON","code":1,"comment":0,"blank":0}}
@@ -0,0 +1,48 @@
1
+ # Summary
2
+
3
+ Date : 2025-02-14 14:46:44
4
+
5
+ Directory d:\\sync\\www\\project\\maiyun\\Kebab
6
+
7
+ Total : 67 files, 15945 codes, 3622 comments, 1746 blanks, all 21313 lines
8
+
9
+ Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
10
+
11
+ ## Languages
12
+ | language | files | code | comment | blank | total |
13
+ | :--- | ---: | ---: | ---: | ---: | ---: |
14
+ | TypeScript | 45 | 15,054 | 3,620 | 1,457 | 20,131 |
15
+ | Markdown | 6 | 658 | 0 | 286 | 944 |
16
+ | JSON | 11 | 167 | 0 | 2 | 169 |
17
+ | JSON with Comments | 1 | 30 | 1 | 0 | 31 |
18
+ | JavaScript | 1 | 23 | 1 | 1 | 25 |
19
+ | HTML | 2 | 12 | 0 | 0 | 12 |
20
+ | XML | 1 | 1 | 0 | 0 | 1 |
21
+
22
+ ## Directories
23
+ | path | files | code | comment | blank | total |
24
+ | :--- | ---: | ---: | ---: | ---: | ---: |
25
+ | . | 67 | 15,945 | 3,622 | 1,746 | 21,313 |
26
+ | . (Files) | 5 | 223 | 14 | 72 | 309 |
27
+ | conf | 3 | 81 | 0 | 1 | 82 |
28
+ | conf (Files) | 2 | 73 | 0 | 1 | 74 |
29
+ | conf\\vhost | 1 | 8 | 0 | 0 | 8 |
30
+ | doc | 6 | 525 | 0 | 219 | 744 |
31
+ | lib | 28 | 7,986 | 2,589 | 725 | 11,300 |
32
+ | lib (Files) | 22 | 7,358 | 2,310 | 633 | 10,301 |
33
+ | lib\\net | 3 | 199 | 129 | 50 | 378 |
34
+ | lib\\ssh | 2 | 428 | 150 | 42 | 620 |
35
+ | lib\\text | 1 | 1 | 0 | 0 | 1 |
36
+ | sys | 7 | 3,997 | 909 | 234 | 5,140 |
37
+ | types | 1 | 187 | 36 | 46 | 269 |
38
+ | www | 17 | 2,946 | 74 | 449 | 3,469 |
39
+ | www\\default | 17 | 2,946 | 74 | 449 | 3,469 |
40
+ | www\\default (Files) | 2 | 30 | 0 | 0 | 30 |
41
+ | www\\default\\ctr | 3 | 2,780 | 46 | 402 | 3,228 |
42
+ | www\\default\\data | 5 | 33 | 0 | 0 | 33 |
43
+ | www\\default\\data\\locale | 5 | 33 | 0 | 0 | 33 |
44
+ | www\\default\\mod | 2 | 26 | 26 | 27 | 79 |
45
+ | www\\default\\view | 1 | 11 | 0 | 0 | 11 |
46
+ | www\\default\\ws | 4 | 66 | 2 | 20 | 88 |
47
+
48
+ Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
@@ -0,0 +1,118 @@
1
+ Date : 2025-02-14 14:46:44
2
+ Directory : d:\sync\www\project\maiyun\Kebab
3
+ Total : 67 files, 15945 codes, 3622 comments, 1746 blanks, all 21313 lines
4
+
5
+ Languages
6
+ +--------------------+------------+------------+------------+------------+------------+
7
+ | language | files | code | comment | blank | total |
8
+ +--------------------+------------+------------+------------+------------+------------+
9
+ | TypeScript | 45 | 15,054 | 3,620 | 1,457 | 20,131 |
10
+ | Markdown | 6 | 658 | 0 | 286 | 944 |
11
+ | JSON | 11 | 167 | 0 | 2 | 169 |
12
+ | JSON with Comments | 1 | 30 | 1 | 0 | 31 |
13
+ | JavaScript | 1 | 23 | 1 | 1 | 25 |
14
+ | HTML | 2 | 12 | 0 | 0 | 12 |
15
+ | XML | 1 | 1 | 0 | 0 | 1 |
16
+ +--------------------+------------+------------+------------+------------+------------+
17
+
18
+ Directories
19
+ +-----------------------------------------------------------------------+------------+------------+------------+------------+------------+
20
+ | path | files | code | comment | blank | total |
21
+ +-----------------------------------------------------------------------+------------+------------+------------+------------+------------+
22
+ | . | 67 | 15,945 | 3,622 | 1,746 | 21,313 |
23
+ | . (Files) | 5 | 223 | 14 | 72 | 309 |
24
+ | conf | 3 | 81 | 0 | 1 | 82 |
25
+ | conf (Files) | 2 | 73 | 0 | 1 | 74 |
26
+ | conf\vhost | 1 | 8 | 0 | 0 | 8 |
27
+ | doc | 6 | 525 | 0 | 219 | 744 |
28
+ | lib | 28 | 7,986 | 2,589 | 725 | 11,300 |
29
+ | lib (Files) | 22 | 7,358 | 2,310 | 633 | 10,301 |
30
+ | lib\net | 3 | 199 | 129 | 50 | 378 |
31
+ | lib\ssh | 2 | 428 | 150 | 42 | 620 |
32
+ | lib\text | 1 | 1 | 0 | 0 | 1 |
33
+ | sys | 7 | 3,997 | 909 | 234 | 5,140 |
34
+ | types | 1 | 187 | 36 | 46 | 269 |
35
+ | www | 17 | 2,946 | 74 | 449 | 3,469 |
36
+ | www\default | 17 | 2,946 | 74 | 449 | 3,469 |
37
+ | www\default (Files) | 2 | 30 | 0 | 0 | 30 |
38
+ | www\default\ctr | 3 | 2,780 | 46 | 402 | 3,228 |
39
+ | www\default\data | 5 | 33 | 0 | 0 | 33 |
40
+ | www\default\data\locale | 5 | 33 | 0 | 0 | 33 |
41
+ | www\default\mod | 2 | 26 | 26 | 27 | 79 |
42
+ | www\default\view | 1 | 11 | 0 | 0 | 11 |
43
+ | www\default\ws | 4 | 66 | 2 | 20 | 88 |
44
+ +-----------------------------------------------------------------------+------------+------------+------------+------------+------------+
45
+
46
+ Files
47
+ +-----------------------------------------------------------------------+--------------------+------------+------------+------------+------------+
48
+ | filename | language | code | comment | blank | total |
49
+ +-----------------------------------------------------------------------+--------------------+------------+------------+------------+------------+
50
+ | d:\sync\www\project\maiyun\Kebab\README.md | Markdown | 134 | 0 | 67 | 201 |
51
+ | d:\sync\www\project\maiyun\Kebab\conf\cert.json | JSON | 6 | 0 | 0 | 6 |
52
+ | d:\sync\www\project\maiyun\Kebab\conf\config.json | JSON | 67 | 0 | 1 | 68 |
53
+ | d:\sync\www\project\maiyun\Kebab\conf\vhost\default.json | JSON | 8 | 0 | 0 | 8 |
54
+ | d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.md | Markdown | 85 | 0 | 28 | 113 |
55
+ | d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.sc.md | Markdown | 85 | 0 | 28 | 113 |
56
+ | d:\sync\www\project\maiyun\Kebab\doc\CHANGELOG.tc.md | Markdown | 85 | 0 | 28 | 113 |
57
+ | d:\sync\www\project\maiyun\Kebab\doc\README.sc.md | Markdown | 134 | 0 | 67 | 201 |
58
+ | d:\sync\www\project\maiyun\Kebab\doc\README.tc.md | Markdown | 135 | 0 | 68 | 203 |
59
+ | d:\sync\www\project\maiyun\Kebab\doc\icon.svg | XML | 1 | 0 | 0 | 1 |
60
+ | d:\sync\www\project\maiyun\Kebab\eslint.config.js | JavaScript | 23 | 1 | 1 | 25 |
61
+ | d:\sync\www\project\maiyun\Kebab\index.ts | TypeScript | 13 | 12 | 3 | 28 |
62
+ | d:\sync\www\project\maiyun\Kebab\lib\buffer.ts | TypeScript | 103 | 25 | 25 | 153 |
63
+ | d:\sync\www\project\maiyun\Kebab\lib\captcha.ts | TypeScript | 34 | 20 | 10 | 64 |
64
+ | d:\sync\www\project\maiyun\Kebab\lib\consistent.ts | TypeScript | 142 | 59 | 19 | 220 |
65
+ | d:\sync\www\project\maiyun\Kebab\lib\core.ts | TypeScript | 668 | 184 | 40 | 892 |
66
+ | d:\sync\www\project\maiyun\Kebab\lib\crypto.ts | TypeScript | 246 | 115 | 24 | 385 |
67
+ | d:\sync\www\project\maiyun\Kebab\lib\db.ts | TypeScript | 529 | 133 | 58 | 720 |
68
+ | d:\sync\www\project\maiyun\Kebab\lib\dns.ts | TypeScript | 328 | 63 | 19 | 410 |
69
+ | d:\sync\www\project\maiyun\Kebab\lib\fs.ts | TypeScript | 389 | 118 | 21 | 528 |
70
+ | d:\sync\www\project\maiyun\Kebab\lib\jwt.ts | TypeScript | 203 | 52 | 22 | 277 |
71
+ | d:\sync\www\project\maiyun\Kebab\lib\kv.ts | TypeScript | 1,001 | 381 | 108 | 1,490 |
72
+ | d:\sync\www\project\maiyun\Kebab\lib\lan.ts | TypeScript | 69 | 4 | 3 | 76 |
73
+ | d:\sync\www\project\maiyun\Kebab\lib\net.ts | TypeScript | 497 | 152 | 24 | 673 |
74
+ | d:\sync\www\project\maiyun\Kebab\lib\net\formdata.ts | TypeScript | 104 | 46 | 17 | 167 |
75
+ | d:\sync\www\project\maiyun\Kebab\lib\net\request.ts | TypeScript | 68 | 62 | 21 | 151 |
76
+ | d:\sync\www\project\maiyun\Kebab\lib\net\response.ts | TypeScript | 27 | 21 | 12 | 60 |
77
+ | d:\sync\www\project\maiyun\Kebab\lib\s3.ts | TypeScript | 170 | 58 | 18 | 246 |
78
+ | d:\sync\www\project\maiyun\Kebab\lib\scan.ts | TypeScript | 256 | 86 | 23 | 365 |
79
+ | d:\sync\www\project\maiyun\Kebab\lib\session.ts | TypeScript | 154 | 55 | 22 | 231 |
80
+ | d:\sync\www\project\maiyun\Kebab\lib\sql.ts | TypeScript | 815 | 281 | 49 | 1,145 |
81
+ | d:\sync\www\project\maiyun\Kebab\lib\ssh.ts | TypeScript | 143 | 34 | 15 | 192 |
82
+ | d:\sync\www\project\maiyun\Kebab\lib\ssh\sftp.ts | TypeScript | 367 | 113 | 29 | 509 |
83
+ | d:\sync\www\project\maiyun\Kebab\lib\ssh\shell.ts | TypeScript | 61 | 37 | 13 | 111 |
84
+ | d:\sync\www\project\maiyun\Kebab\lib\text.ts | TypeScript | 399 | 170 | 38 | 607 |
85
+ | d:\sync\www\project\maiyun\Kebab\lib\text\tld.json | JSON | 1 | 0 | 0 | 1 |
86
+ | d:\sync\www\project\maiyun\Kebab\lib\time.ts | TypeScript | 180 | 58 | 17 | 255 |
87
+ | d:\sync\www\project\maiyun\Kebab\lib\ws.ts | TypeScript | 431 | 107 | 35 | 573 |
88
+ | d:\sync\www\project\maiyun\Kebab\lib\zip.ts | TypeScript | 350 | 75 | 23 | 448 |
89
+ | d:\sync\www\project\maiyun\Kebab\lib\zlib.ts | TypeScript | 251 | 80 | 20 | 351 |
90
+ | d:\sync\www\project\maiyun\Kebab\package.json | JSON | 23 | 0 | 1 | 24 |
91
+ | d:\sync\www\project\maiyun\Kebab\sys\child.ts | TypeScript | 554 | 104 | 16 | 674 |
92
+ | d:\sync\www\project\maiyun\Kebab\sys\cmd.ts | TypeScript | 53 | 14 | 5 | 72 |
93
+ | d:\sync\www\project\maiyun\Kebab\sys\ctr.ts | TypeScript | 638 | 196 | 77 | 911 |
94
+ | d:\sync\www\project\maiyun\Kebab\sys\def.ts | TypeScript | 12 | 9 | 5 | 26 |
95
+ | d:\sync\www\project\maiyun\Kebab\sys\master.ts | TypeScript | 390 | 83 | 12 | 485 |
96
+ | d:\sync\www\project\maiyun\Kebab\sys\mod.ts | TypeScript | 1,436 | 335 | 85 | 1,856 |
97
+ | d:\sync\www\project\maiyun\Kebab\sys\route.ts | TypeScript | 914 | 168 | 34 | 1,116 |
98
+ | d:\sync\www\project\maiyun\Kebab\tsconfig.json | JSON with Comments | 30 | 1 | 0 | 31 |
99
+ | d:\sync\www\project\maiyun\Kebab\types\index.d.ts | TypeScript | 187 | 36 | 46 | 269 |
100
+ | d:\sync\www\project\maiyun\Kebab\www\default\ctr\main.ts | TypeScript | 6 | 0 | 4 | 10 |
101
+ | d:\sync\www\project\maiyun\Kebab\www\default\ctr\middle.ts | TypeScript | 22 | 0 | 5 | 27 |
102
+ | d:\sync\www\project\maiyun\Kebab\www\default\ctr\test.ts | TypeScript | 2,752 | 46 | 393 | 3,191 |
103
+ | d:\sync\www\project\maiyun\Kebab\www\default\data\locale\en.test.json | JSON | 8 | 0 | 0 | 8 |
104
+ | d:\sync\www\project\maiyun\Kebab\www\default\data\locale\index.html | HTML | 1 | 0 | 0 | 1 |
105
+ | d:\sync\www\project\maiyun\Kebab\www\default\data\locale\ja.test.json | JSON | 8 | 0 | 0 | 8 |
106
+ | d:\sync\www\project\maiyun\Kebab\www\default\data\locale\sc.test.json | JSON | 8 | 0 | 0 | 8 |
107
+ | d:\sync\www\project\maiyun\Kebab\www\default\data\locale\tc.test.json | JSON | 8 | 0 | 0 | 8 |
108
+ | d:\sync\www\project\maiyun\Kebab\www\default\kebab.json | JSON | 24 | 0 | 0 | 24 |
109
+ | d:\sync\www\project\maiyun\Kebab\www\default\mod\test.ts | TypeScript | 17 | 15 | 16 | 48 |
110
+ | d:\sync\www\project\maiyun\Kebab\www\default\mod\testdata.ts | TypeScript | 9 | 11 | 11 | 31 |
111
+ | d:\sync\www\project\maiyun\Kebab\www\default\route.json | JSON | 6 | 0 | 0 | 6 |
112
+ | d:\sync\www\project\maiyun\Kebab\www\default\view\test.ejs | HTML | 11 | 0 | 0 | 11 |
113
+ | d:\sync\www\project\maiyun\Kebab\www\default\ws\irp.ts | TypeScript | 13 | 1 | 5 | 19 |
114
+ | d:\sync\www\project\maiyun\Kebab\www\default\ws\mproxy.ts | TypeScript | 13 | 0 | 4 | 17 |
115
+ | d:\sync\www\project\maiyun\Kebab\www\default\ws\rproxy.ts | TypeScript | 11 | 0 | 4 | 15 |
116
+ | d:\sync\www\project\maiyun\Kebab\www\default\ws\test.ts | TypeScript | 29 | 1 | 7 | 37 |
117
+ | Total | | 15,945 | 3,622 | 1,746 | 21,313 |
118
+ +-----------------------------------------------------------------------+--------------------+------------+------------+------------+------------+
@@ -0,0 +1,15 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "typescript",
6
+ "tsconfig": "tsconfig.json",
7
+ "option": "watch",
8
+ "problemMatcher": [
9
+ "$tsc-watch"
10
+ ],
11
+ "group": "build",
12
+ "label": "tsc: watch - tsconfig.json"
13
+ }
14
+ ]
15
+ }