@wcj/github-rank 22.3.18 → 22.3.21

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 (38) hide show
  1. package/dist/repos.json +37059 -36963
  2. package/dist/sifou-daily.json +60 -105
  3. package/dist/sifou-monthly.json +103 -103
  4. package/dist/sifou-weekly.json +156 -156
  5. package/dist/toutiao-30.json +91 -91
  6. package/dist/toutiao-7.json +108 -108
  7. package/dist/toutiao-90.json +37 -37
  8. package/dist/trending-daily.json +171 -171
  9. package/dist/trending-monthly.json +160 -160
  10. package/dist/trending-weekly.json +154 -154
  11. package/dist/users.china.json +2441 -2441
  12. package/dist/users.json +3264 -3265
  13. package/package.json +1 -1
  14. package/web/36kr.html +35 -13
  15. package/web/data/repos.json +37059 -36963
  16. package/web/data/sifou-daily.json +60 -105
  17. package/web/data/sifou-monthly.json +103 -103
  18. package/web/data/sifou-weekly.json +156 -156
  19. package/web/data/toutiao-30.json +91 -91
  20. package/web/data/toutiao-7.json +108 -108
  21. package/web/data/toutiao-90.json +37 -37
  22. package/web/data/trending-daily.json +171 -171
  23. package/web/data/trending-monthly.json +160 -160
  24. package/web/data/trending-weekly.json +154 -154
  25. package/web/data/users.china.json +2441 -2441
  26. package/web/data/users.json +3264 -3265
  27. package/web/index.html +1703 -1681
  28. package/web/repos.html +4112 -4094
  29. package/web/sifou-daily.html +85 -203
  30. package/web/sifou-monthly.html +160 -138
  31. package/web/sifou-weekly.html +174 -152
  32. package/web/toutiao-30.html +130 -108
  33. package/web/toutiao-7.html +105 -83
  34. package/web/toutiao-90.html +85 -63
  35. package/web/trending-monthly.html +181 -155
  36. package/web/trending-weekly.html +176 -146
  37. package/web/trending.html +185 -163
  38. package/web/users.china.html +1318 -1296
@@ -7,41 +7,63 @@
7
7
  <link rel="icon" type="image/x-icon" href="https://github.githubassets.com/favicon.ico">
8
8
  <title> GitHub Repositories Trending </title>
9
9
  <meta name="description" content="GitHub Repositories Trending">
10
+ <style>
11
+ [data-color-mode*='dark'] {
12
+ --color-fg-default: #c9d1d9;
13
+ --color-fg-muted: #8b949e;
14
+ --color-fg-subtle: #484f58;
15
+ --color-accent-fg: #58a6ff;
16
+ --color-accent-emphasis: #1f6feb;
17
+ --color-link-hover: #58a6ff;
18
+ --color-tab-fg: #494949;
19
+ --color-border: #e2e2e2;
20
+ --color-neutral-muted: rgba(110,118,129,0.4);
21
+ }
22
+ [data-color-mode*='light'] {
23
+ --color-fg-default: #24292f;
24
+ --color-fg-muted: #57606a;
25
+ --color-fg-subtle: #6e7781;
26
+ --color-accent-fg: #0969da;
27
+ --color-accent-emphasis: #0969da;
28
+ --color-link-hover: #58a6ff;
29
+ --color-tab-fg: #e2e2e2;
30
+ --color-border: #000;
31
+ --color-neutral-muted: rgba(175,184,193,0.2);
32
+ }
33
+ </style>
10
34
  <style>
11
35
  * { box-sizing: border-box; }
12
36
  html, body, ul, li, h1 { margin: 0; padding: 0 }
13
37
  html, body { font-size: 16px; font-family: -apple-system,"Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","WenQuanYi Micro Hei","Microsoft Yahei",sans-serif; }
14
38
  ul { list-style: none; }
15
39
 
16
- a { color: #333; text-decoration: none; transition: all .2s ease-in; }
17
- a:hover { color: #1600ff; }
40
+ a { color: var(--color-accent-fg); text-decoration: none; transition: all .2s ease-in; }
41
+ a:hover { color: var(--color-link-hover); text-decoration: underline; }
18
42
  a.github-corner:hover .octo-arm { animation: octocat-wave 560ms infinite linear; }
19
43
  a.github-corner svg { fill: #f1f1f1; color: #000; position: absolute; top: 0; border: 0; right: 0; z-index: 99; width: 70px; height: 70px; }
20
44
  a.github-corner { position: fixed; z-index: 9999; top: 0; right: 0; }
21
45
 
22
46
  .title { padding: 32px 20px 10px 20px; font-size: 32px; display: flex; }
23
47
  .title a svg { display: block; }
24
- .title a { color: #0059ff; display: inline-block; margin-left: 10px; }
48
+ .title a { color: var(--color-accent-fg); display: inline-block; margin-left: 10px; }
25
49
  .time, .footer { padding: 5px 20px 2px 20px; font-size: 12px; color: #adadad; }
26
50
  .tabs { padding: 0 20px 5px 20px;}
27
- .tabs a { background: #e2e2e2; display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: #0366d6; }
51
+ .tabs a { background: var(--color-tab-fg); display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: var(--color-accent-fg); }
28
52
  .tabs a.active { background: #333; color: #efefef; }
29
53
  .tabs a:hover:not(.active) { background: #efefef; }
30
54
  .footer { padding: 0 20px 30px 20px; font-size: 12px; color: #adadad; }
31
55
  .footer .time { padding: 0; }
32
56
  .list { text-align: left; padding-bottom: 10px; margin: 0 15px; }
33
57
  .list img { width: 36px; height: 36px; border-radius: 3px; display: block; margin: 0 auto; background-color: #e2e2e2; border: 0; overflow: hidden; }
34
- .list a { color: #0366d6; }
35
- .list a:hover { color: #1600ff; }
36
58
  .list li { padding: 10px; transition: all .3s; }
37
59
  .list li.rank-title { margin: 0; padding: 3px 0 0 7px; margin-bottom: 10px; border-radius: 5px; font-size: 12px; line-height: 16px; }
38
60
  .list li.rank-title > a { margin-right: 10px; }
39
61
  .list li.rank-title:hover { background: transparent; }
40
62
  .list li:last-child, .list li.rank-title { border-bottom: 0; }
41
- .list li:hover { background: #efefef8f; }
63
+ .list li:hover { background: var(--color-neutral-muted); }
42
64
  .list li > div { display: table-cell; vertical-align: top; font-size: 14px; }
43
65
  .list li div.rank span { font-weight: bold; }
44
- .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: #b9b9b9; }
66
+ .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: var(--color-fg-muted); }
45
67
  .list li div.details a { color: #b9b9b9; transition: all .3s; }
46
68
  .list li div.details a:hover { color: #1600ff; }
47
69
  .list li div.details a:hover svg { fill: #1600ff; }
@@ -51,19 +73,19 @@
51
73
  .list li > div.info { width: 100%; }
52
74
  .list li > div.info i { color: #717171; }
53
75
  .list li > div.info a:hover i { color: #333; }
54
- .list li div.sub-title { color: #333; margin: 4px 0 0 0; }
76
+ .list li div.sub-title { color: var(--color-theme-text); margin: 4px 0 0 0; }
55
77
  .list li div.avatar { padding-right: 10px; }
56
78
 
57
79
  .list li a.language,
58
- .list li span.star { height: 18px; background: #e2e2e2; display: inline-block; padding: 2px 4px; border-radius: 3px; }
80
+ .list li span.star { height: 18px; background: var(--color-neutral-muted); display: inline-block; padding: 2px 4px; border-radius: 3px; }
59
81
 
60
82
 
61
83
  .list .select { }
62
- .list .select .active { color: #333; font-weight: bold; border-bottom: 1px dotted #000;}
84
+ .list .select .active { color: var(--color-theme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
63
85
 
64
86
 
65
- .list li div.followers { font-size: 12px; color: #7d7d7d; white-space:nowrap; padding-top: 2px; border-radius: 3px; }
66
- .list li div.followers a { color: #545454; }
87
+ .list li div.followers { font-size: 12px; color: var(--color-fg-muted); white-space:nowrap; padding-top: 2px; border-radius: 3px; }
88
+ .list li div.followers a { color: var(--color-fg-muted); }
67
89
  .list li div.followers * { vertical-align: middle; }
68
90
  .list li div.followers svg { vertical-align: text-top; display: inline-block; fill: #9E9E9E; width: 14px; height: 14px; }
69
91
 
@@ -78,8 +100,7 @@
78
100
  .title { padding-top: 16px; font-size: 21px; }
79
101
  }
80
102
  </style>
81
- <style>
82
- </style>
103
+ <script src="https://unpkg.com/@wcj/dark-mode"></script>
83
104
  </head>
84
105
  <body>
85
106
  <a href="https://github.com/jaywcjlove/github-rank" target="_blank" class="github-corner">
@@ -90,6 +111,7 @@
90
111
  </svg>
91
112
  </a>
92
113
  <h1 class="title">
114
+ <dark-mode permanent></dark-mode>
93
115
  GitHub Repositories Trending
94
116
 
95
117
 
@@ -102,7 +124,7 @@
102
124
 
103
125
 
104
126
  </h1>
105
- <div class="time">Last cache created on 2022/3/18 by
127
+ <div class="time">Last cache created on 2022/3/21 by
106
128
 
107
129
 
108
130
 
@@ -145,20 +167,20 @@
145
167
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
146
168
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
147
169
  </svg>
148
- <span>3030</span>
170
+ <span>3161</span>
149
171
  </span>
150
172
  <span class="star" title="Repo Forked">
151
173
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
152
174
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
153
175
  </path>
154
176
  </svg>
155
- <span>709</span>
177
+ <span>734</span>
156
178
  </span>
157
179
  <span class="star">
158
180
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
159
181
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
160
182
  </svg>
161
- <span>2225 stars this month</span>
183
+ <span>2343 stars this month</span>
162
184
  </span>
163
185
  </div>
164
186
  <div class="details">
@@ -171,32 +193,32 @@
171
193
  <div class="info">
172
194
  <div class="rank">
173
195
  <span title="Ranking 2">2</span>
174
- <a href="https://github.com/doocs/advanced-java" target="_blank" title="doocs/advanced-java">doocs/advanced-java</a>
196
+ <a href="https://github.com/alibaba/lowcode-engine" target="_blank" title="alibaba/lowcode-engine">alibaba/lowcode-engine</a>
175
197
  </div>
176
198
  <div class="sub-title followers">
177
199
 
178
- <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
179
- <span style="background-color: #b07219;"></span>Java
200
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
201
+ <span style="background-color: #2b7489;"></span>TypeScript
180
202
  </a>
181
203
 
182
204
  <span class="star" title="Stargazers Count">
183
205
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
184
206
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
185
207
  </svg>
186
- <span>61731</span>
208
+ <span>2237</span>
187
209
  </span>
188
210
  <span class="star" title="Repo Forked">
189
211
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
190
212
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
191
213
  </path>
192
214
  </svg>
193
- <span>16806</span>
215
+ <span>270</span>
194
216
  </span>
195
217
  <span class="star">
196
218
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
197
219
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
198
220
  </svg>
199
- <span>1796 stars this month</span>
221
+ <span>1644 stars this month</span>
200
222
  </span>
201
223
  </div>
202
224
  <div class="details">
@@ -209,32 +231,32 @@
209
231
  <div class="info">
210
232
  <div class="rank">
211
233
  <span title="Ranking 3">3</span>
212
- <a href="https://github.com/microsoft/Web-Dev-For-Beginners" target="_blank" title="microsoft/Web-Dev-For-Beginners">microsoft/Web-Dev-For-Beginners</a>
234
+ <a href="https://github.com/lapce/lapce" target="_blank" title="lapce/lapce">lapce/lapce</a>
213
235
  </div>
214
236
  <div class="sub-title followers">
215
237
 
216
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
217
- <span style="background-color: #f1e05a;"></span>JavaScript
238
+ <a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
239
+ <span style="background-color: #dea584;"></span>Rust
218
240
  </a>
219
241
 
220
242
  <span class="star" title="Stargazers Count">
221
243
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
222
244
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
223
245
  </svg>
224
- <span>44419</span>
246
+ <span>8045</span>
225
247
  </span>
226
248
  <span class="star" title="Repo Forked">
227
249
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
228
250
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
229
251
  </path>
230
252
  </svg>
231
- <span>6405</span>
253
+ <span>190</span>
232
254
  </span>
233
255
  <span class="star">
234
256
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
235
257
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
236
258
  </svg>
237
- <span>3878 stars this month</span>
259
+ <span>3717 stars this month</span>
238
260
  </span>
239
261
  </div>
240
262
  <div class="details">
@@ -247,28 +269,32 @@
247
269
  <div class="info">
248
270
  <div class="rank">
249
271
  <span title="Ranking 4">4</span>
250
- <a href="https://github.com/EbookFoundation/free-programming-books" target="_blank" title="EbookFoundation/free-programming-books">EbookFoundation/free-programming-books</a>
272
+ <a href="https://github.com/microsoft/Web-Dev-For-Beginners" target="_blank" title="microsoft/Web-Dev-For-Beginners">microsoft/Web-Dev-For-Beginners</a>
251
273
  </div>
252
274
  <div class="sub-title followers">
253
275
 
276
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
277
+ <span style="background-color: #f1e05a;"></span>JavaScript
278
+ </a>
279
+
254
280
  <span class="star" title="Stargazers Count">
255
281
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
256
282
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
257
283
  </svg>
258
- <span>226654</span>
284
+ <span>44572</span>
259
285
  </span>
260
286
  <span class="star" title="Repo Forked">
261
287
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
262
288
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
263
289
  </path>
264
290
  </svg>
265
- <span>47888</span>
291
+ <span>6425</span>
266
292
  </span>
267
293
  <span class="star">
268
294
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
269
295
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
270
296
  </svg>
271
- <span>5202 stars this month</span>
297
+ <span>3910 stars this month</span>
272
298
  </span>
273
299
  </div>
274
300
  <div class="details">
@@ -281,32 +307,28 @@
281
307
  <div class="info">
282
308
  <div class="rank">
283
309
  <span title="Ranking 5">5</span>
284
- <a href="https://github.com/mermaid-js/mermaid" target="_blank" title="mermaid-js/mermaid">mermaid-js/mermaid</a>
310
+ <a href="https://github.com/EbookFoundation/free-programming-books" target="_blank" title="EbookFoundation/free-programming-books">EbookFoundation/free-programming-books</a>
285
311
  </div>
286
312
  <div class="sub-title followers">
287
313
 
288
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
289
- <span style="background-color: #f1e05a;"></span>JavaScript
290
- </a>
291
-
292
314
  <span class="star" title="Stargazers Count">
293
315
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
294
316
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
295
317
  </svg>
296
- <span>45381</span>
318
+ <span>226985</span>
297
319
  </span>
298
320
  <span class="star" title="Repo Forked">
299
321
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
300
322
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
301
323
  </path>
302
324
  </svg>
303
- <span>3301</span>
325
+ <span>47935</span>
304
326
  </span>
305
327
  <span class="star">
306
328
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
307
329
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
308
330
  </svg>
309
- <span>2691 stars this month</span>
331
+ <span>5235 stars this month</span>
310
332
  </span>
311
333
  </div>
312
334
  <div class="details">
@@ -331,20 +353,20 @@
331
353
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
332
354
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
333
355
  </svg>
334
- <span>9269</span>
356
+ <span>9400</span>
335
357
  </span>
336
358
  <span class="star" title="Repo Forked">
337
359
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
338
360
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
339
361
  </path>
340
362
  </svg>
341
- <span>436</span>
363
+ <span>442</span>
342
364
  </span>
343
365
  <span class="star">
344
366
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
345
367
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
346
368
  </svg>
347
- <span>2297 stars this month</span>
369
+ <span>2170 stars this month</span>
348
370
  </span>
349
371
  </div>
350
372
  <div class="details">
@@ -357,28 +379,32 @@
357
379
  <div class="info">
358
380
  <div class="rank">
359
381
  <span title="Ranking 7">7</span>
360
- <a href="https://github.com/danistefanovic/build-your-own-x" target="_blank" title="danistefanovic/build-your-own-x">danistefanovic/build-your-own-x</a>
382
+ <a href="https://github.com/BishopFox/unredacter" target="_blank" title="BishopFox/unredacter">BishopFox/unredacter</a>
361
383
  </div>
362
384
  <div class="sub-title followers">
363
385
 
386
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
387
+ <span style="background-color: #2b7489;"></span>TypeScript
388
+ </a>
389
+
364
390
  <span class="star" title="Stargazers Count">
365
391
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
366
392
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
367
393
  </svg>
368
- <span>135694</span>
394
+ <span>4414</span>
369
395
  </span>
370
396
  <span class="star" title="Repo Forked">
371
397
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
372
398
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
373
399
  </path>
374
400
  </svg>
375
- <span>12869</span>
401
+ <span>425</span>
376
402
  </span>
377
403
  <span class="star">
378
404
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
379
405
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
380
406
  </svg>
381
- <span>5532 stars this month</span>
407
+ <span>1966 stars this month</span>
382
408
  </span>
383
409
  </div>
384
410
  <div class="details">
@@ -391,32 +417,32 @@
391
417
  <div class="info">
392
418
  <div class="rank">
393
419
  <span title="Ranking 8">8</span>
394
- <a href="https://github.com/iamadamdev/bypass-paywalls-chrome" target="_blank" title="iamadamdev/bypass-paywalls-chrome">iamadamdev/bypass-paywalls-chrome</a>
420
+ <a href="https://github.com/doocs/advanced-java" target="_blank" title="doocs/advanced-java">doocs/advanced-java</a>
395
421
  </div>
396
422
  <div class="sub-title followers">
397
423
 
398
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
399
- <span style="background-color: #f1e05a;"></span>JavaScript
424
+ <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
425
+ <span style="background-color: #b07219;"></span>Java
400
426
  </a>
401
427
 
402
428
  <span class="star" title="Stargazers Count">
403
429
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
404
430
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
405
431
  </svg>
406
- <span>24110</span>
432
+ <span>61801</span>
407
433
  </span>
408
434
  <span class="star" title="Repo Forked">
409
435
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
410
436
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
411
437
  </path>
412
438
  </svg>
413
- <span>1726</span>
439
+ <span>16827</span>
414
440
  </span>
415
441
  <span class="star">
416
442
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
417
443
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
418
444
  </svg>
419
- <span>2071 stars this month</span>
445
+ <span>1545 stars this month</span>
420
446
  </span>
421
447
  </div>
422
448
  <div class="details">
@@ -429,32 +455,32 @@
429
455
  <div class="info">
430
456
  <div class="rank">
431
457
  <span title="Ranking 9">9</span>
432
- <a href="https://github.com/hoppscotch/hoppscotch" target="_blank" title="hoppscotch/hoppscotch">hoppscotch/hoppscotch</a>
458
+ <a href="https://github.com/peng-zhihui/Dummy-Robot" target="_blank" title="peng-zhihui/Dummy-Robot">peng-zhihui/Dummy-Robot</a>
433
459
  </div>
434
460
  <div class="sub-title followers">
435
461
 
436
- <a class="language" target="_blank" href="https://github.com/topics/vue" title="Programming Language Vue">
437
- <span style="background-color: #41b883;"></span>Vue
462
+ <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
463
+ <span style="background-color: #555555;"></span>C
438
464
  </a>
439
465
 
440
466
  <span class="star" title="Stargazers Count">
441
467
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
442
468
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
443
469
  </svg>
444
- <span>38978</span>
470
+ <span>6731</span>
445
471
  </span>
446
472
  <span class="star" title="Repo Forked">
447
473
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
448
474
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
449
475
  </path>
450
476
  </svg>
451
- <span>2722</span>
477
+ <span>1320</span>
452
478
  </span>
453
479
  <span class="star">
454
480
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
455
481
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
456
482
  </svg>
457
- <span>2695 stars this month</span>
483
+ <span>821 stars this month</span>
458
484
  </span>
459
485
  </div>
460
486
  <div class="details">
@@ -467,32 +493,32 @@
467
493
  <div class="info">
468
494
  <div class="rank">
469
495
  <span title="Ranking 10">10</span>
470
- <a href="https://github.com/lapce/lapce" target="_blank" title="lapce/lapce">lapce/lapce</a>
496
+ <a href="https://github.com/hoppscotch/hoppscotch" target="_blank" title="hoppscotch/hoppscotch">hoppscotch/hoppscotch</a>
471
497
  </div>
472
498
  <div class="sub-title followers">
473
499
 
474
- <a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
475
- <span style="background-color: #dea584;"></span>Rust
500
+ <a class="language" target="_blank" href="https://github.com/topics/vue" title="Programming Language Vue">
501
+ <span style="background-color: #41b883;"></span>Vue
476
502
  </a>
477
503
 
478
504
  <span class="star" title="Stargazers Count">
479
505
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
480
506
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
481
507
  </svg>
482
- <span>6874</span>
508
+ <span>39153</span>
483
509
  </span>
484
510
  <span class="star" title="Repo Forked">
485
511
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
486
512
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
487
513
  </path>
488
514
  </svg>
489
- <span>158</span>
515
+ <span>2729</span>
490
516
  </span>
491
517
  <span class="star">
492
518
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
493
519
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
494
520
  </svg>
495
- <span>2540 stars this month</span>
521
+ <span>2800 stars this month</span>
496
522
  </span>
497
523
  </div>
498
524
  <div class="details">
@@ -505,32 +531,32 @@
505
531
  <div class="info">
506
532
  <div class="rank">
507
533
  <span title="Ranking 11">11</span>
508
- <a href="https://github.com/huihut/interview" target="_blank" title="huihut/interview">huihut/interview</a>
534
+ <a href="https://github.com/iamadamdev/bypass-paywalls-chrome" target="_blank" title="iamadamdev/bypass-paywalls-chrome">iamadamdev/bypass-paywalls-chrome</a>
509
535
  </div>
510
536
  <div class="sub-title followers">
511
537
 
512
- <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
513
- <span style="background-color: #f34b7d;"></span>C++
538
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
539
+ <span style="background-color: #f1e05a;"></span>JavaScript
514
540
  </a>
515
541
 
516
542
  <span class="star" title="Stargazers Count">
517
543
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
518
544
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
519
545
  </svg>
520
- <span>23158</span>
546
+ <span>24206</span>
521
547
  </span>
522
548
  <span class="star" title="Repo Forked">
523
549
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
524
550
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
525
551
  </path>
526
552
  </svg>
527
- <span>6388</span>
553
+ <span>1738</span>
528
554
  </span>
529
555
  <span class="star">
530
556
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
531
557
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
532
558
  </svg>
533
- <span>852 stars this month</span>
559
+ <span>2104 stars this month</span>
534
560
  </span>
535
561
  </div>
536
562
  <div class="details">
@@ -543,7 +569,7 @@
543
569
  <div class="info">
544
570
  <div class="rank">
545
571
  <span title="Ranking 12">12</span>
546
- <a href="https://github.com/vuejs/core" target="_blank" title="vuejs/core">vuejs/core</a>
572
+ <a href="https://github.com/withfig/autocomplete" target="_blank" title="withfig/autocomplete">withfig/autocomplete</a>
547
573
  </div>
548
574
  <div class="sub-title followers">
549
575
 
@@ -555,20 +581,20 @@
555
581
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
556
582
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
557
583
  </svg>
558
- <span>28380</span>
584
+ <span>12971</span>
559
585
  </span>
560
586
  <span class="star" title="Repo Forked">
561
587
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
562
588
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
563
589
  </path>
564
590
  </svg>
565
- <span>5061</span>
591
+ <span>3145</span>
566
592
  </span>
567
593
  <span class="star">
568
594
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
569
595
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
570
596
  </svg>
571
- <span>914 stars this month</span>
597
+ <span>2034 stars this month</span>
572
598
  </span>
573
599
  </div>
574
600
  <div class="details">
@@ -581,32 +607,32 @@
581
607
  <div class="info">
582
608
  <div class="rank">
583
609
  <span title="Ranking 13">13</span>
584
- <a href="https://github.com/ocornut/imgui" target="_blank" title="ocornut/imgui">ocornut/imgui</a>
610
+ <a href="https://github.com/OpenIMSDK/Open-IM-Server" target="_blank" title="OpenIMSDK/Open-IM-Server">OpenIMSDK/Open-IM-Server</a>
585
611
  </div>
586
612
  <div class="sub-title followers">
587
613
 
588
- <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
589
- <span style="background-color: #f34b7d;"></span>C++
614
+ <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
615
+ <span style="background-color: #00ADD8;"></span>Go
590
616
  </a>
591
617
 
592
618
  <span class="star" title="Stargazers Count">
593
619
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
594
620
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
595
621
  </svg>
596
- <span>36512</span>
622
+ <span>6937</span>
597
623
  </span>
598
624
  <span class="star" title="Repo Forked">
599
625
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
600
626
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
601
627
  </path>
602
628
  </svg>
603
- <span>6306</span>
629
+ <span>1051</span>
604
630
  </span>
605
631
  <span class="star">
606
632
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
607
633
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
608
634
  </svg>
609
- <span>1168 stars this month</span>
635
+ <span>487 stars this month</span>
610
636
  </span>
611
637
  </div>
612
638
  <div class="details">
@@ -619,32 +645,32 @@
619
645
  <div class="info">
620
646
  <div class="rank">
621
647
  <span title="Ranking 14">14</span>
622
- <a href="https://github.com/mdn/content" target="_blank" title="mdn/content">mdn/content</a>
648
+ <a href="https://github.com/facebook/react" target="_blank" title="facebook/react">facebook/react</a>
623
649
  </div>
624
650
  <div class="sub-title followers">
625
651
 
626
- <a class="language" target="_blank" href="https://github.com/topics/html" title="Programming Language HTML">
627
- <span style="background-color: #e34c26;"></span>HTML
652
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
653
+ <span style="background-color: #f1e05a;"></span>JavaScript
628
654
  </a>
629
655
 
630
656
  <span class="star" title="Stargazers Count">
631
657
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
632
658
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
633
659
  </svg>
634
- <span>4869</span>
660
+ <span>184589</span>
635
661
  </span>
636
662
  <span class="star" title="Repo Forked">
637
663
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
638
664
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
639
665
  </path>
640
666
  </svg>
641
- <span>7341</span>
667
+ <span>37818</span>
642
668
  </span>
643
669
  <span class="star">
644
670
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
645
671
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
646
672
  </svg>
647
- <span>617 stars this month</span>
673
+ <span>2461 stars this month</span>
648
674
  </span>
649
675
  </div>
650
676
  <div class="details">
@@ -657,32 +683,32 @@
657
683
  <div class="info">
658
684
  <div class="rank">
659
685
  <span title="Ranking 15">15</span>
660
- <a href="https://github.com/vitejs/vite" target="_blank" title="vitejs/vite">vitejs/vite</a>
686
+ <a href="https://github.com/Rapptz/discord.py" target="_blank" title="Rapptz/discord.py">Rapptz/discord.py</a>
661
687
  </div>
662
688
  <div class="sub-title followers">
663
689
 
664
- <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
665
- <span style="background-color: #2b7489;"></span>TypeScript
690
+ <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
691
+ <span style="background-color: #3572A5;"></span>Python
666
692
  </a>
667
693
 
668
694
  <span class="star" title="Stargazers Count">
669
695
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
670
696
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
671
697
  </svg>
672
- <span>39192</span>
698
+ <span>9985</span>
673
699
  </span>
674
700
  <span class="star" title="Repo Forked">
675
701
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
676
702
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
677
703
  </path>
678
704
  </svg>
679
- <span>3001</span>
705
+ <span>3255</span>
680
706
  </span>
681
707
  <span class="star">
682
708
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
683
709
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
684
710
  </svg>
685
- <span>1556 stars this month</span>
711
+ <span>597 stars this month</span>
686
712
  </span>
687
713
  </div>
688
714
  <div class="details">
@@ -695,32 +721,32 @@
695
721
  <div class="info">
696
722
  <div class="rank">
697
723
  <span title="Ranking 16">16</span>
698
- <a href="https://github.com/phil-opp/blog_os" target="_blank" title="phil-opp/blog_os">phil-opp/blog_os</a>
724
+ <a href="https://github.com/ant-design/ant-design-mobile" target="_blank" title="ant-design/ant-design-mobile">ant-design/ant-design-mobile</a>
699
725
  </div>
700
726
  <div class="sub-title followers">
701
727
 
702
- <a class="language" target="_blank" href="https://github.com/topics/html" title="Programming Language HTML">
703
- <span style="background-color: #e34c26;"></span>HTML
728
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
729
+ <span style="background-color: #2b7489;"></span>TypeScript
704
730
  </a>
705
731
 
706
732
  <span class="star" title="Stargazers Count">
707
733
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
708
734
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
709
735
  </svg>
710
- <span>9203</span>
736
+ <span>10007</span>
711
737
  </span>
712
738
  <span class="star" title="Repo Forked">
713
739
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
714
740
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
715
741
  </path>
716
742
  </svg>
717
- <span>707</span>
743
+ <span>1822</span>
718
744
  </span>
719
745
  <span class="star">
720
746
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
721
747
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
722
748
  </svg>
723
- <span>846 stars this month</span>
749
+ <span>369 stars this month</span>
724
750
  </span>
725
751
  </div>
726
752
  <div class="details">
@@ -733,32 +759,32 @@
733
759
  <div class="info">
734
760
  <div class="rank">
735
761
  <span title="Ranking 17">17</span>
736
- <a href="https://github.com/peng-zhihui/Dummy-Robot" target="_blank" title="peng-zhihui/Dummy-Robot">peng-zhihui/Dummy-Robot</a>
762
+ <a href="https://github.com/huihut/interview" target="_blank" title="huihut/interview">huihut/interview</a>
737
763
  </div>
738
764
  <div class="sub-title followers">
739
765
 
740
- <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
741
- <span style="background-color: #555555;"></span>C
766
+ <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
767
+ <span style="background-color: #f34b7d;"></span>C++
742
768
  </a>
743
769
 
744
770
  <span class="star" title="Stargazers Count">
745
771
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
746
772
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
747
773
  </svg>
748
- <span>6627</span>
774
+ <span>23227</span>
749
775
  </span>
750
776
  <span class="star" title="Repo Forked">
751
777
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
752
778
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
753
779
  </path>
754
780
  </svg>
755
- <span>1284</span>
781
+ <span>6405</span>
756
782
  </span>
757
783
  <span class="star">
758
784
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
759
785
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
760
786
  </svg>
761
- <span>732 stars this month</span>
787
+ <span>862 stars this month</span>
762
788
  </span>
763
789
  </div>
764
790
  <div class="details">
@@ -771,32 +797,32 @@
771
797
  <div class="info">
772
798
  <div class="rank">
773
799
  <span title="Ranking 18">18</span>
774
- <a href="https://github.com/YunaiV/ruoyi-vue-pro" target="_blank" title="YunaiV/ruoyi-vue-pro">YunaiV/ruoyi-vue-pro</a>
800
+ <a href="https://github.com/mdn/content" target="_blank" title="mdn/content">mdn/content</a>
775
801
  </div>
776
802
  <div class="sub-title followers">
777
803
 
778
- <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
779
- <span style="background-color: #b07219;"></span>Java
804
+ <a class="language" target="_blank" href="https://github.com/topics/html" title="Programming Language HTML">
805
+ <span style="background-color: #e34c26;"></span>HTML
780
806
  </a>
781
807
 
782
808
  <span class="star" title="Stargazers Count">
783
809
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
784
810
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
785
811
  </svg>
786
- <span>3586</span>
812
+ <span>4902</span>
787
813
  </span>
788
814
  <span class="star" title="Repo Forked">
789
815
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
790
816
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
791
817
  </path>
792
818
  </svg>
793
- <span>1222</span>
819
+ <span>7420</span>
794
820
  </span>
795
821
  <span class="star">
796
822
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
797
823
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
798
824
  </svg>
799
- <span>830 stars this month</span>
825
+ <span>636 stars this month</span>
800
826
  </span>
801
827
  </div>
802
828
  <div class="details">
@@ -809,32 +835,32 @@
809
835
  <div class="info">
810
836
  <div class="rank">
811
837
  <span title="Ranking 19">19</span>
812
- <a href="https://github.com/qiurunze123/miaosha" target="_blank" title="qiurunze123/miaosha">qiurunze123/miaosha</a>
838
+ <a href="https://github.com/gildas-lormeau/SingleFile" target="_blank" title="gildas-lormeau/SingleFile">gildas-lormeau/SingleFile</a>
813
839
  </div>
814
840
  <div class="sub-title followers">
815
841
 
816
- <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
817
- <span style="background-color: #b07219;"></span>Java
842
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
843
+ <span style="background-color: #f1e05a;"></span>JavaScript
818
844
  </a>
819
845
 
820
846
  <span class="star" title="Stargazers Count">
821
847
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
822
848
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
823
849
  </svg>
824
- <span>24124</span>
850
+ <span>7760</span>
825
851
  </span>
826
852
  <span class="star" title="Repo Forked">
827
853
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
828
854
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
829
855
  </path>
830
856
  </svg>
831
- <span>6244</span>
857
+ <span>554</span>
832
858
  </span>
833
859
  <span class="star">
834
860
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
835
861
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
836
862
  </svg>
837
- <span>551 stars this month</span>
863
+ <span>3065 stars this month</span>
838
864
  </span>
839
865
  </div>
840
866
  <div class="details">
@@ -847,32 +873,32 @@
847
873
  <div class="info">
848
874
  <div class="rank">
849
875
  <span title="Ranking 20">20</span>
850
- <a href="https://github.com/saadeghi/daisyui" target="_blank" title="saadeghi/daisyui">saadeghi/daisyui</a>
876
+ <a href="https://github.com/vuejs/vue" target="_blank" title="vuejs/vue">vuejs/vue</a>
851
877
  </div>
852
878
  <div class="sub-title followers">
853
879
 
854
- <a class="language" target="_blank" href="https://github.com/topics/svelte" title="Programming Language Svelte">
855
- <span style="background-color: #ff3e00;"></span>Svelte
880
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
881
+ <span style="background-color: #f1e05a;"></span>JavaScript
856
882
  </a>
857
883
 
858
884
  <span class="star" title="Stargazers Count">
859
885
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
860
886
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
861
887
  </svg>
862
- <span>9555</span>
888
+ <span>194263</span>
863
889
  </span>
864
890
  <span class="star" title="Repo Forked">
865
891
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
866
892
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
867
893
  </path>
868
894
  </svg>
869
- <span>376</span>
895
+ <span>31719</span>
870
896
  </span>
871
897
  <span class="star">
872
898
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
873
899
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
874
900
  </svg>
875
- <span>1583 stars this month</span>
901
+ <span>1452 stars this month</span>
876
902
  </span>
877
903
  </div>
878
904
  <div class="details">
@@ -885,32 +911,32 @@
885
911
  <div class="info">
886
912
  <div class="rank">
887
913
  <span title="Ranking 21">21</span>
888
- <a href="https://github.com/google/googletest" target="_blank" title="google/googletest">google/googletest</a>
914
+ <a href="https://github.com/trailofbits/algo" target="_blank" title="trailofbits/algo">trailofbits/algo</a>
889
915
  </div>
890
916
  <div class="sub-title followers">
891
917
 
892
- <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
893
- <span style="background-color: #f34b7d;"></span>C++
918
+ <a class="language" target="_blank" href="https://github.com/topics/jinja" title="Programming Language Jinja">
919
+ <span style="background-color: #a52a22;"></span>Jinja
894
920
  </a>
895
921
 
896
922
  <span class="star" title="Stargazers Count">
897
923
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
898
924
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
899
925
  </svg>
900
- <span>25412</span>
926
+ <span>25064</span>
901
927
  </span>
902
928
  <span class="star" title="Repo Forked">
903
929
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
904
930
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
905
931
  </path>
906
932
  </svg>
907
- <span>8375</span>
933
+ <span>2073</span>
908
934
  </span>
909
935
  <span class="star">
910
936
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
911
937
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
912
938
  </svg>
913
- <span>439 stars this month</span>
939
+ <span>492 stars this month</span>
914
940
  </span>
915
941
  </div>
916
942
  <div class="details">
@@ -923,32 +949,32 @@
923
949
  <div class="info">
924
950
  <div class="rank">
925
951
  <span title="Ranking 22">22</span>
926
- <a href="https://github.com/OpenIMSDK/Open-IM-Server" target="_blank" title="OpenIMSDK/Open-IM-Server">OpenIMSDK/Open-IM-Server</a>
952
+ <a href="https://github.com/vulhub/vulhub" target="_blank" title="vulhub/vulhub">vulhub/vulhub</a>
927
953
  </div>
928
954
  <div class="sub-title followers">
929
955
 
930
- <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
931
- <span style="background-color: #00ADD8;"></span>Go
956
+ <a class="language" target="_blank" href="https://github.com/topics/dockerfile" title="Programming Language Dockerfile">
957
+ <span style="background-color: #384d54;"></span>Dockerfile
932
958
  </a>
933
959
 
934
960
  <span class="star" title="Stargazers Count">
935
961
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
936
962
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
937
963
  </svg>
938
- <span>6871</span>
964
+ <span>9812</span>
939
965
  </span>
940
966
  <span class="star" title="Repo Forked">
941
967
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
942
968
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
943
969
  </path>
944
970
  </svg>
945
- <span>1035</span>
971
+ <span>3338</span>
946
972
  </span>
947
973
  <span class="star">
948
974
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
949
975
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
950
976
  </svg>
951
- <span>437 stars this month</span>
977
+ <span>475 stars this month</span>
952
978
  </span>
953
979
  </div>
954
980
  <div class="details">
@@ -961,32 +987,32 @@
961
987
  <div class="info">
962
988
  <div class="rank">
963
989
  <span title="Ranking 23">23</span>
964
- <a href="https://github.com/vulhub/vulhub" target="_blank" title="vulhub/vulhub">vulhub/vulhub</a>
990
+ <a href="https://github.com/vuejs/core" target="_blank" title="vuejs/core">vuejs/core</a>
965
991
  </div>
966
992
  <div class="sub-title followers">
967
993
 
968
- <a class="language" target="_blank" href="https://github.com/topics/dockerfile" title="Programming Language Dockerfile">
969
- <span style="background-color: #384d54;"></span>Dockerfile
994
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
995
+ <span style="background-color: #2b7489;"></span>TypeScript
970
996
  </a>
971
997
 
972
998
  <span class="star" title="Stargazers Count">
973
999
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
974
1000
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
975
1001
  </svg>
976
- <span>9774</span>
1002
+ <span>28460</span>
977
1003
  </span>
978
1004
  <span class="star" title="Repo Forked">
979
1005
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
980
1006
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
981
1007
  </path>
982
1008
  </svg>
983
- <span>3329</span>
1009
+ <span>5079</span>
984
1010
  </span>
985
1011
  <span class="star">
986
1012
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
987
1013
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
988
1014
  </svg>
989
- <span>460 stars this month</span>
1015
+ <span>906 stars this month</span>
990
1016
  </span>
991
1017
  </div>
992
1018
  <div class="details">
@@ -999,7 +1025,7 @@
999
1025
  <div class="info">
1000
1026
  <div class="rank">
1001
1027
  <span title="Ranking 24">24</span>
1002
- <a href="https://github.com/withfig/autocomplete" target="_blank" title="withfig/autocomplete">withfig/autocomplete</a>
1028
+ <a href="https://github.com/actions/checkout" target="_blank" title="actions/checkout">actions/checkout</a>
1003
1029
  </div>
1004
1030
  <div class="sub-title followers">
1005
1031
 
@@ -1011,20 +1037,20 @@
1011
1037
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1012
1038
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1013
1039
  </svg>
1014
- <span>12796</span>
1040
+ <span>2438</span>
1015
1041
  </span>
1016
1042
  <span class="star" title="Repo Forked">
1017
1043
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
1018
1044
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
1019
1045
  </path>
1020
1046
  </svg>
1021
- <span>3114</span>
1047
+ <span>808</span>
1022
1048
  </span>
1023
1049
  <span class="star">
1024
1050
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1025
1051
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1026
1052
  </svg>
1027
- <span>2098 stars this month</span>
1053
+ <span>156 stars this month</span>
1028
1054
  </span>
1029
1055
  </div>
1030
1056
  <div class="details">
@@ -1037,32 +1063,32 @@
1037
1063
  <div class="info">
1038
1064
  <div class="rank">
1039
1065
  <span title="Ranking 25">25</span>
1040
- <a href="https://github.com/vuejs/vue" target="_blank" title="vuejs/vue">vuejs/vue</a>
1066
+ <a href="https://github.com/vitejs/vite" target="_blank" title="vitejs/vite">vitejs/vite</a>
1041
1067
  </div>
1042
1068
  <div class="sub-title followers">
1043
1069
 
1044
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
1045
- <span style="background-color: #f1e05a;"></span>JavaScript
1070
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
1071
+ <span style="background-color: #2b7489;"></span>TypeScript
1046
1072
  </a>
1047
1073
 
1048
1074
  <span class="star" title="Stargazers Count">
1049
1075
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1050
1076
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1051
1077
  </svg>
1052
- <span>194180</span>
1078
+ <span>39289</span>
1053
1079
  </span>
1054
1080
  <span class="star" title="Repo Forked">
1055
1081
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
1056
1082
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
1057
1083
  </path>
1058
1084
  </svg>
1059
- <span>31700</span>
1085
+ <span>3018</span>
1060
1086
  </span>
1061
1087
  <span class="star">
1062
1088
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1063
1089
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1064
1090
  </svg>
1065
- <span>1448 stars this month</span>
1091
+ <span>1437 stars this month</span>
1066
1092
  </span>
1067
1093
  </div>
1068
1094
  <div class="details">
@@ -1087,7 +1113,7 @@
1087
1113
  <img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
1088
1114
  </a>
1089
1115
  </div>
1090
- <div class="time">Last cache created on 2022/3/18 by Github API v3.</div>
1116
+ <div class="time">Last cache created on 2022/3/21 by Github API v3.</div>
1091
1117
  Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
1092
1118
  </div>
1093
1119
  </body>