-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3485 lines (3482 loc) · 204 KB
/
Copy pathindex.html
File metadata and controls
3485 lines (3482 loc) · 204 KB
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
<!DOCTYPE html>
<!-- saved from url=(0022)http://127.0.0.1:8080/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="dark">
<link rel="stylesheet" href="./index_files/pico.min.css">
<title>Popular Open Source Self-Hosted Projects</title>
</head>
<body>
<main class="container-fluid">
<h1>Popular Open Source Self-Hosted Projects</h1>
<table><thead><tr><th>Rank</th><th>Name</th><th>Description</th><th>Stars</th></tr></thead><tbody><tr>
<td>1</td>
<td><a href="https://github.com/ollama/ollama" target="_blank" rel="noopener">Ollama</a></td>
<td>Get up and running with Llama 3.3, DeepSeek-R1, Phi-4, Gemma 3, and other large language models.</td>
<td>149717</td>
</tr><tr>
<td>2</td>
<td><a href="https://github.com/n8n-io/n8n" target="_blank" rel="noopener">n8n</a></td>
<td>Free node based Workflow Automation Tool. Easily automate tasks across different services.</td>
<td>128228</td>
</tr><tr>
<td>3</td>
<td><a href="https://github.com/langgenius/dify" target="_blank" rel="noopener">Dify.ai</a></td>
<td>Build, test and deploy LLM applications.</td>
<td>110295</td>
</tr><tr>
<td>4</td>
<td><a href="https://github.com/open-webui/open-webui" target="_blank" rel="noopener">Open-WebUI</a></td>
<td>User-friendly AI Interface, supports Ollama, OpenAI API.</td>
<td>105987</td>
</tr><tr>
<td>5</td>
<td><a href="https://github.com/home-assistant/core" target="_blank" rel="noopener">Home Assistant</a></td>
<td>Home automation platform.</td>
<td>80641</td>
</tr><tr>
<td>6</td>
<td><a href="https://github.com/syncthing/syncthing" target="_blank" rel="noopener">Syncthing</a></td>
<td>Syncthing is an open source peer-to-peer file synchronisation tool.</td>
<td>74241</td>
</tr><tr>
<td>7</td>
<td><a href="https://github.com/elastic/elasticsearch" target="_blank" rel="noopener">ElasticSearch</a></td>
<td>Distributed, RESTful search and analytics engine.</td>
<td>73482</td>
</tr><tr>
<td>8</td>
<td><a href="https://github.com/hoppscotch/hoppscotch" target="_blank" rel="noopener">Hoppscotch Community Edition</a></td>
<td>Fast and beautiful API request builder.</td>
<td>73431</td>
</tr><tr>
<td>9</td>
<td><a href="https://github.com/coder/code-server" target="_blank" rel="noopener">code-server</a></td>
<td>VS Code in the browser, hosted on a remote server.</td>
<td>73326</td>
</tr><tr>
<td>10</td>
<td><a href="https://github.com/louislam/uptime-kuma" target="_blank" rel="noopener">Uptime Kuma</a></td>
<td>Self-hosted website monitoring tool like Uptime Robot.</td>
<td>72951</td>
</tr><tr>
<td>11</td>
<td><a href="https://github.com/immich-app/immich" target="_blank" rel="noopener">Immich</a></td>
<td>Photo and video backup solution directly from your mobile phone.</td>
<td>72481</td>
</tr><tr>
<td>12</td>
<td><a href="https://github.com/hakimel/reveal.js" target="_blank" rel="noopener">revealjs</a></td>
<td>Framework for easily creating beautiful presentations using HTML.</td>
<td>69385</td>
</tr><tr>
<td>13</td>
<td><a href="https://github.com/strapi/strapi" target="_blank" rel="noopener">Strapi</a></td>
<td>The most advanced open-source Content Management Framework (headless-CMS) to build powerful API with no effort.</td>
<td>68982</td>
</tr><tr>
<td>14</td>
<td><a href="https://github.com/apache/superset" target="_blank" rel="noopener">Superset</a></td>
<td>Modern data exploration and visualization platform.</td>
<td>67489</td>
</tr><tr>
<td>15</td>
<td><a href="https://github.com/caddyserver/caddy" target="_blank" rel="noopener">Caddy</a></td>
<td>Powerful, enterprise-ready, open source web server with automatic HTTPS.</td>
<td>66031</td>
</tr><tr>
<td>16</td>
<td><a href="https://github.com/AppFlowy-IO/appflowy" target="_blank" rel="noopener">AppFlowy</a></td>
<td>Build detailed lists of to-do’s for different projects while tracking the status of each one. Open Source Notion Alternative.</td>
<td>64808</td>
</tr><tr>
<td>17</td>
<td><a href="https://github.com/Frooodle/Stirling-PDF" target="_blank" rel="noopener">Stirling-PDF</a></td>
<td>Local hosted web application that allows you to perform various operations on PDF files, such as merging, splitting, file conversions and OCR.</td>
<td>64175</td>
</tr><tr>
<td>18</td>
<td><a href="https://github.com/nocodb/nocodb" target="_blank" rel="noopener">NocoDB</a></td>
<td>No-code platform that turns any database into a smart spreadsheet (alternative to Airtable or Smartsheet).</td>
<td>56327</td>
</tr><tr>
<td>19</td>
<td><a href="https://github.com/traefik/traefik" target="_blank" rel="noopener">Traefik</a></td>
<td>HTTP reverse proxy and load balancer that makes deploying microservices easy.</td>
<td>55971</td>
</tr><tr>
<td>20</td>
<td><a href="https://github.com/minio/minio" target="_blank" rel="noopener">Minio</a></td>
<td>Object storage server compatible with Amazon S3 APIs.</td>
<td>54458</td>
</tr><tr>
<td>21</td>
<td><a href="https://github.com/toeverything/AFFiNE" target="_blank" rel="noopener">AFFiNE Community Edition</a></td>
<td>Next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, customizable and ready to use (alternative to Notion and Miro).</td>
<td>54144</td>
</tr><tr>
<td>22</td>
<td><a href="https://github.com/pi-hole/pi-hole" target="_blank" rel="noopener">Pi-hole</a></td>
<td>Blackhole for Internet advertisements with a GUI for management and monitoring.</td>
<td>52873</td>
</tr><tr>
<td>23</td>
<td><a href="https://github.com/meilisearch/MeiliSearch" target="_blank" rel="noopener">MeiliSearch</a></td>
<td>Ultra relevant, instant and typo-tolerant full-text search API.</td>
<td>52671</td>
</tr><tr>
<td>24</td>
<td><a href="https://github.com/appwrite/appwrite" target="_blank" rel="noopener">Appwrite</a></td>
<td>End to end backend server for web, native, and mobile developers 🚀.</td>
<td>52211</td>
</tr><tr>
<td>25</td>
<td><a href="https://github.com/laurent22/joplin" target="_blank" rel="noopener">Joplin</a></td>
<td>Note taking application with markdown editor and encryption support for mobile and desktop platforms. Runs client-side and syncs through a self hosted Nextcloud instance or similar (alternative to Evernote).</td>
<td>50709</td>
</tr><tr>
<td>26</td>
<td><a href="https://github.com/TryGhost/Ghost" target="_blank" rel="noopener">Ghost</a></td>
<td>Just a blogging platform.</td>
<td>50227</td>
</tr><tr>
<td>27</td>
<td><a href="https://github.com/go-gitea/gitea" target="_blank" rel="noopener">Gitea</a></td>
<td>Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD.</td>
<td>49978</td>
</tr><tr>
<td>28</td>
<td><a href="https://github.com/pocketbase/pocketbase" target="_blank" rel="noopener">PocketBase</a></td>
<td>Backend for your next SaaS and Mobile app in one file.</td>
<td>49776</td>
</tr><tr>
<td>29</td>
<td><a href="https://github.com/mastodon/mastodon" target="_blank" rel="noopener">Mastodon</a></td>
<td>Federated microblogging server.</td>
<td>48856</td>
</tr><tr>
<td>30</td>
<td><a href="https://github.com/dani-garcia/vaultwarden" target="_blank" rel="noopener">Vaultwarden</a></td>
<td>Lightweight Bitwarden server API implementation written in Rust.</td>
<td>47734</td>
</tr><tr>
<td>31</td>
<td><a href="https://github.com/Mintplex-Labs/anything-llm" target="_blank" rel="noopener">AnythingLLM</a></td>
<td>All-in-one desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.</td>
<td>47638</td>
</tr><tr>
<td>32</td>
<td><a href="https://github.com/huginn/huginn" target="_blank" rel="noopener">Huginn</a></td>
<td>Build agents that monitor and act on your behalf.</td>
<td>46999</td>
</tr><tr>
<td>33</td>
<td><a href="https://github.com/gogs/gogs" target="_blank" rel="noopener">Gogs</a></td>
<td>Painless self-hosted Git Service written in Go.</td>
<td>46745</td>
</tr><tr>
<td>34</td>
<td><a href="https://github.com/odoo/odoo" target="_blank" rel="noopener">Odoo</a></td>
<td>Free open source ERP system.</td>
<td>44912</td>
</tr><tr>
<td>35</td>
<td><a href="https://github.com/discourse/discourse" target="_blank" rel="noopener">Discourse</a></td>
<td>Advanced forum / community solution based on Ruby and JS.</td>
<td>44755</td>
</tr><tr>
<td>36</td>
<td><a href="https://github.com/usememos/memos" target="_blank" rel="noopener">Memos</a></td>
<td>Knowledge base that works with a SQLite db file.</td>
<td>43445</td>
</tr><tr>
<td>37</td>
<td><a href="https://github.com/metabase/metabase" target="_blank" rel="noopener">Metabase</a></td>
<td>Easy way for everyone in your company to ask questions and learn from data.</td>
<td>43168</td>
</tr><tr>
<td>38</td>
<td><a href="https://github.com/RocketChat/Rocket.Chat" target="_blank" rel="noopener">Rocket.Chat</a></td>
<td>Communications platform that puts data protection first (alternative to Gitter.im or Slack).</td>
<td>43159</td>
</tr><tr>
<td>39</td>
<td><a href="https://github.com/jellyfin/jellyfin" target="_blank" rel="noopener">Jellyfin</a></td>
<td>Media server for audio, video, books, comics, and photos with a sleek interface and robust transcoding capabilities. Almost all modern platforms have clients, including Roku, Android TV, iOS, and Kodi.</td>
<td>42525</td>
</tr><tr>
<td>40</td>
<td><a href="https://github.com/getsentry/sentry" target="_blank" rel="noopener">Sentry Self-Hosted</a></td>
<td>Powerful error tracking platform with wide language support and a robust API.</td>
<td>41685</td>
</tr><tr>
<td>41</td>
<td><a href="https://github.com/Kong/kong" target="_blank" rel="noopener">Kong</a></td>
<td>Microservice API Gateway and Platform.</td>
<td>41503</td>
</tr><tr>
<td>42</td>
<td><a href="https://github.com/apache/airflow/" target="_blank" rel="noopener">Apache Airflow</a></td>
<td>Platform to programmatically author, schedule, and monitor workflows.</td>
<td>41472</td>
</tr><tr>
<td>43</td>
<td><a href="https://github.com/penpot/penpot" target="_blank" rel="noopener">penpot</a></td>
<td>Web-based design and prototyping platform meant for cross-domain teams.</td>
<td>39506</td>
</tr><tr>
<td>44</td>
<td><a href="https://github.com/DIYgod/RSSHub" target="_blank" rel="noopener">RSSHub</a></td>
<td>Easy to use, and extensible RSS feed aggregator capable of generating RSS feeds from pretty much everything ranging from social media to university departments.</td>
<td>38206</td>
</tr><tr>
<td>45</td>
<td><a href="https://github.com/photoprism/photoprism" target="_blank" rel="noopener">PhotoPrism</a></td>
<td>Personal photo management powered by Go and Google TensorFlow. Browse, organize, and share your personal photo collection, using the latest technologies to automatically tag and find pictures.</td>
<td>38080</td>
</tr><tr>
<td>46</td>
<td><a href="https://github.com/makeplane/plane" target="_blank" rel="noopener">Plane</a></td>
<td>Track issues, epics, and product roadmaps in the simplest way possible (alternative to JIRA, Linear and Height).</td>
<td>37948</td>
</tr><tr>
<td>47</td>
<td><a href="https://github.com/appsmithorg/appsmith" target="_blank" rel="noopener">Appsmith</a></td>
<td>Build admin panels, CRUD apps and workflows. Build everything you need, 10x faster.</td>
<td>37645</td>
</tr><tr>
<td>48</td>
<td><a href="https://github.com/calcom/cal.com" target="_blank" rel="noopener">Cal.com</a></td>
<td>Online appointment scheduling system.</td>
<td>37516</td>
</tr><tr>
<td>49</td>
<td><a href="https://github.com/novuhq/novu/" target="_blank" rel="noopener">Novu</a></td>
<td>Notification infrastructure for developers.</td>
<td>37402</td>
</tr><tr>
<td>50</td>
<td><a href="https://github.com/payloadcms/payload" target="_blank" rel="noopener">Payload CMS</a></td>
<td>Developer-first headless CMS and application framework.</td>
<td>36812</td>
</tr><tr>
<td>51</td>
<td><a href="https://github.com/siyuan-note/siyuan" target="_blank" rel="noopener">SiYuan</a></td>
<td>A privacy-first personal knowledge management software, written in typescript and golang.</td>
<td>36473</td>
</tr><tr>
<td>52</td>
<td><a href="https://github.com/halo-dev/halo" target="_blank" rel="noopener">Halo</a></td>
<td>A powerful and easy-to-use website building tool (documentation in Chinese).</td>
<td>36442</td>
</tr><tr>
<td>53</td>
<td><a href="https://github.com/ToolJet/ToolJet" target="_blank" rel="noopener">ToolJet</a></td>
<td>Low-code framework to build & deploy internal tools with minimal engineering effort (alternative to Retool & Mendix).</td>
<td>36286</td>
</tr><tr>
<td>54</td>
<td><a href="https://github.com/mindsdb/mindsdb" target="_blank" rel="noopener">MindsDB</a></td>
<td>AI layer for existing databases that allows you to effortlessly develop, train and deploy state-of-the-art machine learning models using standard queries.</td>
<td>35128</td>
</tr><tr>
<td>55</td>
<td><a href="https://github.com/twentyhq/twenty" target="_blank" rel="noopener">Twenty</a></td>
<td>A modern CRM offering the flexibility of open source, advanced features, and a sleek design.</td>
<td>34867</td>
</tr><tr>
<td>56</td>
<td><a href="https://github.com/heyputer/puter" target="_blank" rel="noopener">Puter</a></td>
<td>Web-based operating system designed to be feature-rich, exceptionally fast, and highly extensible.</td>
<td>34753</td>
</tr><tr>
<td>57</td>
<td><a href="https://github.com/outline/outline" target="_blank" rel="noopener">Outline</a></td>
<td>Extensible wiki for your team.</td>
<td>34306</td>
</tr><tr>
<td>58</td>
<td><a href="https://github.com/mattermost/mattermost" target="_blank" rel="noopener">Mattermost</a></td>
<td>Platform for secure collaboration across the entire software development lifecycle, can be integrated with Gitlab (alternative to Slack).</td>
<td>33334</td>
</tr><tr>
<td>59</td>
<td><a href="https://github.com/AmruthPillai/Reactive-Resume" target="_blank" rel="noopener">Reactive Resume</a></td>
<td>One-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever.</td>
<td>32513</td>
</tr><tr>
<td>60</td>
<td><a href="https://github.com/qbittorrent/qBittorrent" target="_blank" rel="noopener">qBittorrent</a></td>
<td>Free cross-platform bittorrent client with a feature rich Web UI for remote access.</td>
<td>32453</td>
</tr><tr>
<td>61</td>
<td><a href="https://github.com/gchq/CyberChef" target="_blank" rel="noopener">CyberChef</a></td>
<td>Perform all manner of operations within a web browser such as AES, DES and Blowfish encryption and decryption, creating hexdumps, calculating hashes, and much more.</td>
<td>32128</td>
</tr><tr>
<td>62</td>
<td><a href="https://github.com/directus/directus" target="_blank" rel="noopener">Directus</a></td>
<td>An Instant App & API for your SQL Database. Directus wraps your new or existing SQL database with a realtime GraphQL+REST API for developers, and an intuitive admin app for non-technical users.</td>
<td>31917</td>
</tr><tr>
<td>63</td>
<td><a href="https://github.com/hasura/graphql-engine" target="_blank" rel="noopener">Hasura</a></td>
<td>Fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events.</td>
<td>31637</td>
</tr><tr>
<td>64</td>
<td><a href="https://github.com/IceWhaleTech/CasaOS" target="_blank" rel="noopener">CasaOS</a></td>
<td>Simple, easy-to-use, elegant Home Cloud system.</td>
<td>31169</td>
</tr><tr>
<td>65</td>
<td><a href="https://github.com/lutzroeder/netron" target="_blank" rel="noopener">Netron</a></td>
<td>Visualizer for neural network and machine learning models.</td>
<td>31139</td>
</tr><tr>
<td>66</td>
<td><a href="https://github.com/filebrowser/filebrowser" target="_blank" rel="noopener">filebrowser</a></td>
<td>Web File Browser with a Material Design web interface.</td>
<td>30728</td>
</tr><tr>
<td>67</td>
<td><a href="https://github.com/khoj-ai/khoj" target="_blank" rel="noopener">Khoj</a></td>
<td>Your AI second brain. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI.</td>
<td>30682</td>
</tr><tr>
<td>68</td>
<td><a href="https://github.com/nextcloud/server" target="_blank" rel="noopener">Nextcloud</a></td>
<td>Access and share your files, calendars, contacts, mail and [more](https://apps.nextcloud.com/) from any device, on your terms.</td>
<td>30409</td>
</tr><tr>
<td>69</td>
<td><a href="https://github.com/medusajs/medusa" target="_blank" rel="noopener">MedusaJs</a></td>
<td>Headless commerce engine that enables developers to create amazing digital commerce experiences.</td>
<td>30226</td>
</tr><tr>
<td>70</td>
<td><a href="https://github.com/TriliumNext/Trilium" target="_blank" rel="noopener">TriliumNext Notes</a></td>
<td>Cross-platform hierarchical note taking application with focus on building large personal knowledge bases (fork of Trilium Notes).</td>
<td>30064</td>
</tr><tr>
<td>71</td>
<td><a href="https://github.com/paperless-ngx/paperless-ngx" target="_blank" rel="noopener">Paperless-ngx</a></td>
<td>Scan, index, and archive all of your paper documents with an improved interface (fork of Paperless).</td>
<td>29962</td>
</tr><tr>
<td>72</td>
<td><a href="https://github.com/AdguardTeam/AdGuardHome" target="_blank" rel="noopener">AdGuard Home</a></td>
<td>User-friendly ads & trackers blocking DNS server.</td>
<td>29575</td>
</tr><tr>
<td>73</td>
<td><a href="https://github.com/posthog/posthog" target="_blank" rel="noopener">PostHog</a></td>
<td>Product analytics, session recording, feature flagging and a/b testing that you can self-host (alternative to Mixpanel/Amplitude/Heap/HotJar/Optimizely).</td>
<td>28279</td>
</tr><tr>
<td>74</td>
<td><a href="https://github.com/LizardByte/Sunshine" target="_blank" rel="noopener">Sunshine</a></td>
<td>Remote game stream host for Moonlight with support up to 120 frames per second and 4K resolution.</td>
<td>27956</td>
</tr><tr>
<td>75</td>
<td><a href="https://github.com/NginxProxyManager/nginx-proxy-manager" target="_blank" rel="noopener">Nginx Proxy Manager</a></td>
<td>Docker container for managing Nginx proxy hosts with a simple, powerful interface.</td>
<td>27927</td>
</tr><tr>
<td>76</td>
<td><a href="https://github.com/umami-software/umami" target="_blank" rel="noopener">Umami</a></td>
<td>Simple, fast, privacy-focused alternative to Google Analytics.</td>
<td>27874</td>
</tr><tr>
<td>77</td>
<td><a href="https://github.com/nginx/nginx" target="_blank" rel="noopener">NGINX</a></td>
<td>HTTP and reverse proxy server, mail proxy server, and generic TCP/UDP proxy server.</td>
<td>27692</td>
</tr><tr>
<td>78</td>
<td><a href="https://github.com/getredash/redash" target="_blank" rel="noopener">Redash</a></td>
<td>Connect and query your data sources, build dashboards to visualize data and share them with your company.</td>
<td>27640</td>
</tr><tr>
<td>79</td>
<td><a href="https://github.com/frappe/erpnext" target="_blank" rel="noopener">ERPNext</a></td>
<td>ERP system to help you run your business.</td>
<td>27621</td>
</tr><tr>
<td>80</td>
<td><a href="https://github.com/ossrs/srs" target="_blank" rel="noopener">SRS</a></td>
<td>A simple, high efficiency and real-time video server, supports RTMP, WebRTC, HLS, HTTP-FLV and SRT.</td>
<td>27426</td>
</tr><tr>
<td>81</td>
<td><a href="https://github.com/glanceapp/glance" target="_blank" rel="noopener">Glance</a></td>
<td>Highly customizable dashboard that puts all your feeds in one place.</td>
<td>26808</td>
</tr><tr>
<td>82</td>
<td><a href="https://github.com/Requarks/wiki" target="_blank" rel="noopener">Wiki.js</a></td>
<td>Modern, lightweight and powerful wiki app using Git and Markdown.</td>
<td>26796</td>
</tr><tr>
<td>83</td>
<td><a href="https://github.com/jitsi/jitsi-meet" target="_blank" rel="noopener">Jitsi Meet</a></td>
<td>WebRTC application that uses Jitsi Videobridge to provide high quality, scalable video conferences.</td>
<td>26169</td>
</tr><tr>
<td>84</td>
<td><a href="https://github.com/goharbor/harbor" target="_blank" rel="noopener">Harbor</a></td>
<td>Cloud native image registry that stores, signs, and scans content.</td>
<td>26130</td>
</tr><tr>
<td>85</td>
<td><a href="https://github.com/dgtlmoon/changedetection.io" target="_blank" rel="noopener">changedetection.io</a></td>
<td>Stay up-to-date with web-site content changes.</td>
<td>25972</td>
</tr><tr>
<td>86</td>
<td><a href="https://github.com/binwiederhier/ntfy" target="_blank" rel="noopener">ntfy</a></td>
<td>Push notifications to phone or desktop using HTTP PUT/POST, with Android app, CLI and web app, similar to Pushover and Gotify.</td>
<td>25635</td>
</tr><tr>
<td>87</td>
<td><a href="https://github.com/ComposioHQ/composio" target="_blank" rel="noopener">Composio</a></td>
<td>Integration platform for AI agents & LLMs with support for 250+ apps and custom tools.</td>
<td>25600</td>
</tr><tr>
<td>88</td>
<td><a href="https://github.com/seaweedfs/seaweedfs" target="_blank" rel="noopener">SeaweedFS</a></td>
<td>SeaweedFS is an open source distributed file system supporting WebDAV, S3 API, FUSE mount, HDFS, etc, optimized for lots of small files, and easy to add capacity.</td>
<td>25446</td>
</tr><tr>
<td>89</td>
<td><a href="https://github.com/Budibase/budibase" target="_blank" rel="noopener">Budibase</a></td>
<td>Build and automate internal tools, admin panels, dashboards, CRUD apps, and more, in minutes (alternative to Outsystems, Retool, Mendix, Appian).</td>
<td>25270</td>
</tr><tr>
<td>90</td>
<td><a href="https://github.com/gethomepage/homepage" target="_blank" rel="noopener">Homepage by gethomepage</a></td>
<td>Highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.</td>
<td>25211</td>
</tr><tr>
<td>91</td>
<td><a href="https://github.com/blakeblackshear/frigate" target="_blank" rel="noopener">Frigate</a></td>
<td>Monitor your security cameras with locally processed AI.</td>
<td>24890</td>
</tr><tr>
<td>92</td>
<td><a href="https://github.com/chatwoot/chatwoot" target="_blank" rel="noopener">Chatwoot</a></td>
<td>Customer communication platform (alternative to Intercom & Zendesk).</td>
<td>24841</td>
</tr><tr>
<td>93</td>
<td><a href="https://github.com/mattermost/focalboard" target="_blank" rel="noopener">Focalboard</a></td>
<td>Define, organize, track and manage work across individuals and teams (alternative to Trello, Notion, and Asana).</td>
<td>24693</td>
</tr><tr>
<td>94</td>
<td><a href="https://github.com/ArchiveBox/ArchiveBox" target="_blank" rel="noopener">ArchiveBox</a></td>
<td>Create HTML & screenshot archives of sites from your bookmarks, browsing history, RSS feeds, or other sources (alternative to Wayback Machine).</td>
<td>24690</td>
</tr><tr>
<td>95</td>
<td><a href="https://github.com/Anuken/Mindustry" target="_blank" rel="noopener">Mindustry</a></td>
<td>Factorio-like tower defense game. Build production chains to gather more resources, and build complex facilities.</td>
<td>24522</td>
</tr><tr>
<td>96</td>
<td><a href="https://github.com/typesense/typesense" target="_blank" rel="noopener">Typesense</a></td>
<td>Blazing fast, typo-tolerant open source search engine optimized for developer happiness and ease of use.</td>
<td>24115</td>
</tr><tr>
<td>97</td>
<td><a href="https://github.com/juspay/hyperswitch" target="_blank" rel="noopener">HyperSwitch</a></td>
<td>Payment switch to make payments fast, reliable and affordable. Connect with multiple payment processors and route traffic effortlessly, all with a single API integration.</td>
<td>24019</td>
</tr><tr>
<td>98</td>
<td><a href="https://github.com/arendst/Tasmota" target="_blank" rel="noopener">Tasmota</a></td>
<td>Open source firmware for ESP devices. Total local control with quick setup and updates. Control using MQTT, Web UI, HTTP or serial. Automate using timers, rules or scripts. Integration with home automation solutions.</td>
<td>23526</td>
</tr><tr>
<td>99</td>
<td><a href="https://github.com/ItzCrazyKns/Perplexica" target="_blank" rel="noopener">Perplexica</a></td>
<td>AI-powered search engine (alternative to Perplexity AI).</td>
<td>23444</td>
</tr><tr>
<td>100</td>
<td><a href="https://github.com/zulip/zulip" target="_blank" rel="noopener">Zulip</a></td>
<td>Zulip is a powerful, open source group chat application.</td>
<td>23236</td>
</tr><tr>
<td>101</td>
<td><a href="https://github.com/monicahq/monica" target="_blank" rel="noopener">Monica</a></td>
<td>Personal relationship manager, and a new kind of CRM to organize interactions with your friends and family.</td>
<td>23222</td>
</tr><tr>
<td>102</td>
<td><a href="https://github.com/plausible/analytics/" target="_blank" rel="noopener">Plausible Analytics</a></td>
<td>Simple, lightweight (< 1 KB) and privacy-friendly web analytics.</td>
<td>23064</td>
</tr><tr>
<td>103</td>
<td><a href="https://github.com/gitroomhq/postiz-app" target="_blank" rel="noopener">Postiz</a></td>
<td>Schedule posts, track the performance of your content, and manage all your social media accounts in one place (Alternative to Buffer, Hootsuite, Sprout Social).</td>
<td>22985</td>
</tr><tr>
<td>104</td>
<td><a href="https://github.com/9001/copyparty" target="_blank" rel="noopener">copyparty</a></td>
<td>Portable file server with accelerated resumable uploads, deduplication, WebDAV, FTP, zeroconf, media indexer, video thumbnails, audio transcoding, and write-only folders, in a single file with no mandatory dependencies.</td>
<td>22330</td>
</tr><tr>
<td>105</td>
<td><a href="https://github.com/lissy93/dashy" target="_blank" rel="noopener">Dashy</a></td>
<td>Feature-rich homepage for your homelab, with easy YAML configuration.</td>
<td>22161</td>
</tr><tr>
<td>106</td>
<td><a href="https://github.com/kovidgoyal/calibre" target="_blank" rel="noopener">Calibre</a></td>
<td>E-book library manager that can view, convert, and catalog e-books in most of the major e-book formats and provides a built-in Web server for remote clients.</td>
<td>22137</td>
</tr><tr>
<td>107</td>
<td><a href="https://github.com/hcengineering/platform" target="_blank" rel="noopener">Huly</a></td>
<td>All-in-one project management platform (alternative to Linear, Jira, Slack, Notion, Motion).</td>
<td>22100</td>
</tr><tr>
<td>108</td>
<td><a href="https://github.com/Sanster/IOPaint" target="_blank" rel="noopener">IOPaint</a></td>
<td>Image inpainting tool powered by SOTA AI Model.</td>
<td>21979</td>
</tr><tr>
<td>109</td>
<td><a href="https://github.com/saleor/saleor" target="_blank" rel="noopener">Saleor</a></td>
<td>Django based open-sourced e-commerce storefront.</td>
<td>21908</td>
</tr><tr>
<td>110</td>
<td><a href="https://github.com/node-red/node-red" target="_blank" rel="noopener">Node RED</a></td>
<td>Browser-based flow editor that helps you wiring hardware devices, APIs and online services to create IoT solutions.</td>
<td>21699</td>
</tr><tr>
<td>111</td>
<td><a href="https://github.com/jina-ai/jina/" target="_blank" rel="noopener">Jina</a></td>
<td>Cloud-native neural search framework for any kind of data.</td>
<td>21692</td>
</tr><tr>
<td>112</td>
<td><a href="https://github.com/actualbudget/actual" target="_blank" rel="noopener">Actual</a></td>
<td>Local-first personal finance tool based on zero-sum budgeting, supporting synchronization across devices, custom rules, manual transaction importing (from QIF, OFX, and QFX files), and optional automatic synchronization with many banks.</td>
<td>21397</td>
</tr><tr>
<td>113</td>
<td><a href="https://github.com/searxng/searxng/" target="_blank" rel="noopener">SearXNG</a></td>
<td>Internet metasearch engine which aggregates results from various search services and databases (Fork of Searx).</td>
<td>21012</td>
</tr><tr>
<td>114</td>
<td><a href="https://github.com/ente-io/ente" target="_blank" rel="noopener">Ente</a></td>
<td>An end-to-end encrypted photo-sharing platform (alternative to Google Photos, Apple Photos).</td>
<td>20924</td>
</tr><tr>
<td>115</td>
<td><a href="https://github.com/matomo-org/matomo" target="_blank" rel="noopener">Matomo</a></td>
<td>Web analytics that protects your data and your customers' privacy (alternative to Google Analytics).</td>
<td>20742</td>
</tr><tr>
<td>116</td>
<td><a href="https://github.com/wekan/wekan" target="_blank" rel="noopener">Wekan</a></td>
<td>Open-source Trello-like kanban.</td>
<td>20498</td>
</tr><tr>
<td>117</td>
<td><a href="https://github.com/WordPress/WordPress" target="_blank" rel="noopener">WordPress</a></td>
<td>World's most-used blogging and CMS engine.</td>
<td>20383</td>
</tr><tr>
<td>118</td>
<td><a href="https://github.com/bagisto/bagisto" target="_blank" rel="noopener">Bagisto</a></td>
<td>Leading Laravel open source e-commerce framework with multi-inventory sources, taxation, localization, dropshipping and more exciting features.</td>
<td>20252</td>
</tr><tr>
<td>119</td>
<td><a href="https://github.com/kestra-io/kestra" target="_blank" rel="noopener">Kestra</a></td>
<td>Event-driven, language-agnostic platform to create, schedule, and monitor workflows. In code. Coordinate data pipelines and tasks such as ETL and ELT.</td>
<td>20201</td>
</tr><tr>
<td>120</td>
<td><a href="https://github.com/firefly-iii/firefly-iii" target="_blank" rel="noopener">Firefly III</a></td>
<td>Firefly III is a modern financial manager. It helps you to keep track of your money and make budget forecasts. It supports credit cards, has an advanced rule engine and can import data from many banks.</td>
<td>20005</td>
</tr><tr>
<td>121</td>
<td><a href="https://github.com/xbmc/xbmc" target="_blank" rel="noopener">Kodi</a></td>
<td>Multimedia/Entertainment center, formerly known as XBMC. Runs on Android, BSD, Linux, macOS, iOS and Windows.</td>
<td>19722</td>
</tr><tr>
<td>122</td>
<td><a href="https://github.com/allinurl/goaccess" target="_blank" rel="noopener">GoAccess</a></td>
<td>Real-time web log analyzer and interactive viewer that runs in a terminal.</td>
<td>19664</td>
</tr><tr>
<td>123</td>
<td><a href="https://github.com/thingsboard/thingsboard" target="_blank" rel="noopener">Thingsboard</a></td>
<td>Open-source IoT Platform - Device management, data collection, processing and visualization.</td>
<td>19486</td>
</tr><tr>
<td>124</td>
<td><a href="https://github.com/wagtail/wagtail" target="_blank" rel="noopener">Wagtail</a></td>
<td>Django content management system focused on flexibility and user experience.</td>
<td>19479</td>
</tr><tr>
<td>125</td>
<td><a href="https://github.com/karakeep-app/karakeep" target="_blank" rel="noopener">Karakeep</a></td>
<td>Bookmark-everything app with a touch of AI for the data hoarders out there.</td>
<td>19094</td>
</tr><tr>
<td>126</td>
<td><a href="https://github.com/gravitational/teleport" target="_blank" rel="noopener">Teleport</a></td>
<td>Certificate authority and access plane for SSH, Kubernetes, web applications, and databases.</td>
<td>18991</td>
</tr><tr>
<td>127</td>
<td><a href="https://github.com/iv-org/invidious" target="_blank" rel="noopener">Invidious</a></td>
<td>Alternative YouTube front-end.</td>
<td>17704</td>
</tr><tr>
<td>128</td>
<td><a href="https://github.com/chartdb/chartdb" target="_blank" rel="noopener">ChartDB</a></td>
<td>Database diagrams editor that allows you to visualize and design your DB with a single query.</td>
<td>17635</td>
</tr><tr>
<td>129</td>
<td><a href="https://github.com/ether/etherpad-lite" target="_blank" rel="noopener">Etherpad</a></td>
<td>Highly customizable online editor providing collaborative editing in real-time.</td>
<td>17629</td>
</tr><tr>
<td>130</td>
<td><a href="https://github.com/knadh/listmonk" target="_blank" rel="noopener">Listmonk</a></td>
<td>High performance, self-hosted newsletter and mailing list manager with a modern dashboard.</td>
<td>17572</td>
</tr><tr>
<td>131</td>
<td><a href="https://github.com/zincsearch/zincsearch" target="_blank" rel="noopener">ZincSearch</a></td>
<td>Search engine that requires minimal resources (alternative to Elasticsearch).</td>
<td>17501</td>
</tr><tr>
<td>132</td>
<td><a href="https://github.com/chaitin/SafeLine" target="_blank" rel="noopener">SafeLine</a></td>
<td>Web application firewall / reverse proxy to protect your web apps from attacks and exploits.</td>
<td>17305</td>
</tr><tr>
<td>133</td>
<td><a href="https://github.com/BookStackApp/BookStack" target="_blank" rel="noopener">BookStack</a></td>
<td>Organize and store information. Stores documentation in a book like fashion.</td>
<td>17147</td>
</tr><tr>
<td>134</td>
<td><a href="https://github.com/bitwarden/server" target="_blank" rel="noopener">Bitwarden</a></td>
<td>Password manager with a webapp, browser extension, and mobile app.</td>
<td>16962</td>
</tr><tr>
<td>135</td>
<td><a href="https://github.com/lichess-org/lila" target="_blank" rel="noopener">Lila</a></td>
<td>Ad-less chess server powering lichess.org, with official iOS and Android client apps.</td>
<td>16958</td>
</tr><tr>
<td>136</td>
<td><a href="https://github.com/docker-mailserver/docker-mailserver" target="_blank" rel="noopener">docker-mailserver</a></td>
<td>Production-ready fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.) running inside a container. Only configuration files, no SQL database.</td>
<td>16883</td>
</tr><tr>
<td>137</td>
<td><a href="https://github.com/docmost/docmost" target="_blank" rel="noopener">docmost</a></td>
<td>Collaborative wiki and documentation software (alternative to Confluence, Notion).</td>
<td>16731</td>
</tr><tr>
<td>138</td>
<td><a href="https://github.com/koel/koel" target="_blank" rel="noopener">koel</a></td>
<td>Personal music streaming server that works.</td>
<td>16647</td>
</tr><tr>
<td>139</td>
<td><a href="https://github.com/leon-ai/leon" target="_blank" rel="noopener">Leon</a></td>
<td>Personal assistant who can live on your server.</td>
<td>16544</td>
</tr><tr>
<td>140</td>
<td><a href="https://github.com/overleaf/overleaf" target="_blank" rel="noopener">Overleaf</a></td>
<td>Web-based collaborative LaTeX editor.</td>
<td>16366</td>
</tr><tr>
<td>141</td>
<td><a href="https://github.com/activepieces/activepieces" target="_blank" rel="noopener">Activepieces</a></td>
<td>No-code business automation tool like Zapier or Tray. For example, you can send a Slack notification for each new Trello card.</td>
<td>16221</td>
</tr><tr>
<td>142</td>
<td><a href="https://github.com/krayin/laravel-crm" target="_blank" rel="noopener">Krayin</a></td>
<td>CRM solution for SMEs and Enterprises for complete customer lifecycle management.</td>
<td>16189</td>
</tr><tr>
<td>143</td>
<td><a href="https://github.com/flarum/flarum" target="_blank" rel="noopener">Flarum</a></td>
<td>Delightfully simple forums. Flarum is the next-generation forum software that makes online discussion fun again.</td>
<td>15936</td>
</tr><tr>
<td>144</td>
<td><a href="https://github.com/navidrome/navidrome" target="_blank" rel="noopener">Navidrome Music Server</a></td>
<td>Modern Music Server and Streamer, compatible with Subsonic/Airsonic.</td>
<td>15898</td>
</tr><tr>
<td>145</td>
<td><a href="https://github.com/postalserver/postal" target="_blank" rel="noopener">Postal</a></td>
<td>Complete and fully featured mail server for use by websites & web servers.</td>
<td>15822</td>
</tr><tr>
<td>146</td>
<td><a href="https://github.com/dutchcoders/transfer.sh" target="_blank" rel="noopener">transfer.sh</a></td>
<td>Easy file sharing from the command line.</td>
<td>15602</td>
</tr><tr>
<td>147</td>
<td><a href="https://github.com/janeczku/calibre-web" target="_blank" rel="noopener">Calibre Web</a></td>
<td>Browse, read and download eBooks using an existing Calibre database.</td>
<td>15206</td>
</tr><tr>
<td>148</td>
<td><a href="https://github.com/emqx/emqx" target="_blank" rel="noopener">EMQX</a></td>
<td>Scalable MQTT broker. Connect 100M+ IoT devices in one single cluster, move and process real-time IoT data with 1M msg/s throughput at 1ms latency.</td>
<td>15097</td>
</tr><tr>
<td>149</td>
<td><a href="https://github.com/ActivityWatch/activitywatch" target="_blank" rel="noopener">ActivityWatch</a></td>
<td>Automatically track how you spend time on your devices.</td>
<td>14971</td>
</tr><tr>
<td>150</td>
<td><a href="https://github.com/mail-in-a-box/mailinabox" target="_blank" rel="noopener">Mail-in-a-Box</a></td>
<td>Turns any Ubuntu server into a fully functional mail server with one command.</td>
<td>14842</td>
</tr><tr>
<td>151</td>
<td><a href="https://github.com/langfuse/langfuse" target="_blank" rel="noopener">Langfuse</a></td>
<td>LLM engineering platform for model tracing, prompt management, and application evaluation. Langfuse helps teams collaboratively debug, analyze, and iterate on their LLM applications such as chatbots or AI agents.</td>
<td>14803</td>
</tr><tr>
<td>152</td>
<td><a href="https://github.com/spree/spree" target="_blank" rel="noopener">Spree Commerce</a></td>
<td>Spree is a complete, modular & API-driven open source e-commerce solution for Ruby on Rails.</td>
<td>14798</td>
</tr><tr>
<td>153</td>
<td><a href="https://github.com/m1k1o/neko" target="_blank" rel="noopener">Neko</a></td>
<td>Virtual browser that runs in docker and uses WebRTC.</td>
<td>14756</td>
</tr><tr>
<td>154</td>
<td><a href="https://github.com/answerdev/answer" target="_blank" rel="noopener">Answer</a></td>
<td>Knowledge-based community software. You can use it to quickly build your Q&A community for product technical support, customer support, user communication, and more.</td>
<td>14746</td>
</tr><tr>
<td>155</td>
<td><a href="https://github.com/jupyterlab/jupyterlab/" target="_blank" rel="noopener">JupyterLab</a></td>
<td>Web-based environment for interactive and reproducible computing.</td>
<td>14741</td>
</tr><tr>
<td>156</td>
<td><a href="https://github.com/NodeBB/NodeBB" target="_blank" rel="noopener">NodeBB</a></td>
<td>Forum software built for the modern web.</td>
<td>14698</td>
</tr><tr>
<td>157</td>
<td><a href="https://github.com/caronc/apprise" target="_blank" rel="noopener">Apprise</a></td>
<td>Apprise allows you to send a notification to almost all of the most popular notification services available to us today such as: Telegram, Discord, Slack, Amazon SNS, Gotify, etc.</td>
<td>14192</td>
</tr><tr>
<td>158</td>
<td><a href="https://github.com/linkwarden/linkwarden" target="_blank" rel="noopener">LinkWarden</a></td>
<td>Bookmark and archive manager to store your useful links.</td>
<td>14110</td>
</tr><tr>
<td>159</td>
<td><a href="https://github.com/gollum/gollum" target="_blank" rel="noopener">Gollum</a></td>
<td>Simple, Git-powered wiki with a sweet API and local frontend.</td>
<td>14092</td>
</tr><tr>
<td>160</td>
<td><a href="https://github.com/LemmyNet/lemmy" target="_blank" rel="noopener">Lemmy</a></td>
<td>Link aggregator for the fediverse (alternative to Reddit).</td>
<td>13956</td>
</tr><tr>
<td>161</td>
<td><a href="https://github.com/Chocobozzz/PeerTube" target="_blank" rel="noopener">PeerTube</a></td>
<td>Decentralized video streaming platform using P2P (BitTorrent) directly in the web browser.</td>
<td>13925</td>
</tr><tr>
<td>162</td>
<td><a href="https://github.com/apache/druid" target="_blank" rel="noopener">Druid</a></td>
<td>Distributed, column-oriented, real-time analytics data store.</td>
<td>13791</td>
</tr><tr>
<td>163</td>
<td><a href="https://github.com/beetbox/beets" target="_blank" rel="noopener">Beets</a></td>
<td>Music library manager and MusicBrainz tagger (command-line and Web interface).</td>
<td>13717</td>
</tr><tr>
<td>164</td>
<td><a href="https://github.com/diaspora/diaspora" target="_blank" rel="noopener">diaspora*</a></td>
<td>Distributed social networking server.</td>
<td>13599</td>
</tr><tr>
<td>165</td>
<td><a href="https://github.com/haiwen/seafile" target="_blank" rel="noopener">Seafile</a></td>
<td>File hosting and sharing solution primary for teams and organizations.</td>
<td>13497</td>
</tr><tr>
<td>166</td>
<td><a href="https://github.com/gotify/server" target="_blank" rel="noopener">Gotify</a></td>
<td>Notification server with Android and CLI clients (alternative to PushBullet).</td>
<td>13416</td>
</tr><tr>
<td>167</td>
<td><a href="https://github.com/languagetool-org/languagetool" target="_blank" rel="noopener">LanguageTool</a></td>
<td>Proofread more than 20 languages. It finds many errors that a simple spell checker cannot detect.</td>
<td>13415</td>
</tr><tr>
<td>168</td>
<td><a href="https://github.com/transmission/transmission" target="_blank" rel="noopener">Transmission</a></td>
<td>Fast, easy, free Bittorrent client.</td>
<td>13342</td>
</tr><tr>
<td>169</td>
<td><a href="https://github.com/suitenumerique/docs" target="_blank" rel="noopener">Docs</a></td>
<td>Collaborative note taking, wiki and documentation platform that scales.</td>
<td>13144</td>
</tr><tr>
<td>170</td>
<td><a href="https://github.com/HabitRPG/habitica" target="_blank" rel="noopener">Habitica</a></td>
<td>Habit tracker app which treats your goals like a Role Playing Game.</td>
<td>13137</td>
</tr><tr>
<td>171</td>
<td><a href="https://github.com/uvdesk/community-skeleton" target="_blank" rel="noopener">UVDesk</a></td>
<td>UVDesk community is a service oriented, event driven extensible opensource helpdesk system that can be used by your organization to provide efficient support to your clients effortlessly whichever way you imagine.</td>
<td>13060</td>
</tr><tr>
<td>172</td>
<td><a href="https://github.com/automatisch/automatisch" target="_blank" rel="noopener">Automatisch</a></td>
<td>Business automation tool that lets you connect different services like Twitter, Slack, and more to automate your business processes (alternative to Zapier).</td>
<td>12963</td>
</tr><tr>
<td>173</td>
<td><a href="https://github.com/gophish/gophish" target="_blank" rel="noopener">Gophish</a></td>
<td>Powerful phishing framework that makes it easy to test your organization's exposure to phishing.</td>
<td>12935</td>
</tr><tr>
<td>174</td>
<td><a href="https://github.com/bytebase/bytebase" target="_blank" rel="noopener">Bytebase</a></td>
<td>Safe database schema change and version control for DevOps teams, supports MySQL, PostgreSQL, TiDB, ClickHouse, and Snowflake.</td>
<td>12844</td>
</tr><tr>
<td>175</td>
<td><a href="https://github.com/tinode/chat" target="_blank" rel="noopener">Tinode</a></td>
<td>Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots.</td>
<td>12686</td>
</tr><tr>
<td>176</td>
<td><a href="https://github.com/majodev/google-webfonts-helper" target="_blank" rel="noopener">google-webfonts-helper</a></td>
<td>Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets.</td>
<td>12572</td>
</tr><tr>
<td>177</td>
<td><a href="https://github.com/comet-ml/opik" target="_blank" rel="noopener">Opik</a></td>
<td>Evaluate, test, and ship LLM applications with a suite of observability tools to calibrate language model outputs across your dev and production lifecycle.</td>
<td>12374</td>
</tr><tr>
<td>178</td>
<td><a href="https://github.com/Sonarr/Sonarr" target="_blank" rel="noopener">Sonarr</a></td>
<td>Automatic TV Shows downloader and manager for Usenet and BitTorrent. It can grab, sort and rename new episodes and automatically upgrade the quality of files already downloaded when a better quality format becomes available.</td>
<td>12202</td>
</tr><tr>
<td>179</td>
<td><a href="https://github.com/LibreTranslate/LibreTranslate" target="_blank" rel="noopener">Libre Translate</a></td>
<td>Machine Translation API.</td>
<td>12179</td>
</tr><tr>
<td>180</td>
<td><a href="https://github.com/FreshRSS/FreshRSS" target="_blank" rel="noopener">FreshRSS</a></td>
<td>Self-hostable RSS feed aggregator.</td>
<td>12147</td>
</tr><tr>
<td>181</td>
<td><a href="https://github.com/mickael-kerjean/filestash" target="_blank" rel="noopener">Filestash</a></td>
<td>Web file manager that lets you manage your data anywhere it is located: FTP, SFTP, WebDAV, Git, S3, Minio, Dropbox, or Google Drive.</td>
<td>11988</td>
</tr><tr>
<td>182</td>
<td><a href="https://github.com/vector-im/element-web" target="_blank" rel="noopener">Element</a></td>
<td>Fully-featured Matrix client for Web, iOS & Android.</td>
<td>11986</td>
</tr><tr>
<td>183</td>
<td><a href="https://github.com/Radarr/Radarr" target="_blank" rel="noopener">Radarr</a></td>
<td>Automatically download movies via Usenet and BitTorrent (fork of Sonarr).</td>
<td>11948</td>
</tr><tr>
<td>184</td>
<td><a href="https://github.com/wallabag/wallabag" target="_blank" rel="noopener">Wallabag</a></td>
<td>Wallabag, formerly Poche, is a web application allowing you to save articles to read them later with improved readability.</td>
<td>11901</td>
</tr><tr>
<td>185</td>
<td><a href="https://github.com/magento/magento2" target="_blank" rel="noopener">Magento Open Source</a></td>
<td>Leading provider of open omnichannel innovation.</td>
<td>11892</td>
</tr><tr>
<td>186</td>
<td><a href="https://github.com/luanti-org/luanti" target="_blank" rel="noopener">Luanti</a></td>
<td>Voxel game engine (formerly Minetest). Play one of our many games, mod a game to your liking, make your own game, or play on a multiplayer server.</td>
<td>11742</td>
</tr><tr>
<td>187</td>
<td><a href="https://github.com/opf/openproject" target="_blank" rel="noopener">OpenProject</a></td>
<td>Manage your projects, tasks and goals. Collaborate via work packages and link them to your pull requests on Github.</td>
<td>11677</td>
</tr><tr>
<td>188</td>
<td><a href="https://github.com/YOURLS/YOURLS" target="_blank" rel="noopener">YOURLS</a></td>
<td>YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener. Features include password protection, URL customization, bookmarklets, statistics, API, plugins, jsonp.</td>
<td>11464</td>
</tr><tr>
<td>189</td>
<td><a href="https://github.com/documenso/documenso" target="_blank" rel="noopener">Documenso</a></td>
<td>Digital document signing platform (alternative to DocuSign).</td>
<td>11451</td>
</tr><tr>
<td>190</td>
<td><a href="https://github.com/opensearch-project/OpenSearch" target="_blank" rel="noopener">OpenSearch</a></td>
<td>Distributed and RESTful search engine.</td>
<td>11314</td>
</tr><tr>
<td>191</td>
<td><a href="https://github.com/octobercms/october" target="_blank" rel="noopener">october</a></td>
<td>CMS platform based on the Laravel PHP Framework.</td>
<td>11116</td>
</tr><tr>
<td>192</td>
<td><a href="https://github.com/manticoresoftware/manticoresearch/" target="_blank" rel="noopener">Manticore Search</a></td>
<td>Full-text search and data analytics, with fast response time for small, medium and big data (alternative to Elasticsearch).</td>
<td>11089</td>
</tr><tr>
<td>193</td>
<td><a href="https://github.com/formbricks/formbricks" target="_blank" rel="noopener">Formbricks</a></td>
<td>Experience Management Suite built on the largest open source survey stack worldwide. Gracefully gather feedback at every step of the customer journey to know what your customers need.</td>
<td>11076</td>
</tr><tr>
<td>194</td>
<td><a href="https://github.com/mailcow/mailcow-dockerized" target="_blank" rel="noopener">Mailcow</a></td>
<td>Mail server suite based on Dovecot, Postfix and other open source software, that provides a modern Web UI for administration.</td>
<td>10920</td>
</tr><tr>
<td>195</td>
<td><a href="https://github.com/benbusby/whoogle-search" target="_blank" rel="noopener">Whoogle</a></td>
<td>A self-hosted, ad-free, privacy-respecting metasearch engine.</td>
<td>10900</td>
</tr><tr>
<td>196</td>
<td><a href="https://github.com/drakkan/sftpgo" target="_blank" rel="noopener">SFTPGo</a></td>
<td>Flexible, fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support.</td>
<td>10835</td>
</tr><tr>
<td>197</td>
<td><a href="https://github.com/stashapp/stash" target="_blank" rel="noopener">Stash</a></td>
<td>A web-based library organizer and player for your adult media stash, with auto-tagging and metadata scraping support.</td>
<td>10791</td>
</tr><tr>
<td>198</td>
<td><a href="https://github.com/go-shiori/shiori" target="_blank" rel="noopener">Shiori</a></td>