@wcj/github-rank 22.3.18 → 22.3.19
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.
- package/dist/repos.json +20017 -20017
- package/dist/sifou-daily.json +51 -114
- package/dist/sifou-monthly.json +67 -67
- package/dist/sifou-weekly.json +121 -121
- package/dist/toutiao-30.json +48 -48
- package/dist/toutiao-7.json +89 -89
- package/dist/toutiao-90.json +20 -20
- package/dist/trending-daily.json +173 -173
- package/dist/trending-monthly.json +159 -159
- package/dist/trending-weekly.json +160 -160
- package/dist/users.china.json +1933 -1947
- package/dist/users.json +1841 -1841
- package/package.json +1 -1
- package/web/36kr.html +35 -13
- package/web/data/repos.json +20017 -20017
- package/web/data/sifou-daily.json +51 -114
- package/web/data/sifou-monthly.json +67 -67
- package/web/data/sifou-weekly.json +121 -121
- package/web/data/toutiao-30.json +48 -48
- package/web/data/toutiao-7.json +89 -89
- package/web/data/toutiao-90.json +20 -20
- package/web/data/trending-daily.json +173 -173
- package/web/data/trending-monthly.json +159 -159
- package/web/data/trending-weekly.json +160 -160
- package/web/data/users.china.json +1933 -1947
- package/web/data/users.json +1841 -1841
- package/web/index.html +1076 -1054
- package/web/repos.html +2639 -2617
- package/web/sifou-daily.html +78 -252
- package/web/sifou-monthly.html +134 -112
- package/web/sifou-weekly.html +162 -140
- package/web/toutiao-30.html +86 -64
- package/web/toutiao-7.html +107 -85
- package/web/toutiao-90.html +56 -34
- package/web/trending-monthly.html +178 -152
- package/web/trending-weekly.html +175 -161
- package/web/trending.html +189 -163
- package/web/users.china.html +1353 -1331
|
@@ -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:
|
|
17
|
-
a:hover { color:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
76
|
+
.list li div.sub-title { color: var(--color-thme-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:
|
|
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:
|
|
84
|
+
.list .select .active { color: var(--color-thme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
|
|
63
85
|
|
|
64
86
|
|
|
65
|
-
.list li div.followers { font-size: 12px; color:
|
|
66
|
-
.list li div.followers a { color:
|
|
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
|
-
<
|
|
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/
|
|
127
|
+
<div class="time">Last cache created on 2022/3/19 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>
|
|
170
|
+
<span>3093</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>
|
|
177
|
+
<span>725</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>
|
|
183
|
+
<span>2283 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/
|
|
196
|
+
<a href="https://github.com/BishopFox/unredacter" target="_blank" title="BishopFox/unredacter">BishopFox/unredacter</a>
|
|
175
197
|
</div>
|
|
176
198
|
<div class="sub-title followers">
|
|
177
199
|
|
|
178
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
179
|
-
<span style="background-color: #
|
|
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>
|
|
208
|
+
<span>4387</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>
|
|
215
|
+
<span>422</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>
|
|
221
|
+
<span>2581 stars this month</span>
|
|
200
222
|
</span>
|
|
201
223
|
</div>
|
|
202
224
|
<div class="details">
|
|
@@ -221,20 +243,20 @@
|
|
|
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>
|
|
246
|
+
<span>44486</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>
|
|
253
|
+
<span>6415</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>
|
|
259
|
+
<span>3886 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/
|
|
272
|
+
<a href="https://github.com/doocs/advanced-java" target="_blank" title="doocs/advanced-java">doocs/advanced-java</a>
|
|
251
273
|
</div>
|
|
252
274
|
<div class="sub-title followers">
|
|
253
275
|
|
|
276
|
+
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
277
|
+
<span style="background-color: #b07219;"></span>Java
|
|
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>
|
|
284
|
+
<span>61767</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>
|
|
291
|
+
<span>16816</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>
|
|
297
|
+
<span>1682 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/
|
|
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>
|
|
318
|
+
<span>226787</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>
|
|
325
|
+
<span>47906</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>
|
|
331
|
+
<span>5222 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>
|
|
356
|
+
<span>9298</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>
|
|
363
|
+
<span>438</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>
|
|
369
|
+
<span>2306 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/
|
|
382
|
+
<a href="https://github.com/lapce/lapce" target="_blank" title="lapce/lapce">lapce/lapce</a>
|
|
361
383
|
</div>
|
|
362
384
|
<div class="sub-title followers">
|
|
363
385
|
|
|
386
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
387
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
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>
|
|
394
|
+
<span>7375</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>
|
|
401
|
+
<span>172</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>
|
|
407
|
+
<span>3041 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/
|
|
420
|
+
<a href="https://github.com/hoppscotch/hoppscotch" target="_blank" title="hoppscotch/hoppscotch">hoppscotch/hoppscotch</a>
|
|
395
421
|
</div>
|
|
396
422
|
<div class="sub-title followers">
|
|
397
423
|
|
|
398
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
399
|
-
<span style="background-color: #
|
|
424
|
+
<a class="language" target="_blank" href="https://github.com/topics/vue" title="Programming Language Vue">
|
|
425
|
+
<span style="background-color: #41b883;"></span>Vue
|
|
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>
|
|
432
|
+
<span>39013</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>
|
|
439
|
+
<span>2726</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>
|
|
445
|
+
<span>2705 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/
|
|
458
|
+
<a href="https://github.com/Rapptz/discord.py" target="_blank" title="Rapptz/discord.py">Rapptz/discord.py</a>
|
|
433
459
|
</div>
|
|
434
460
|
<div class="sub-title followers">
|
|
435
461
|
|
|
436
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
437
|
-
<span style="background-color: #
|
|
462
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
463
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>
|
|
470
|
+
<span>9955</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>
|
|
477
|
+
<span>3254</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>
|
|
483
|
+
<span>576 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/
|
|
496
|
+
<a href="https://github.com/iamadamdev/bypass-paywalls-chrome" target="_blank" title="iamadamdev/bypass-paywalls-chrome">iamadamdev/bypass-paywalls-chrome</a>
|
|
471
497
|
</div>
|
|
472
498
|
<div class="sub-title followers">
|
|
473
499
|
|
|
474
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
475
|
-
<span style="background-color: #
|
|
500
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
501
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
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>
|
|
508
|
+
<span>24148</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>
|
|
515
|
+
<span>1730</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>
|
|
521
|
+
<span>2090 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/
|
|
534
|
+
<a href="https://github.com/withfig/autocomplete" target="_blank" title="withfig/autocomplete">withfig/autocomplete</a>
|
|
509
535
|
</div>
|
|
510
536
|
<div class="sub-title followers">
|
|
511
537
|
|
|
512
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
513
|
-
<span style="background-color: #
|
|
538
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
539
|
+
<span style="background-color: #2b7489;"></span>TypeScript
|
|
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>
|
|
546
|
+
<span>12894</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>
|
|
553
|
+
<span>3129</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>
|
|
559
|
+
<span>2120 stars this month</span>
|
|
534
560
|
</span>
|
|
535
561
|
</div>
|
|
536
562
|
<div class="details">
|
|
@@ -543,32 +569,32 @@
|
|
|
543
569
|
<div class="info">
|
|
544
570
|
<div class="rank">
|
|
545
571
|
<span title="Ranking 12">12</span>
|
|
546
|
-
<a href="https://github.com/
|
|
572
|
+
<a href="https://github.com/mdn/content" target="_blank" title="mdn/content">mdn/content</a>
|
|
547
573
|
</div>
|
|
548
574
|
<div class="sub-title followers">
|
|
549
575
|
|
|
550
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
551
|
-
<span style="background-color: #
|
|
576
|
+
<a class="language" target="_blank" href="https://github.com/topics/html" title="Programming Language HTML">
|
|
577
|
+
<span style="background-color: #e34c26;"></span>HTML
|
|
552
578
|
</a>
|
|
553
579
|
|
|
554
580
|
<span class="star" title="Stargazers Count">
|
|
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>
|
|
584
|
+
<span>4885</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>
|
|
591
|
+
<span>7374</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>
|
|
597
|
+
<span>631 stars this month</span>
|
|
572
598
|
</span>
|
|
573
599
|
</div>
|
|
574
600
|
<div class="details">
|
|
@@ -581,7 +607,7 @@
|
|
|
581
607
|
<div class="info">
|
|
582
608
|
<div class="rank">
|
|
583
609
|
<span title="Ranking 13">13</span>
|
|
584
|
-
<a href="https://github.com/
|
|
610
|
+
<a href="https://github.com/huihut/interview" target="_blank" title="huihut/interview">huihut/interview</a>
|
|
585
611
|
</div>
|
|
586
612
|
<div class="sub-title followers">
|
|
587
613
|
|
|
@@ -593,20 +619,20 @@
|
|
|
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>
|
|
622
|
+
<span>23190</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>
|
|
629
|
+
<span>6394</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>
|
|
635
|
+
<span>857 stars this month</span>
|
|
610
636
|
</span>
|
|
611
637
|
</div>
|
|
612
638
|
<div class="details">
|
|
@@ -619,7 +645,7 @@
|
|
|
619
645
|
<div class="info">
|
|
620
646
|
<div class="rank">
|
|
621
647
|
<span title="Ranking 14">14</span>
|
|
622
|
-
<a href="https://github.com/
|
|
648
|
+
<a href="https://github.com/phil-opp/blog_os" target="_blank" title="phil-opp/blog_os">phil-opp/blog_os</a>
|
|
623
649
|
</div>
|
|
624
650
|
<div class="sub-title followers">
|
|
625
651
|
|
|
@@ -631,20 +657,20 @@
|
|
|
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>
|
|
660
|
+
<span>9220</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>
|
|
667
|
+
<span>707</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>
|
|
673
|
+
<span>859 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/
|
|
686
|
+
<a href="https://github.com/OpenIMSDK/Open-IM-Server" target="_blank" title="OpenIMSDK/Open-IM-Server">OpenIMSDK/Open-IM-Server</a>
|
|
661
687
|
</div>
|
|
662
688
|
<div class="sub-title followers">
|
|
663
689
|
|
|
664
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
665
|
-
<span style="background-color: #
|
|
690
|
+
<a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
|
|
691
|
+
<span style="background-color: #00ADD8;"></span>Go
|
|
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>
|
|
698
|
+
<span>6894</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>
|
|
705
|
+
<span>1039</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>
|
|
711
|
+
<span>450 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/
|
|
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/
|
|
703
|
-
<span style="background-color: #
|
|
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>
|
|
736
|
+
<span>9988</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>
|
|
743
|
+
<span>1818</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>
|
|
749
|
+
<span>346 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/
|
|
762
|
+
<a href="https://github.com/mermaid-js/mermaid" target="_blank" title="mermaid-js/mermaid">mermaid-js/mermaid</a>
|
|
737
763
|
</div>
|
|
738
764
|
<div class="sub-title followers">
|
|
739
765
|
|
|
740
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
741
|
-
<span style="background-color: #
|
|
766
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
767
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
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>
|
|
774
|
+
<span>45420</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>
|
|
781
|
+
<span>3307</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>
|
|
787
|
+
<span>2153 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/
|
|
800
|
+
<a href="https://github.com/gildas-lormeau/SingleFile" target="_blank" title="gildas-lormeau/SingleFile">gildas-lormeau/SingleFile</a>
|
|
775
801
|
</div>
|
|
776
802
|
<div class="sub-title followers">
|
|
777
803
|
|
|
778
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
779
|
-
<span style="background-color: #
|
|
804
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
805
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
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>
|
|
812
|
+
<span>7730</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>
|
|
819
|
+
<span>553</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>
|
|
825
|
+
<span>3026 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/
|
|
838
|
+
<a href="https://github.com/vulhub/vulhub" target="_blank" title="vulhub/vulhub">vulhub/vulhub</a>
|
|
813
839
|
</div>
|
|
814
840
|
<div class="sub-title followers">
|
|
815
841
|
|
|
816
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
817
|
-
<span style="background-color: #
|
|
842
|
+
<a class="language" target="_blank" href="https://github.com/topics/dockerfile" title="Programming Language Dockerfile">
|
|
843
|
+
<span style="background-color: #384d54;"></span>Dockerfile
|
|
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>
|
|
850
|
+
<span>9788</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>
|
|
857
|
+
<span>3331</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>
|
|
863
|
+
<span>464 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/
|
|
876
|
+
<a href="https://github.com/vitejs/vite" target="_blank" title="vitejs/vite">vitejs/vite</a>
|
|
851
877
|
</div>
|
|
852
878
|
<div class="sub-title followers">
|
|
853
879
|
|
|
854
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
855
|
-
<span style="background-color: #
|
|
880
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
881
|
+
<span style="background-color: #2b7489;"></span>TypeScript
|
|
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>
|
|
888
|
+
<span>39228</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>
|
|
895
|
+
<span>3009</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>
|
|
901
|
+
<span>1547 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/
|
|
914
|
+
<a href="https://github.com/vuejs/core" target="_blank" title="vuejs/core">vuejs/core</a>
|
|
889
915
|
</div>
|
|
890
916
|
<div class="sub-title followers">
|
|
891
917
|
|
|
892
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
893
|
-
<span style="background-color: #
|
|
918
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
919
|
+
<span style="background-color: #2b7489;"></span>TypeScript
|
|
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>
|
|
926
|
+
<span>28415</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>
|
|
933
|
+
<span>5074</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>
|
|
939
|
+
<span>918 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/
|
|
952
|
+
<a href="https://github.com/facebook/react" target="_blank" title="facebook/react">facebook/react</a>
|
|
927
953
|
</div>
|
|
928
954
|
<div class="sub-title followers">
|
|
929
955
|
|
|
930
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
931
|
-
<span style="background-color: #
|
|
956
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
957
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
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>
|
|
964
|
+
<span>184491</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>
|
|
971
|
+
<span>37783</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>
|
|
977
|
+
<span>2456 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/
|
|
990
|
+
<a href="https://github.com/peng-zhihui/Dummy-Robot" target="_blank" title="peng-zhihui/Dummy-Robot">peng-zhihui/Dummy-Robot</a>
|
|
965
991
|
</div>
|
|
966
992
|
<div class="sub-title followers">
|
|
967
993
|
|
|
968
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
969
|
-
<span style="background-color: #
|
|
994
|
+
<a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
|
|
995
|
+
<span style="background-color: #555555;"></span>C
|
|
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>
|
|
1002
|
+
<span>6674</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>
|
|
1009
|
+
<span>1299</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>
|
|
1015
|
+
<span>775 stars this month</span>
|
|
990
1016
|
</span>
|
|
991
1017
|
</div>
|
|
992
1018
|
<div class="details">
|
|
@@ -999,32 +1025,32 @@
|
|
|
999
1025
|
<div class="info">
|
|
1000
1026
|
<div class="rank">
|
|
1001
1027
|
<span title="Ranking 24">24</span>
|
|
1002
|
-
<a href="https://github.com/
|
|
1028
|
+
<a href="https://github.com/vuejs/vue" target="_blank" title="vuejs/vue">vuejs/vue</a>
|
|
1003
1029
|
</div>
|
|
1004
1030
|
<div class="sub-title followers">
|
|
1005
1031
|
|
|
1006
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
1007
|
-
<span style="background-color: #
|
|
1032
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
1033
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
1008
1034
|
</a>
|
|
1009
1035
|
|
|
1010
1036
|
<span class="star" title="Stargazers Count">
|
|
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>
|
|
1040
|
+
<span>194207</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>
|
|
1047
|
+
<span>31710</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>
|
|
1053
|
+
<span>1443 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/
|
|
1066
|
+
<a href="https://github.com/saadeghi/daisyui" target="_blank" title="saadeghi/daisyui">saadeghi/daisyui</a>
|
|
1041
1067
|
</div>
|
|
1042
1068
|
<div class="sub-title followers">
|
|
1043
1069
|
|
|
1044
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
1045
|
-
<span style="background-color: #
|
|
1070
|
+
<a class="language" target="_blank" href="https://github.com/topics/svelte" title="Programming Language Svelte">
|
|
1071
|
+
<span style="background-color: #ff3e00;"></span>Svelte
|
|
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>
|
|
1078
|
+
<span>9584</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>
|
|
1085
|
+
<span>376</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>
|
|
1091
|
+
<span>1422 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/
|
|
1116
|
+
<div class="time">Last cache created on 2022/3/19 by Github API v3.</div>
|
|
1091
1117
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
1092
1118
|
</div>
|
|
1093
1119
|
</body>
|