forked from YangguangZhou/some-stars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
data.json
6753 lines (6753 loc) · 252 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"TypeScript": [
{
"id": 855176501,
"node_id": "R_kgDOMvj1NQ",
"name": "location-guard-ng",
"full_name": "SukkaW/location-guard-ng",
"owner": {
"login": "SukkaW",
"id": 40715044,
"avatar_url": "https://avatars.githubusercontent.com/u/40715044?v=4",
"url": "https://api.github.com/users/SukkaW",
"html_url": "https://github.com/SukkaW"
},
"html_url": "https://github.com/SukkaW/location-guard-ng",
"description": "A UserScript that hide/spoof your geographic location from websites.",
"url": "https://api.github.com/repos/SukkaW/location-guard-ng",
"languages_url": "https://api.github.com/repos/SukkaW/location-guard-ng/languages",
"created_at": "2024-09-10T12:51:16Z",
"updated_at": "2024-11-14T23:36:24Z",
"git_url": "git:https://github.com/SukkaW/location-guard-ng.git",
"ssh_url": "[email protected]:SukkaW/location-guard-ng.git",
"clone_url": "https://github.com/SukkaW/location-guard-ng.git",
"homepage": "https://location-guard-ng.skk.moe",
"stargazers_count": 153,
"watchers_count": 153,
"language": "TypeScript",
"topics": [
"adguard",
"location-guard",
"location-guard-ng",
"privacy",
"privacy-protection",
"tampermonkey",
"userscript",
"violentmonkey",
"violentmonkey-script"
]
},
{
"id": 195657294,
"node_id": "MDEwOlJlcG9zaXRvcnkxOTU2NTcyOTQ=",
"name": "photoview",
"full_name": "photoview/photoview",
"owner": {
"login": "photoview",
"id": 75802894,
"avatar_url": "https://avatars.githubusercontent.com/u/75802894?v=4",
"url": "https://api.github.com/users/photoview",
"html_url": "https://github.com/photoview"
},
"html_url": "https://github.com/photoview/photoview",
"description": "Photo gallery for self-hosted personal servers",
"url": "https://api.github.com/repos/photoview/photoview",
"languages_url": "https://api.github.com/repos/photoview/photoview/languages",
"created_at": "2019-07-07T13:55:00Z",
"updated_at": "2024-11-15T00:40:31Z",
"git_url": "git:https://github.com/photoview/photoview.git",
"ssh_url": "[email protected]:photoview/photoview.git",
"clone_url": "https://github.com/photoview/photoview.git",
"homepage": "https://photoview.github.io/",
"stargazers_count": 5397,
"watchers_count": 5397,
"language": "TypeScript",
"topics": [
"docker",
"exif",
"gallery",
"hacktoberfest",
"nas",
"photo",
"photo-gallery",
"photographers",
"photography",
"raw",
"selfhosted"
]
},
{
"id": 667532295,
"node_id": "R_kgDOJ8m8Bw",
"name": "coai",
"full_name": "coaidev/coai",
"owner": {
"login": "coaidev",
"id": 125332171,
"avatar_url": "https://avatars.githubusercontent.com/u/125332171?v=4",
"url": "https://api.github.com/users/coaidev",
"html_url": "https://github.com/coaidev"
},
"html_url": "https://github.com/coaidev/coai",
"description": "🚀 Next Generation AI One-Stop Internationalization Solution. 🚀 下一代 AI 一站式 B/C 端解决方案,支持 OpenAI,Midjourney,Claude,讯飞星火,Stable Diffusion,DALL·E,ChatGLM,通义千问,腾讯混元,360 智脑,百川 AI,火山方舟,新必应,Gemini,Moonshot 等模型,支持对话分享,自定义预设,云端同步,模型市场,支持弹性计费和订阅计划模式,支持图片解析,支持联网搜索,支持模型缓存,丰富美观的后台管理与仪表盘数据统计。",
"url": "https://api.github.com/repos/coaidev/coai",
"languages_url": "https://api.github.com/repos/coaidev/coai/languages",
"created_at": "2023-07-17T18:09:57Z",
"updated_at": "2024-11-15T01:20:57Z",
"git_url": "git:https://github.com/coaidev/coai.git",
"ssh_url": "[email protected]:coaidev/coai.git",
"clone_url": "https://github.com/coaidev/coai.git",
"homepage": "https://coai.dev",
"stargazers_count": 6934,
"watchers_count": 6934,
"language": "TypeScript",
"topics": [
"ai",
"api",
"api-gateway",
"chat",
"chatgpt",
"cross-platform",
"gemini",
"golang",
"openai",
"proxy",
"react"
]
},
{
"id": 832686448,
"node_id": "R_kgDOMaHJcA",
"name": "next-whois-ui",
"full_name": "zmh-program/next-whois-ui",
"owner": {
"login": "zmh-program",
"id": 112773885,
"avatar_url": "https://avatars.githubusercontent.com/u/112773885?v=4",
"url": "https://api.github.com/users/zmh-program",
"html_url": "https://github.com/zmh-program"
},
"html_url": "https://github.com/zmh-program/next-whois-ui",
"description": "🧪 Your Next-Gen Whois Lookup Tool With Modern UI. Support Domain/IPv4/IPv6/ASN/CIDR Whois Lookup And Powerful Features. 🧪 现代代 Whois 查询工具, 支持域名 / IPv4 / IPv6 / ASN / CIDR 查询和强大功能",
"url": "https://api.github.com/repos/zmh-program/next-whois-ui",
"languages_url": "https://api.github.com/repos/zmh-program/next-whois-ui/languages",
"created_at": "2024-07-23T14:15:35Z",
"updated_at": "2024-11-14T03:24:51Z",
"git_url": "git:https://github.com/zmh-program/next-whois-ui.git",
"ssh_url": "[email protected]:zmh-program/next-whois-ui.git",
"clone_url": "https://github.com/zmh-program/next-whois-ui.git",
"homepage": "https://who.zmh.me",
"stargazers_count": 265,
"watchers_count": 265,
"language": "TypeScript",
"topics": [
"api",
"nextjs",
"ui",
"whois"
]
},
{
"id": 837906020,
"node_id": "R_kgDOMfFuZA",
"name": "TinySSH",
"full_name": "chenjiaxing6/TinySSH",
"owner": {
"login": "chenjiaxing6",
"id": 42378713,
"avatar_url": "https://avatars.githubusercontent.com/u/42378713?v=4",
"url": "https://api.github.com/users/chenjiaxing6",
"html_url": "https://github.com/chenjiaxing6"
},
"html_url": "https://github.com/chenjiaxing6/TinySSH",
"description": "TinySSH-一个Electron开发的简洁ssh客户端",
"url": "https://api.github.com/repos/chenjiaxing6/TinySSH",
"languages_url": "https://api.github.com/repos/chenjiaxing6/TinySSH/languages",
"created_at": "2024-08-04T11:54:07Z",
"updated_at": "2024-11-14T15:23:29Z",
"git_url": "git:https://github.com/chenjiaxing6/TinySSH.git",
"ssh_url": "[email protected]:chenjiaxing6/TinySSH.git",
"clone_url": "https://github.com/chenjiaxing6/TinySSH.git",
"homepage": null,
"stargazers_count": 75,
"watchers_count": 75,
"language": "TypeScript",
"topics": []
},
{
"id": 788847937,
"node_id": "R_kgDOLwTdQQ",
"name": "dokploy",
"full_name": "Dokploy/dokploy",
"owner": {
"login": "Dokploy",
"id": 156882017,
"avatar_url": "https://avatars.githubusercontent.com/u/156882017?v=4",
"url": "https://api.github.com/users/Dokploy",
"html_url": "https://github.com/Dokploy"
},
"html_url": "https://github.com/Dokploy/dokploy",
"description": "Open Source Alternative to Vercel, Netlify and Heroku.",
"url": "https://api.github.com/repos/Dokploy/dokploy",
"languages_url": "https://api.github.com/repos/Dokploy/dokploy/languages",
"created_at": "2024-04-19T07:49:30Z",
"updated_at": "2024-11-15T01:36:13Z",
"git_url": "git:https://github.com/Dokploy/dokploy.git",
"ssh_url": "[email protected]:Dokploy/dokploy.git",
"clone_url": "https://github.com/Dokploy/dokploy.git",
"homepage": "https://dokploy.com/",
"stargazers_count": 9115,
"watchers_count": 9115,
"language": "TypeScript",
"topics": [
"backend",
"backups",
"databases",
"deployment",
"devops",
"docker",
"frontend",
"mariadb",
"mongodb",
"mysql",
"nextjs",
"postgresql",
"self-hosted",
"vps"
]
},
{
"id": 530102020,
"node_id": "R_kgDOH5i3BA",
"name": "SeaMoon",
"full_name": "DVKunion/SeaMoon",
"owner": {
"login": "DVKunion",
"id": 42199853,
"avatar_url": "https://avatars.githubusercontent.com/u/42199853?v=4",
"url": "https://api.github.com/users/DVKunion",
"html_url": "https://github.com/DVKunion"
},
"html_url": "https://github.com/DVKunion/SeaMoon",
"description": "月海 (Sea Moon) 是一款 FaaS/BaaS 实现的 Serverless 网络工具",
"url": "https://api.github.com/repos/DVKunion/SeaMoon",
"languages_url": "https://api.github.com/repos/DVKunion/SeaMoon/languages",
"created_at": "2022-08-29T06:57:18Z",
"updated_at": "2024-11-12T03:04:18Z",
"git_url": "git:https://github.com/DVKunion/SeaMoon.git",
"ssh_url": "[email protected]:DVKunion/SeaMoon.git",
"clone_url": "https://github.com/DVKunion/SeaMoon.git",
"homepage": "https://seamoon.dvkunion.cn",
"stargazers_count": 543,
"watchers_count": 543,
"language": "TypeScript",
"topics": [
"cloudnative",
"golang",
"gost",
"grpc",
"network-tools",
"proxy",
"serverless",
"shadowsocks",
"socks5",
"tor",
"tunnel",
"v2ray",
"websocket"
]
},
{
"id": 834237471,
"node_id": "R_kgDOMbl0Hw",
"name": "nezha-dash",
"full_name": "hamster1963/nezha-dash",
"owner": {
"login": "hamster1963",
"id": 71394853,
"avatar_url": "https://avatars.githubusercontent.com/u/71394853?v=4",
"url": "https://api.github.com/users/hamster1963",
"html_url": "https://github.com/hamster1963"
},
"html_url": "https://github.com/hamster1963/nezha-dash",
"description": "A simple dashboard for nezha.",
"url": "https://api.github.com/repos/hamster1963/nezha-dash",
"languages_url": "https://api.github.com/repos/hamster1963/nezha-dash/languages",
"created_at": "2024-07-26T18:17:05Z",
"updated_at": "2024-11-14T08:55:13Z",
"git_url": "git:https://github.com/hamster1963/nezha-dash.git",
"ssh_url": "[email protected]:hamster1963/nezha-dash.git",
"clone_url": "https://github.com/hamster1963/nezha-dash.git",
"homepage": "https://nezhadash-docs.vercel.app",
"stargazers_count": 802,
"watchers_count": 802,
"language": "TypeScript",
"topics": []
},
{
"id": 233568787,
"node_id": "MDEwOlJlcG9zaXRvcnkyMzM1Njg3ODc=",
"name": "markmap",
"full_name": "markmap/markmap",
"owner": {
"login": "markmap",
"id": 111946737,
"avatar_url": "https://avatars.githubusercontent.com/u/111946737?v=4",
"url": "https://api.github.com/users/markmap",
"html_url": "https://github.com/markmap"
},
"html_url": "https://github.com/markmap/markmap",
"description": "Build mindmaps with plain text",
"url": "https://api.github.com/repos/markmap/markmap",
"languages_url": "https://api.github.com/repos/markmap/markmap/languages",
"created_at": "2020-01-13T10:23:34Z",
"updated_at": "2024-11-14T23:59:20Z",
"git_url": "git:https://github.com/markmap/markmap.git",
"ssh_url": "[email protected]:markmap/markmap.git",
"clone_url": "https://github.com/markmap/markmap.git",
"homepage": "https://markmap.js.org/",
"stargazers_count": 9380,
"watchers_count": 9380,
"language": "TypeScript",
"topics": [
"markmap",
"mindmap"
]
},
{
"id": 820823004,
"node_id": "R_kgDOMOzD3A",
"name": "DevNow",
"full_name": "LaughingZhu/DevNow",
"owner": {
"login": "LaughingZhu",
"id": 20132891,
"avatar_url": "https://avatars.githubusercontent.com/u/20132891?v=4",
"url": "https://api.github.com/users/LaughingZhu",
"html_url": "https://github.com/LaughingZhu"
},
"html_url": "https://github.com/LaughingZhu/DevNow",
"description": "📚 DevNow is an open source technology blog project. It currently hosts weekly news (about technology, development and product), which is published every Monday morning. / DevNow 是一个精简的开源技术博客项目模版,支持 Vercel 一键部署,支持评论、搜索等功能,欢迎大家体验。",
"url": "https://api.github.com/repos/LaughingZhu/DevNow",
"languages_url": "https://api.github.com/repos/LaughingZhu/DevNow/languages",
"created_at": "2024-06-27T08:47:15Z",
"updated_at": "2024-11-14T11:31:58Z",
"git_url": "git:https://github.com/LaughingZhu/DevNow.git",
"ssh_url": "[email protected]:LaughingZhu/DevNow.git",
"clone_url": "https://github.com/LaughingZhu/DevNow.git",
"homepage": "https://www.laughingzhu.cn",
"stargazers_count": 106,
"watchers_count": 106,
"language": "TypeScript",
"topics": []
},
{
"id": 721767116,
"node_id": "R_kgDOKwVKzA",
"name": "clash-verge-rev",
"full_name": "clash-verge-rev/clash-verge-rev",
"owner": {
"login": "clash-verge-rev",
"id": 152534467,
"avatar_url": "https://avatars.githubusercontent.com/u/152534467?v=4",
"url": "https://api.github.com/users/clash-verge-rev",
"html_url": "https://github.com/clash-verge-rev"
},
"html_url": "https://github.com/clash-verge-rev/clash-verge-rev",
"description": "Continuation of Clash Verge - A Clash Meta GUI based on Tauri (Windows, MacOS, Linux)",
"url": "https://api.github.com/repos/clash-verge-rev/clash-verge-rev",
"languages_url": "https://api.github.com/repos/clash-verge-rev/clash-verge-rev/languages",
"created_at": "2023-11-21T18:24:03Z",
"updated_at": "2024-11-15T01:33:43Z",
"git_url": "git:https://github.com/clash-verge-rev/clash-verge-rev.git",
"ssh_url": "[email protected]:clash-verge-rev/clash-verge-rev.git",
"clone_url": "https://github.com/clash-verge-rev/clash-verge-rev.git",
"homepage": "https://www.clashverge.dev",
"stargazers_count": 38210,
"watchers_count": 38210,
"language": "TypeScript",
"topics": [
"clash",
"clash-meta",
"clash-verge",
"linux",
"mac",
"mihomo",
"tauri-app",
"windows"
]
},
{
"id": 286915138,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY5MTUxMzg=",
"name": "picx",
"full_name": "XPoet/picx",
"owner": {
"login": "XPoet",
"id": 24516169,
"avatar_url": "https://avatars.githubusercontent.com/u/24516169?v=4",
"url": "https://api.github.com/users/XPoet",
"html_url": "https://github.com/XPoet"
},
"html_url": "https://github.com/XPoet/picx",
"description": "🏞️ PicX 是一款基于 GitHub API 开发的图床工具,提供图片上传托管、生成图片链接和常用图片工具箱服务。",
"url": "https://api.github.com/repos/XPoet/picx",
"languages_url": "https://api.github.com/repos/XPoet/picx/languages",
"created_at": "2020-08-12T04:23:50Z",
"updated_at": "2024-11-13T07:09:38Z",
"git_url": "git:https://github.com/XPoet/picx.git",
"ssh_url": "[email protected]:XPoet/picx.git",
"clone_url": "https://github.com/XPoet/picx.git",
"homepage": "https://picx.xpoet.cn",
"stargazers_count": 4615,
"watchers_count": 4615,
"language": "TypeScript",
"topics": [
"cdn",
"cloudflare",
"github-api",
"image-hosting",
"image-toolbox",
"jsdelivr",
"picx",
"staticaly"
]
},
{
"id": 410689335,
"node_id": "R_kgDOGHqfNw",
"name": "notero",
"full_name": "dvanoni/notero",
"owner": {
"login": "dvanoni",
"id": 299357,
"avatar_url": "https://avatars.githubusercontent.com/u/299357?v=4",
"url": "https://api.github.com/users/dvanoni",
"html_url": "https://github.com/dvanoni"
},
"html_url": "https://github.com/dvanoni/notero",
"description": "A Zotero plugin for syncing items and notes into Notion",
"url": "https://api.github.com/repos/dvanoni/notero",
"languages_url": "https://api.github.com/repos/dvanoni/notero/languages",
"created_at": "2021-09-26T23:54:44Z",
"updated_at": "2024-11-14T15:39:24Z",
"git_url": "git:https://github.com/dvanoni/notero.git",
"ssh_url": "[email protected]:dvanoni/notero.git",
"clone_url": "https://github.com/dvanoni/notero.git",
"homepage": "https://download.notero.vanoni.dev",
"stargazers_count": 2391,
"watchers_count": 2391,
"language": "TypeScript",
"topics": [
"notion",
"notion-database",
"typescript",
"zotero",
"zotero-plugin",
"zotero-sync"
]
},
{
"id": 842552328,
"node_id": "R_kgDOMjhUCA",
"name": "devtoolset",
"full_name": "iAmCorey/devtoolset",
"owner": {
"login": "iAmCorey",
"id": 33424334,
"avatar_url": "https://avatars.githubusercontent.com/u/33424334?v=4",
"url": "https://api.github.com/users/iAmCorey",
"html_url": "https://github.com/iAmCorey"
},
"html_url": "https://github.com/iAmCorey/devtoolset",
"description": "Open-source & database-free developer tools navigator / 开源开发工具导航站",
"url": "https://api.github.com/repos/iAmCorey/devtoolset",
"languages_url": "https://api.github.com/repos/iAmCorey/devtoolset/languages",
"created_at": "2024-08-14T15:25:45Z",
"updated_at": "2024-11-14T11:24:16Z",
"git_url": "git:https://github.com/iAmCorey/devtoolset.git",
"ssh_url": "[email protected]:iAmCorey/devtoolset.git",
"clone_url": "https://github.com/iAmCorey/devtoolset.git",
"homepage": "https://DevToolset.net",
"stargazers_count": 113,
"watchers_count": 113,
"language": "TypeScript",
"topics": [
"cms",
"database-free",
"navigator",
"open-source",
"tools"
]
},
{
"id": 125118418,
"node_id": "MDEwOlJlcG9zaXRvcnkxMjUxMTg0MTg=",
"name": "outline-apps",
"full_name": "Jigsaw-Code/outline-apps",
"owner": {
"login": "Jigsaw-Code",
"id": 19845815,
"avatar_url": "https://avatars.githubusercontent.com/u/19845815?v=4",
"url": "https://api.github.com/users/Jigsaw-Code",
"html_url": "https://github.com/Jigsaw-Code"
},
"html_url": "https://github.com/Jigsaw-Code/outline-apps",
"description": "Outline Client and Manager, developed by Jigsaw. Outline Manager makes it easy to create your own VPN server. Outline Client lets you share access to your VPN with anyone in your network, giving them access to the free and open internet.",
"url": "https://api.github.com/repos/Jigsaw-Code/outline-apps",
"languages_url": "https://api.github.com/repos/Jigsaw-Code/outline-apps/languages",
"created_at": "2018-03-13T21:42:30Z",
"updated_at": "2024-11-14T18:06:27Z",
"git_url": "git:https://github.com/Jigsaw-Code/outline-apps.git",
"ssh_url": "[email protected]:Jigsaw-Code/outline-apps.git",
"clone_url": "https://github.com/Jigsaw-Code/outline-apps.git",
"homepage": "https://getoutline.org/",
"stargazers_count": 8459,
"watchers_count": 8459,
"language": "TypeScript",
"topics": [
"android",
"chromeos",
"cordova",
"electron",
"ios",
"linux",
"macos",
"outline",
"outline-vpn",
"shadowsocks",
"windows"
]
},
{
"id": 125116575,
"node_id": "MDEwOlJlcG9zaXRvcnkxMjUxMTY1NzU=",
"name": "outline-server",
"full_name": "Jigsaw-Code/outline-server",
"owner": {
"login": "Jigsaw-Code",
"id": 19845815,
"avatar_url": "https://avatars.githubusercontent.com/u/19845815?v=4",
"url": "https://api.github.com/users/Jigsaw-Code",
"html_url": "https://github.com/Jigsaw-Code"
},
"html_url": "https://github.com/Jigsaw-Code/outline-server",
"description": "Outline Server, developed by Jigsaw. The Outline Server is a proxy server that runs a Shadowsocks instance and provides a REST API for access key management.",
"url": "https://api.github.com/repos/Jigsaw-Code/outline-server",
"languages_url": "https://api.github.com/repos/Jigsaw-Code/outline-server/languages",
"created_at": "2018-03-13T21:24:49Z",
"updated_at": "2024-11-14T17:52:39Z",
"git_url": "git:https://github.com/Jigsaw-Code/outline-server.git",
"ssh_url": "[email protected]:Jigsaw-Code/outline-server.git",
"clone_url": "https://github.com/Jigsaw-Code/outline-server.git",
"homepage": "https://getoutline.org/",
"stargazers_count": 5835,
"watchers_count": 5835,
"language": "TypeScript",
"topics": [
"docker",
"linux",
"outline",
"outline-vpn",
"proxy-server",
"shadowsocks"
]
},
{
"id": 347404990,
"node_id": "MDEwOlJlcG9zaXRvcnkzNDc0MDQ5OTA=",
"name": "qinglong",
"full_name": "whyour/qinglong",
"owner": {
"login": "whyour",
"id": 22700758,
"avatar_url": "https://avatars.githubusercontent.com/u/22700758?v=4",
"url": "https://api.github.com/users/whyour",
"html_url": "https://github.com/whyour"
},
"html_url": "https://github.com/whyour/qinglong",
"description": "支持 Python3、JavaScript、Shell、Typescript 的定时任务管理平台(Timed task management platform supporting Python3, JavaScript, Shell, Typescript)",
"url": "https://api.github.com/repos/whyour/qinglong",
"languages_url": "https://api.github.com/repos/whyour/qinglong/languages",
"created_at": "2021-03-13T15:21:04Z",
"updated_at": "2024-11-15T01:08:14Z",
"git_url": "git:https://github.com/whyour/qinglong.git",
"ssh_url": "[email protected]:whyour/qinglong.git",
"clone_url": "https://github.com/whyour/qinglong.git",
"homepage": "https://qinglong.online",
"stargazers_count": 16217,
"watchers_count": 16217,
"language": "TypeScript",
"topics": [
"crontab",
"docker",
"javascript",
"python",
"shell",
"task-manager",
"typescript"
]
},
{
"id": 481185579,
"node_id": "R_kgDOHK5PKw",
"name": "flow",
"full_name": "pacexy/flow",
"owner": {
"login": "pacexy",
"id": 32255488,
"avatar_url": "https://avatars.githubusercontent.com/u/32255488?v=4",
"url": "https://api.github.com/users/pacexy",
"html_url": "https://github.com/pacexy"
},
"html_url": "https://github.com/pacexy/flow",
"description": "Browser-based ePub reader",
"url": "https://api.github.com/repos/pacexy/flow",
"languages_url": "https://api.github.com/repos/pacexy/flow/languages",
"created_at": "2022-04-13T11:19:21Z",
"updated_at": "2024-11-14T09:16:33Z",
"git_url": "git:https://github.com/pacexy/flow.git",
"ssh_url": "[email protected]:pacexy/flow.git",
"clone_url": "https://github.com/pacexy/flow.git",
"homepage": "https://flowoss.com",
"stargazers_count": 2160,
"watchers_count": 2160,
"language": "TypeScript",
"topics": [
"epub",
"epub-reader",
"nextjs",
"pwa",
"react",
"reactjs",
"reader",
"typescript"
]
},
{
"id": 588181589,
"node_id": "R_kgDOIw7wVQ",
"name": "envshare",
"full_name": "chronark/envshare",
"owner": {
"login": "chronark",
"id": 18246773,
"avatar_url": "https://avatars.githubusercontent.com/u/18246773?v=4",
"url": "https://api.github.com/users/chronark",
"html_url": "https://github.com/chronark"
},
"html_url": "https://github.com/chronark/envshare",
"description": "Share Environnment Variables Securely",
"url": "https://api.github.com/repos/chronark/envshare",
"languages_url": "https://api.github.com/repos/chronark/envshare/languages",
"created_at": "2023-01-12T14:17:37Z",
"updated_at": "2024-11-12T19:20:02Z",
"git_url": "git:https://github.com/chronark/envshare.git",
"ssh_url": "[email protected]:chronark/envshare.git",
"clone_url": "https://github.com/chronark/envshare.git",
"homepage": "https://envshare.dev",
"stargazers_count": 588,
"watchers_count": 588,
"language": "TypeScript",
"topics": [
"environment",
"share",
"variables"
]
},
{
"id": 180190854,
"node_id": "MDEwOlJlcG9zaXRvcnkxODAxOTA4NTQ=",
"name": "appwrite",
"full_name": "appwrite/appwrite",
"owner": {
"login": "appwrite",
"id": 25003669,
"avatar_url": "https://avatars.githubusercontent.com/u/25003669?v=4",
"url": "https://api.github.com/users/appwrite",
"html_url": "https://github.com/appwrite"
},
"html_url": "https://github.com/appwrite/appwrite",
"description": "Your backend, minus the hassle.",
"url": "https://api.github.com/repos/appwrite/appwrite",
"languages_url": "https://api.github.com/repos/appwrite/appwrite/languages",
"created_at": "2019-04-08T16:36:25Z",
"updated_at": "2024-11-15T01:16:59Z",
"git_url": "git:https://github.com/appwrite/appwrite.git",
"ssh_url": "[email protected]:appwrite/appwrite.git",
"clone_url": "https://github.com/appwrite/appwrite.git",
"homepage": "https://appwrite.io",
"stargazers_count": 45383,
"watchers_count": 45383,
"language": "TypeScript",
"topics": [
"android",
"appwrite",
"backend",
"backend-as-a-service",
"docker",
"firebase",
"flutter",
"hacktoberfest",
"ios",
"javascript",
"nextjs",
"react",
"react-native",
"reactnative",
"self-hosted",
"selfhosted",
"serverless",
"swift",
"web"
]
},
{
"id": 337414495,
"node_id": "MDEwOlJlcG9zaXRvcnkzMzc0MTQ0OTU=",
"name": "nhost",
"full_name": "nhost/nhost",
"owner": {
"login": "nhost",
"id": 48448799,
"avatar_url": "https://avatars.githubusercontent.com/u/48448799?v=4",
"url": "https://api.github.com/users/nhost",
"html_url": "https://github.com/nhost"
},
"html_url": "https://github.com/nhost/nhost",
"description": "The Open Source Firebase Alternative with GraphQL.",
"url": "https://api.github.com/repos/nhost/nhost",
"languages_url": "https://api.github.com/repos/nhost/nhost/languages",
"created_at": "2021-02-09T13:33:34Z",
"updated_at": "2024-11-15T00:34:39Z",
"git_url": "git:https://github.com/nhost/nhost.git",
"ssh_url": "[email protected]:nhost/nhost.git",
"clone_url": "https://github.com/nhost/nhost.git",
"homepage": "https://nhost.io",
"stargazers_count": 7938,
"watchers_count": 7938,
"language": "TypeScript",
"topics": [
"authentication",
"backend",
"backend-as-a-service",
"database",
"firebase",
"flutter",
"graphql",
"graphql-api",
"hasura",
"javascript",
"nextjs",
"nhost",
"postgres",
"react",
"serverless",
"serverless-functions",
"storage",
"typescript",
"vue"
]
},
{
"id": 642917329,
"node_id": "R_kgDOJlIj0Q",
"name": "ai-chatbot",
"full_name": "vercel/ai-chatbot",
"owner": {
"login": "vercel",
"id": 14985020,
"avatar_url": "https://avatars.githubusercontent.com/u/14985020?v=4",
"url": "https://api.github.com/users/vercel",
"html_url": "https://github.com/vercel"
},
"html_url": "https://github.com/vercel/ai-chatbot",
"description": "A full-featured, hackable Next.js AI chatbot built by Vercel",
"url": "https://api.github.com/repos/vercel/ai-chatbot",
"languages_url": "https://api.github.com/repos/vercel/ai-chatbot/languages",
"created_at": "2023-05-19T16:36:23Z",
"updated_at": "2024-11-15T01:30:34Z",
"git_url": "git:https://github.com/vercel/ai-chatbot.git",
"ssh_url": "[email protected]:vercel/ai-chatbot.git",
"clone_url": "https://github.com/vercel/ai-chatbot.git",
"homepage": "https://chat.vercel.ai",
"stargazers_count": 9267,
"watchers_count": 9267,
"language": "TypeScript",
"topics": [
"ai",
"chatgpt",
"gpt-3",
"gpt-4",
"nextjs",
"react",
"redis",
"shadcn-ui",
"vercel"
]
},
{
"id": 5923215,
"node_id": "MDEwOlJlcG9zaXRvcnk1OTIzMjE1",
"name": "hexo",
"full_name": "hexojs/hexo",
"owner": {
"login": "hexojs",
"id": 6375567,
"avatar_url": "https://avatars.githubusercontent.com/u/6375567?v=4",
"url": "https://api.github.com/users/hexojs",
"html_url": "https://github.com/hexojs"
},
"html_url": "https://github.com/hexojs/hexo",
"description": "A fast, simple & powerful blog framework, powered by Node.js.",
"url": "https://api.github.com/repos/hexojs/hexo",
"languages_url": "https://api.github.com/repos/hexojs/hexo/languages",
"created_at": "2012-09-23T15:17:08Z",
"updated_at": "2024-11-15T00:48:30Z",
"git_url": "git:https://github.com/hexojs/hexo.git",
"ssh_url": "[email protected]:hexojs/hexo.git",
"clone_url": "https://github.com/hexojs/hexo.git",
"homepage": "https://hexo.io",
"stargazers_count": 39520,
"watchers_count": 39520,
"language": "TypeScript",
"topics": [
"hexo",
"javascript",
"nodejs",
"static-site-generator",
"typescript"
]
},
{
"id": 226910387,
"node_id": "MDEwOlJlcG9zaXRvcnkyMjY5MTAzODc=",
"name": "replayweb.page",
"full_name": "webrecorder/replayweb.page",
"owner": {
"login": "webrecorder",
"id": 13686290,
"avatar_url": "https://avatars.githubusercontent.com/u/13686290?v=4",
"url": "https://api.github.com/users/webrecorder",
"html_url": "https://github.com/webrecorder"
},
"html_url": "https://github.com/webrecorder/replayweb.page",
"description": "Serverless replay of web archives directly in the browser",
"url": "https://api.github.com/repos/webrecorder/replayweb.page",
"languages_url": "https://api.github.com/repos/webrecorder/replayweb.page/languages",
"created_at": "2019-12-09T15:58:34Z",
"updated_at": "2024-11-14T19:53:23Z",
"git_url": "git:https://github.com/webrecorder/replayweb.page.git",
"ssh_url": "[email protected]:webrecorder/replayweb.page.git",
"clone_url": "https://github.com/webrecorder/replayweb.page.git",
"homepage": "https://replayweb.page",
"stargazers_count": 707,
"watchers_count": 707,
"language": "TypeScript",
"topics": [
"replay-web-page",
"service-worker",
"wacz",
"warc",
"wayback-machine",
"web-archive",
"web-archiving",
"web-replay"
]
},
{
"id": 720768308,
"node_id": "R_kgDOKvYNNA",
"name": "chrome-power-app",
"full_name": "zmzimpl/chrome-power-app",
"owner": {
"login": "zmzimpl",
"id": 27490895,
"avatar_url": "https://avatars.githubusercontent.com/u/27490895?v=4",
"url": "https://api.github.com/users/zmzimpl",
"html_url": "https://github.com/zmzimpl"
},
"html_url": "https://github.com/zmzimpl/chrome-power-app",
"description": "The first open source fingerprint browser.",
"url": "https://api.github.com/repos/zmzimpl/chrome-power-app",
"languages_url": "https://api.github.com/repos/zmzimpl/chrome-power-app/languages",
"created_at": "2023-11-19T14:45:45Z",
"updated_at": "2024-11-14T13:56:37Z",
"git_url": "git:https://github.com/zmzimpl/chrome-power-app.git",
"ssh_url": "[email protected]:zmzimpl/chrome-power-app.git",
"clone_url": "https://github.com/zmzimpl/chrome-power-app.git",
"homepage": null,
"stargazers_count": 916,
"watchers_count": 916,
"language": "TypeScript",
"topics": []
},
{
"id": 203587744,
"node_id": "MDEwOlJlcG9zaXRvcnkyMDM1ODc3NDQ=",
"name": "hoppscotch",
"full_name": "hoppscotch/hoppscotch",
"owner": {
"login": "hoppscotch",
"id": 56705483,
"avatar_url": "https://avatars.githubusercontent.com/u/56705483?v=4",
"url": "https://api.github.com/users/hoppscotch",
"html_url": "https://github.com/hoppscotch"
},
"html_url": "https://github.com/hoppscotch/hoppscotch",
"description": "Open source API development ecosystem - https://hoppscotch.io (open-source alternative to Postman, Insomnia)",
"url": "https://api.github.com/repos/hoppscotch/hoppscotch",
"languages_url": "https://api.github.com/repos/hoppscotch/hoppscotch/languages",
"created_at": "2019-08-21T13:15:24Z",
"updated_at": "2024-11-14T21:06:46Z",
"git_url": "git:https://github.com/hoppscotch/hoppscotch.git",
"ssh_url": "[email protected]:hoppscotch/hoppscotch.git",
"clone_url": "https://github.com/hoppscotch/hoppscotch.git",
"homepage": "https://hoppscotch.io",
"stargazers_count": 65538,
"watchers_count": 65538,
"language": "TypeScript",
"topics": [
"api",
"api-client",
"api-rest",
"api-testing",
"developer-tools",
"graphql",
"hacktoberfest",
"http",
"http-client",
"pwa",
"rest",
"rest-api",
"spa",
"testing",
"testing-tools",
"tools",
"vue",
"vuejs",
"websocket"
]
},
{
"id": 613757215,
"node_id": "R_kgDOJJUxHw",
"name": "DailyHotApi",
"full_name": "imsyy/DailyHotApi",
"owner": {
"login": "imsyy",
"id": 42232682,
"avatar_url": "https://avatars.githubusercontent.com/u/42232682?v=4",
"url": "https://api.github.com/users/imsyy",
"html_url": "https://github.com/imsyy"
},
"html_url": "https://github.com/imsyy/DailyHotApi",
"description": "🔥 今日热榜 API,一个聚合热门数据的 API 接口,支持 RSS 模式 及 Vercel 部署 | 前端页面:https://github.com/imsyy/DailyHot",
"url": "https://api.github.com/repos/imsyy/DailyHotApi",
"languages_url": "https://api.github.com/repos/imsyy/DailyHotApi/languages",
"created_at": "2023-03-14T08:01:01Z",
"updated_at": "2024-11-14T17:32:42Z",
"git_url": "git:https://github.com/imsyy/DailyHotApi.git",
"ssh_url": "[email protected]:imsyy/DailyHotApi.git",
"clone_url": "https://github.com/imsyy/DailyHotApi.git",
"homepage": "https://hot.imsyy.top",
"stargazers_count": 1405,
"watchers_count": 1405,
"language": "TypeScript",
"topics": [
"api",
"daily-hot",
"list",
"rss",
"vercel"
]
},
{
"id": 612640604,
"node_id": "R_kgDOJIQnXA",
"name": "chatbot-ui",
"full_name": "mckaywrigley/chatbot-ui",
"owner": {
"login": "mckaywrigley",
"id": 29221284,
"avatar_url": "https://avatars.githubusercontent.com/u/29221284?v=4",
"url": "https://api.github.com/users/mckaywrigley",
"html_url": "https://github.com/mckaywrigley"
},
"html_url": "https://github.com/mckaywrigley/chatbot-ui",
"description": "Come join the best place on the internet to learn AI skills. Use code \"chatbotui\" for an extra 20% off.",
"url": "https://api.github.com/repos/mckaywrigley/chatbot-ui",
"languages_url": "https://api.github.com/repos/mckaywrigley/chatbot-ui/languages",
"created_at": "2023-03-11T14:53:14Z",
"updated_at": "2024-11-14T23:23:22Z",
"git_url": "git:https://github.com/mckaywrigley/chatbot-ui.git",
"ssh_url": "[email protected]:mckaywrigley/chatbot-ui.git",
"clone_url": "https://github.com/mckaywrigley/chatbot-ui.git",
"homepage": "https://JoinTakeoff.com",
"stargazers_count": 28771,
"watchers_count": 28771,
"language": "TypeScript",
"topics": []
},
{
"id": 438419937,
"node_id": "R_kgDOGiHB4Q",
"name": "openai-node",
"full_name": "openai/openai-node",
"owner": {
"login": "openai",
"id": 14957082,
"avatar_url": "https://avatars.githubusercontent.com/u/14957082?v=4",