-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAWESOME-SELFHOSTED.HTML
1707 lines (1707 loc) · 328 KB
/
AWESOME-SELFHOSTED.HTML
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
<h1 id="awesome-selfhosted">Awesome-Selfhosted</h1>
<p><a href="https://github.com/sindresorhus/awesome"><img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome" /></a> <a href="https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2266"><img src="https://img.shields.io/travis/awesome-selfhosted/awesome-selfhosted/master?label=link%20checks" /></a></p>
<p>Self-hosting is the practice of locally hosting and managing applications instead of renting from <a href="https://www.gnu.org/philosophy/who-does-that-server-really-serve.html">SaaSS</a> providers.</p>
<p>This is a list of <a href="https://en.wikipedia.org/wiki/Free_software">Free</a> Software <a href="https://en.wikipedia.org/wiki/Network_service">network services</a> and <a href="https://en.wikipedia.org/wiki/Web_application">web applications</a> which can be hosted locally. Non-Free software is listed on the <a href="non-free.md">Non-Free</a> page.</p>
<p>See <a href=".github/CONTRIBUTING.md">Contributing</a>.</p>
<hr />
<h2 id="table-of-contents">Table of contents</h2>
<ul>
<li><a href="#software">Software</a>
<ul>
<li><a href="#analytics">Analytics</a></li>
<li><a href="#archiving-and-digital-preservation-dp">Archiving and Digital Preservation (DP)</a></li>
<li><a href="#automation">Automation</a></li>
<li><a href="#blogging-platforms">Blogging Platforms</a></li>
<li><a href="#booking-and-scheduling">Booking and Scheduling</a></li>
<li><a href="#bookmarks-and-link-sharing">Bookmarks and Link Sharing</a></li>
<li><a href="#calendar--contacts">Calendar & Contacts</a></li>
<li><a href="#calendar--contacts---caldav-or-carddav-servers">Calendar & Contacts - CalDAV or CardDAV Servers</a></li>
<li><a href="#calendar--contacts---caldav-or-carddav-web-based-clients">Calendar & Contacts - CalDAV or CardDAV Web-based Clients</a></li>
<li><a href="#communication">Communication</a></li>
<li><a href="#communication---custom-communication-systems">Communication - Custom Communication Systems</a></li>
<li><a href="#communication---email">Communication - Email</a></li>
<li><a href="#communication---email---complete-solutions">Communication - Email - Complete Solutions</a></li>
<li><a href="#communication---email---mail-delivery-agents">Communication - Email - Mail Delivery Agents</a></li>
<li><a href="#communication---email---mail-transfer-agents">Communication - Email - Mail Transfer Agents</a></li>
<li><a href="#communication---email---mailing-lists-and-newsletters">Communication - Email - Mailing Lists and Newsletters</a></li>
<li><a href="#communication---email---webmail-clients">Communication - Email - Webmail Clients</a></li>
<li><a href="#communication---irc">Communication - IRC</a></li>
<li><a href="#communication---sip">Communication - SIP</a></li>
<li><a href="#communication---social-networks-and-forums">Communication - Social Networks and Forums</a></li>
<li><a href="#communication---xmpp">Communication - XMPP</a></li>
<li><a href="#communication---xmpp---servers">Communication - XMPP - Servers</a></li>
<li><a href="#communication---xmpp---web-clients">Communication - XMPP - Web Clients</a></li>
<li><a href="#community-supported-agriculture-csa">Community-Supported Agriculture (CSA)</a></li>
<li><a href="#conference-management">Conference Management</a></li>
<li><a href="#content-management-systems-cms">Content Management Systems (CMS)</a></li>
<li><a href="#dns">DNS</a></li>
<li><a href="#document-management">Document Management</a></li>
<li><a href="#document-management---e-books">Document Management - E-books</a></li>
<li><a href="#document-management---institutional-repository-and-digital-library-software">Document Management - Institutional Repository and Digital Library Software</a></li>
<li><a href="#document-management---integrated-library-systems-ils">Document Management - Integrated Library Systems (ILS)</a></li>
<li><a href="#e-commerce">E-commerce</a></li>
<li><a href="#federated-identity--authentication">Federated Identity & Authentication</a></li>
<li><a href="#feed-readers">Feed Readers</a></li>
<li><a href="#file-transfer--synchronization">File Transfer & Synchronization</a></li>
<li><a href="#file-transfer---distributed-filesystems">File Transfer - Distributed Filesystems</a></li>
<li><a href="#file-transfer---object-storage--file-servers">File Transfer - Object Storage & File Servers</a></li>
<li><a href="#file-transfer---peer-to-peer-filesharing">File Transfer - Peer-to-peer Filesharing</a></li>
<li><a href="#file-transfer---single-click--drag-n-drop-upload">File Transfer - Single-click & Drag-n-drop Upload</a></li>
<li><a href="#file-transfer---web-based-file-managers">File Transfer - Web-based File Managers</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#gateways-and-terminal-sharing">Gateways and Terminal Sharing</a></li>
<li><a href="#genealogy">Genealogy</a></li>
<li><a href="#groupware">Groupware</a></li>
<li><a href="#human-resources-management-hrm">Human Resources Management (HRM)</a></li>
<li><a href="#internet-of-things-iot">Internet of Things (IoT)</a></li>
<li><a href="#knowledge-management-tools">Knowledge Management Tools</a></li>
<li><a href="#learning-and-courses">Learning and Courses</a></li>
<li><a href="#maps-and-global-positioning-system-gps">Maps and Global Positioning System (GPS)</a></li>
<li><a href="#media-streaming">Media Streaming</a></li>
<li><a href="#media-streaming---audio-streaming">Media Streaming - Audio Streaming</a></li>
<li><a href="#media-streaming---multimedia-streaming">Media Streaming - Multimedia Streaming</a></li>
<li><a href="#media-streaming---video-streaming">Media Streaming - Video Streaming</a></li>
<li><a href="#miscellaneous">Miscellaneous</a></li>
<li><a href="#money-budgeting--management">Money, Budgeting & Management</a></li>
<li><a href="#monitoring">Monitoring</a></li>
<li><a href="#note-taking--editors">Note-taking & Editors</a></li>
<li><a href="#office-suites">Office Suites</a></li>
<li><a href="#password-managers">Password Managers</a></li>
<li><a href="#pastebins">Pastebins</a></li>
<li><a href="#personal-dashboards">Personal Dashboards</a></li>
<li><a href="#photo-and-video-galleries">Photo and Video Galleries</a></li>
<li><a href="#polls-and-events">Polls and Events</a></li>
<li><a href="#proxy">Proxy</a></li>
<li><a href="#read-it-later-lists">Read-it-later Lists</a></li>
<li><a href="#recipe-management">Recipe Management</a></li>
<li><a href="#resource-planning">Resource Planning</a></li>
<li><a href="#resource-planning---enterprise-resource-planning">Resource Planning - Enterprise Resource Planning</a></li>
<li><a href="#search-engines">Search Engines</a></li>
<li><a href="#self-hosting-solutions">Self-hosting Solutions</a></li>
<li><a href="#software-development">Software Development</a></li>
<li><a href="#software-development---api-management">Software Development - API Management</a></li>
<li><a href="#software-development---bug-trackers">Software Development - Bug Trackers</a></li>
<li><a href="#software-development---continuous-integration--deployment">Software Development - Continuous Integration & Deployment</a></li>
<li><a href="#software-development---documentation-generators">Software Development - Documentation Generators</a></li>
<li><a href="#software-development---faas--serverless">Software Development - FaaS & Serverless</a></li>
<li><a href="#software-development---ide--tools">Software Development - IDE & Tools</a></li>
<li><a href="#software-development---localization">Software Development - Localization</a></li>
<li><a href="#software-development---project-management">Software Development - Project Management</a></li>
<li><a href="#software-development---ux-testing">Software Development - UX Testing</a></li>
<li><a href="#static-site-generators">Static Site Generators</a></li>
<li><a href="#task-management--to-do-lists">Task Management & To-do Lists</a></li>
<li><a href="#ticketing">Ticketing</a></li>
<li><a href="#url-shorteners">URL Shorteners</a></li>
<li><a href="#vpn">VPN</a></li>
<li><a href="#web-servers">Web Servers</a></li>
<li><a href="#wikis">Wikis</a></li>
</ul></li>
<li><a href="#list-of-licenses">List of Licenses</a></li>
<li><a href="#external-links">External Links</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#authors">Authors</a></li>
<li><a href="#license">License</a></li>
</ul>
<hr />
<h2 id="software">Software</h2>
<!-- BEGIN SOFTWARE LIST -->
<h3 id="analytics">Analytics</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><strong>Please visit <a href="https://github.com/0xnr/awesome-analytics">Awesome Analytics</a></strong></p>
<p><em>Related: <a href="#personal-dashboards">Personal Dashboards</a></em></p>
<h3 id="archiving-and-digital-preservation-dp">Archiving and Digital Preservation (DP)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#content-management-systems-cms">Content Management Systems (CMS)</a></em></p>
<ul>
<li><a href="https://www.accesstomemory.org/">Access to Memory (AtoM)</a> - Web-based, open source application for standards-based archival description and access in a multilingual, multi-repository environment. (<a href="https://demo.accesstomemory.org/">Demo</a>, <a href="https://github.com/artefactual/atom">Source Code</a>) <code>AGPL-3.0-only</code> <code>PHP</code></li>
<li><a href="https://archivebox.io/">ArchiveBox</a> - Self-hosted <em>wayback machine</em> that creates HTML & screenshot archives of sites from your bookmarks, browsing history, RSS feeds, or other sources. (<a href="https://github.com/ArchiveBox/ArchiveBox">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://www.archivematica.org/">Archivematica</a> - Mature digital preservation system designed to maintain standards-based, long-term access to collections of digital objects. (<a href="https://sandbox.archivematica.org/administration/accounts/login/">Demo</a>, <a href="https://github.com/artefactual/archivematica">Source Code</a>) <code>AGPL-3.0-only</code> <code>Python</code></li>
<li><a href="https://archivesspace.org/">ArchivesSpace</a> - Archives information management application for managing and providing Web access to archives, manuscripts and digital objects. (<a href="https://archivesspace.org/application/demo/">Demo</a>, <a href="https://github.com/archivesspace/archivesspace">Source Code</a>) <code>ECL-2.0</code> <code>Ruby</code></li>
<li><a href="https://ckan.org">CKAN</a> - CKAN is a tool for making open data websites. (<a href="https://github.com/ckan/ckan">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://collectiveaccess.org/">Collective Access - Providence</a> - Highly configurable Web-based framework for management, description, and discovery of digital and physical collections supporting a variety of metadata standards, data types, and media formats. (<a href="https://github.com/collectiveaccess/providence">Source Code</a>) <code>GPL-3.0-only</code> <code>PHP</code></li>
<li><a href="https://github.com/horahoradev/horahora">Horahora</a> - Video hosting website and video archival manager for Niconico, Bilibili, and Youtube. <code>MIT</code> <code>Go</code></li>
</ul>
<h3 id="automation">Automation</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#internet-of-things-iot">Internet of Things (IoT)</a></em></p>
<ul>
<li><a href="https://github.com/tokenmill/accelerated-text">Accelerated Text</a> - Automatically generate multiple natural language descriptions of your data varying in wording and structure. <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/actionsflow/actionsflow">Actionsflow</a> <code>⚠</code> - The free Zapier/IFTTT alternative for developers to automate your workflows based on Github actions. <code>MIT</code> <code>Docker/Nodejs</code></li>
<li><a href="https://github.com/automaticmode/active_workflow">ActiveWorkflow</a> - An intelligent process and workflow automation platform based on software agents. <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://www.alltubedownload.net">Alltube</a> - Web interface for <a href="https://github.com/ytdl-org/youtube-dl">youtube-dl</a>, a program to download videos and audio from <a href="https://ytdl-org.github.io/youtube-dl/supportedsites.html">more than 100 websites</a>. (<a href="https://github.com/Rudloff/alltube">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://amiunique.org/">AmIUnique</a> - Learn how identifiable you are on the Internet (browser fingerprinting tool). (<a href="https://github.com/DIVERSIFY-project/amiunique">Source Code</a>) <code>MIT</code> <code>Java</code></li>
<li><a href="https://baserow.io/">Baserow</a> - Open source online database tool and Airtable alternative. Create your own database without technical experience. (<a href="https://gitlab.com/bramw/baserow">Source Code</a>) <code>MIT</code> <code>Python/Nodejs</code></li>
<li><a href="https://github.com/muesli/beehive">Beehive</a> - Flexible event and agent system, which allows you to create your own agents that perform automated tasks triggered by events and filters. <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/sentriz/betanin/">betanin</a> - Music organization man-in-the-middle of your torrent client and music player. Based on beets.io, similar to Sonarr and Radarr. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://chiefonboarding.com">ChiefOnboarding</a> - Employee onboarding platform that allows you to provision user accounts and create sequences with todo items, resources, text/email/Slack messages, and more! Available as a web portal and Slack bot. (<a href="https://github.com/chiefonboarding/ChiefOnboarding">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://couchpota.to/">CouchPotato</a> - CouchPotato is an automatic Video Library Manager for Movies. Automatic torrent/nzb searching, downloading, and processing at the qualities you want. (<a href="https://github.com/CouchPotato/CouchPotatoServer">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/guptachetan1997/Episodes">Episodes</a> <code>⚠</code> - Self Hosted TV show Episode tracker and recommender built using django, bootstrap4. <code>MIT</code> <code>Python</code></li>
<li><a href="https://exadel.com/solutions/compreface/">Exadel CompreFace</a> - face recognition system that provides REST API for face recognition, face detection, and other face services, and is easily deployed with docker. There are SDKs for Python and JavaScript languages. Can be used without prior machine learning skills. (<a href="https://github.com/exadel-inc/CompreFace">Source Code</a>) <code>Apache-2.0</code> <code>Docker/Java/Nodejs</code></li>
<li><a href="https://feed2toot.readthedocs.io/">feed2toot</a> - Feed2toot parses a RSS feed, extracts the last entries and sends them to Mastodon. (<a href="https://gitlab.com/chaica/feed2toot">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/cristoper/feedmixer">feedmixer</a> - FeedMixer is a WSGI (Python3) micro web service which takes a list of feed URLs and returns a new feed consisting of the most recent n entries from each given feed(Returns Atom, RSS, or JSON). (<a href="https://mretc.net/feedmixer/json?f=https://hnrss.org/newest&f=https://americancynic.net/atom.xml&n=1">Demo</a>) <code>WTFPL</code> <code>Python</code></li>
<li><a href="https://github.com/rembo10/headphones">Headphones</a> - Automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent, Deluge and Blackhole. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://healthchecks.io/">Healthchecks</a> - Django app which listens for pings and sends alerts when pings are late. (<a href="https://github.com/healthchecks/healthchecks">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://github.com/Binnette/homebank-converter">homebank-converter</a> - Web app to convert an export bank file to compatible Homebank csv. (<a href="https://binnette.github.io/homebank-converter/">Demo</a>) <code>AGPL-3.0</code> <code>HTML5</code></li>
<li><a href="https://github.com/zelon88/HRConvert2">HRConvert2</a> - Drag-and-drop file conversion server with session based authentication, automatic temporary file maintenance, and logging capability. <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/huginn/huginn">Huginn</a> - Allows you to build agents that monitor and act on your behalf. <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://kibitzr.github.io">Kibitzr</a> - Lightweight personal web assistant with powerful integrations. (<a href="https://github.com/kibitzr/kibitzr">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://krayincrm.com/">Krayin</a> - Free and Opensource Laravel CRM Application. (<a href="https://github.com/krayin/laravel-crm">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://gitlab.com/LazyLibrarian/LazyLibrarian">LazyLibrarian</a> <code>⚠</code> - LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://getleon.ai">Leon</a> - Open-source personal assistant who can live on your server. (<a href="https://github.com/leon-ai/leon">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://lidarr.audio/">Lidarr</a> - Lidarr is a music collection manager for Usenet and BitTorrent users. (<a href="https://github.com/Lidarr/Lidarr">Source Code</a>) <code>GPL-3.0</code> <code>C#</code></li>
<li><a href="https://pymedusa.com/">Medusa</a> - Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic. (<a href="https://github.com/pymedusa/Medusa">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/alexta69/metube">MeTube</a> - Web GUI for youtube-dl, with playlist support. Allows downloading videos from dozens of websites. <code>AGPL-3.0</code> <code>Python/Nodejs/Docker</code></li>
<li><a href="https://n8n.io/">n8n</a> - Free node based Workflow Automation Tool. Easily automate tasks across different services. (<a href="https://github.com/n8n-io/n8n">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://github.com/lardbit/nefarious">nefarious</a> - Web application that automates downloading Movies and TV Shows. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.nocodb.com/">NocoDB</a> - No-code platform that turns any database into a smart spreadsheet. It can be considered as an Airtable or Smartsheet alternative. (<a href="https://github.com/nocodb/nocodb">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://github.com/OliveTin/OliveTin">OliveTin</a> - OliveTin is a web interface for running Linux shell commands. <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/Patrowl/PatrowlManager">Patrowl</a> - Open Source, Smart and Scalable Security Operations Orchestration Platform. <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/akhilrex/podgrab">Podgrab</a> - Lightweight podcast manager and automatic podcast episode downloader. It will monitor podcasts for your and download them automatically whenever a new episode goes live. <code>GPL-3.0</code> <code>Docker/Go</code></li>
<li><a href="https://pyload.net/">pyLoad</a> - Lightweight, customizable and remotely manageable downloader for 1-click-hosting sites like rapidshare.com or uploaded.to. (<a href="https://github.com/pyload/pyload">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://radarr.video/">Radarr</a> - Radarr is an independent fork of Sonarr reworked for automatically downloading movies via Usenet and BitTorrent, à la Couchpotato. (<a href="https://github.com/Radarr/Radarr">Source Code</a>) <code>GPL-3.0</code> <code>C#</code></li>
<li><a href="https://www.sickrage.ca">SickRage</a> - SickRage is an automatic Video Library Manager for TV Shows. Automatic torrent/nzb searching, downloading, and processing at the qualities you want. (<a href="https://github.com/SickRage/SickRage">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.getsiteinspector.com/">SiteInspector</a> - Web-based tool for catching spelling errors, grammatical errors, broken links, and other errors on websites. (<a href="https://demo.getsiteinspector.com/reports">Demo</a>, <a href="https://github.com/siteinspector/siteinspector">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://sonarr.tv/">Sonarr</a> - 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. (<a href="https://github.com/Sonarr/Sonarr">Source Code</a>) <code>GPL-3.0</code> <code>C#</code></li>
<li><a href="https://stackstorm.com">StackStorm</a> - StackStorm (aka <em>IFTTT for Ops</em>) is event-driven automation for auto-remediation, security responses, troubleshooting, deployments, and more. Includes rules engine, workflow, 160 integration packs with 6000+ actions and ChatOps. (<a href="https://github.com/StackStorm/st2">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://github.com/ziahamza/webui-aria2">WebUI-aria2</a> - Interface to interact with the aria2 downloader. Very simple to use, just download and open index.html in any web browser. (<a href="https://ziahamza.github.io/webui-aria2/">Demo</a>) <code>MIT</code> <code>HTML5</code></li>
<li><a href="https://github.com/Totonyus/ydl_api">ydl_api</a> - Simple youtube-dl REST API to launch downloads on a distant server. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/Tzahi12345/YoutubeDL-Material">YoutubeDL-Material</a> - Material Design inspired YouTube downloader, based on youtube-dl. Supports playlists, quality select, search, dark mode and much more, all with a clean and modern design. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/DeviaVir/zenbot">Zenbot</a> - Zenbot is a lightweight, extendable, artificially intelligent trading bot for Bitcoin, Ether, Litecoin, and more. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/ovh/utask">µTask</a> - µTask is an automation engine that models and executes business processes declared in yaml. <code>BSD-3-Clause</code> <code>Go</code></li>
</ul>
<h3 id="blogging-platforms">Blogging Platforms</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#static-site-generators">Static Site Generators</a>, <a href="#content-management-systems-cms">Content Management Systems (CMS)</a></em></p>
<p><em>See also: <a href="https://www.weblogmatrix.org/">WeblogMatrix</a></em></p>
<ul>
<li><a href="https://antville.org">Antville</a> - Free, open source project aimed at the development of a high performance, feature rich weblog hosting software. (<a href="https://github.com/antville/antville">Source Code</a>) <code>Apache-2.0</code> <code>Javascript</code></li>
<li><a href="https://github.com/m1k1o/blog">Blog</a> - Facebook-styled blog. Free, extremely lightweight, single-user and easy to install. (<a href="https://blog.m1k1o.net/">Demo</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/BlogoText/blogotext">Blogotext</a> - Free blog-engine written in PHP and using SQLite. This offers you both an unmatched simplicity during installation and great performances. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.bludit.com/">Bludit</a> <code>⚠</code> - Simple application to build a site or blog in seconds. Bludit uses flat-files (text files in JSON format) to store posts and pages. (<a href="https://demo.bludit.com/">Demo</a>, <a href="https://github.com/bludit/bludit">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://github.com/ldemafelix/cadmus">Cadmus</a> - Cadmus is an extremely lightweight, flat-file blogging platform powered by Markdown. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://trycanvas.app/">Canvas</a> - A Laravel publishing platform. (<a href="https://github.com/austintoddj/canvas">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://chyrplite.net">Chyrp Lite</a> - Extra-awesome, extra-lightweight blog engine. (<a href="https://github.com/xenocrat/chyrp-lite">Source Code</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
<li><a href="https://dante-stories.herokuapp.com/">Dante Stories</a> - Self hosted Medium platform built with Ruby on Rails. (<a href="https://github.com/michelson/dante-stories">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://dotclear.org/">Dotclear</a> - Take control over your blog. (<a href="https://hg.dotclear.org/dotclear">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://formtools.org/">Formtools</a> - Powerful, flexible, free and open source PHP/MySQL script to manage your forms and data. (<a href="https://github.com/formtools">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://ghost.org/">Ghost</a> - Just a blogging platform. (<a href="https://github.com/TryGhost/Ghost">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://havenweb.org/">Haven</a> - Private blogging system with markdown editing and built in RSS reader. (<a href="https://havenweb.org/demo.html">Demo</a>, <a href="https://github.com/havenweb/haven">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://hotglue.me/">Hotglue</a> - Freehand CMS which allows to construct websites directly in a web-browser. It uses flat files for storage and provides an intuitive GUI. (<a href="https://hotglue.me/demo/">Demo</a>, <a href="https://github.com/k0a1a/hotglue2">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.htmly.com/">htmly</a> - Databaseless Blogging Platform (Flat-File Blog). (<a href="https://demo.htmly.com/">Demo</a>, <a href="https://github.com/danpros/htmly">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://withknown.com/">Known</a> - A collaborative social publishing platform. (<a href="https://github.com/idno/known">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://joinplu.me/">Plume</a> - Federated blogging engine, based on ActivityPub. (<a href="https://github.com/Plume-org/Plume">Source Code</a>) <code>AGPL-3.0</code> <code>Rust</code></li>
<li><a href="https://pluxml.org">PluXml</a> - XML-based blog/CMS platform. (<a href="https://github.com/pluxml/PluXml">Source Code</a>) <code>GPL-1.0</code> <code>PHP</code></li>
<li><a href="https://docs.s9y.org/">Serendipity</a> - Serendipity (s9y) is a highly extensible and customizable PHP blog engine using Smarty templating. (<a href="https://github.com/s9y/serendipity">Source Code</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
</ul>
<h3 id="booking-and-scheduling">Booking and Scheduling</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#polls-and-events">Polls and Events</a></em></p>
<ul>
<li><a href="https://alf.io/">Alf.io</a> - The open source ticket reservation system. (<a href="https://demo.alf.io/authentication">Demo</a>, <a href="https://github.com/alfio-event/alf.io">Source Code</a>) <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://calendso.com/">Calendso</a> - The open-source online appointment scheduling system. (<a href="https://app.calendso.com/bailey">Demo</a>, <a href="https://github.com/calendso/calendso">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://easyappointments.org/">Easy!Appointments</a> - A highly customizable web application that allows your customers to book appointments with you via the web. (<a href="https://easyappointments.org/demo/">Demo</a>, <a href="https://github.com/alextselegidis/easyappointments">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="bookmarks-and-link-sharing">Bookmarks and Link Sharing</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/dyu/bookmarks">dyu bookmarks</a> - Single-threaded/process bookmark app powered by leveldb and uWebSockets. Supports importing from Delicious and Chrome. (<a href="https://dyuproject.com/bookmarks/">Demo</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/jonschoning/espial">Espial</a> - An open-source, web-based bookmarking server. <code>AGPL-3.0</code> <code>Haskell</code></li>
<li><a href="https://mozilla-services.readthedocs.io/en/latest/howtos/run-fxa.html">Firefox Account Server</a> - This allows you to host your own Firefox accounts server. (<a href="https://github.com/mozilla/fxa">Source Code</a>) <code>MPL-2.0</code> <code>Nodejs, Java</code></li>
<li><a href="https://github.com/mozilla-services/syncserver">Firefox Sync Server</a> - Sync Firefox bookmarks, passwords, history, tabs, preferences. <code>MPL-2.0</code> <code>Python</code></li>
<li><a href="https://geekmarks.dmitryfrank.com/">Geekmarks</a> - Personal bookmarking service focused on speed and organization using hierarchical tags. (<a href="https://github.com/dimonomid/geekmarks">Source Code</a>) <code>BSD-2-Clause</code> <code>Go</code></li>
<li><a href="https://git.mills.io/prologic/golinks">golinks</a> - Web application that allows you to create smart bookmarks, commands and aliases by pointing your web browser’s default search engine at a running instance. Similar to bunny1 or yubnub. (<a href="https://search.mills.io">Demo</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/hackershare/hackershare">Hackershare</a> - Social bookmarks website for hackers. (<a href="https://hackershare.dev">Demo</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://www.linkace.org/">LinkAce</a> - A bookmark archive with automatic backups to the Internet Archive, link monitoring, and a full REST API. Installation is done via Docker, or as a simple PHP application. (<a href="https://demo.linkace.org/">Demo</a>, <a href="https://github.com/Kovah/LinkAce/">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/sissbruecker/linkding">linkding</a> - Minimal bookmark management with a fast and clean UI. Simple installation through Docker and can run on your Raspberry Pi. (<a href="https://demo.linkding.link/">Demo</a>) <code>MIT</code> <code>Docker/Python/Nodejs</code></li>
<li><a href="https://lobste.rs">Lobsters</a> - Run your own link aggregation site. (<a href="https://github.com/jcs/lobsters">Source Code</a>) <code>BSD-3-Clause</code> <code>Ruby</code></li>
<li><a href="https://nofussbm.herokuapp.com/signup.html">No Fuss Bookmarks</a> - Very simple software and service to store bookmarks especially designed for hackers (that don’t need fancy interfaces, but nice API). (<a href="https://github.com/mapio/nofussbm">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://getpinry.com/">Pinry</a> - The tiling image board system for people who want to save, tag, and share images, videos, and webpages. (<a href="https://github.com/pinry/pinry">Source Code</a>) <code>BSD-2-Clause</code> <code>Python</code></li>
<li><a href="https://github.com/kanishka-linux/reminiscence">Reminiscence</a> - Self-Hosted Bookmark And Archive Manager. <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/shaarli/Shaarli">Shaarli</a> - Personal, minimalist, super-fast, no-database bookmarking and link sharing platform. (<a href="https://demo.shaarli.org">Demo</a>) <code>Zlib</code> <code>PHP</code></li>
<li><a href="https://github.com/go-shiori/shiori">Shiori</a> - Simple bookmark manager built with Go. <code>MIT</code> <code>Go</code></li>
<li><a href="https://ungleich.ch/u/projects/ubookmark/">ubookmark</a> - LDAP enabled bookmarking service. (<a href="https://ipv6.blog">Demo</a>, <a href="https://code.ungleich.ch/ungleich-public/ubookmark/">Source Code</a>) <code>GPL-2.0</code> <code>Python</code></li>
<li><a href="https://unmark.it/">unmark</a> - Open source to do app for links. (<a href="https://github.com/cdevroe/unmark">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.xbrowsersync.org">xBrowserSync</a> - Open source tool for syncing browser data between browsers and devices. (<a href="https://github.com/xBrowserSync">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
</ul>
<h3 id="calendar-contacts">Calendar & Contacts</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#groupware">Groupware</a></em></p>
<p><em>See also: <a href="https://en.wikipedia.org/wiki/Comparison_of_CalDAV_and_CardDAV_implementations">Comparison of CalDAV and CardDAV implementations - Wikipedia</a></em></p>
<h3 id="calendar-contacts---caldav-or-carddav-servers">Calendar & Contacts - CalDAV or CardDAV Servers</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://sabre.io/baikal/">Baïkal</a> - Lightweight CalDAV and CardDAV server based on sabre/dav. (<a href="https://github.com/sabre-io/Baikal">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://keithp.com/calypso/">calypso</a> - Python-based CalDAV and CardDAV server, forked from Radicale. (<a href="https://keithp.com/git/calypso.git">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.davical.org/">DAViCal</a> - Server for calendar sharing (CalDAV) that uses a PostgreSQL database as a data store. (<a href="https://gitlab.com/davical-project/davical">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/tchapi/davis/">Davis</a> - A simple, dockerizable and fully translatable admin interface for sabre/dav based on Symfony 5 and Bootstrap 4, largely inspired by Baïkal. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://f-droid.org/packages/org.decsync.cc/">DecSync CC</a> - Serverless contacts, calendar synchronization using your own file syncing method i.e Syncthing, Nextcloud etc. (<a href="https://github.com/39aldo39/DecSyncCC">Source Code</a>) <code>GPL-3.0</code> <code>Kotlin</code></li>
<li><a href="https://www.etebase.com/">Etebase (EteSync)</a> - End-to-end encrypted and journaled personal information server supporting calendar and contact data, offering its own clients. (<a href="https://github.com/etesync/server">Source Code</a>) <code>AGPL-3.0</code> <code>Python/Django</code></li>
<li><a href="https://radicale.org/">Radicale</a> - Simple calendar and contact server with extremely low administrative overhead. (<a href="https://github.com/Kozea/Radicale">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://sabre.io/">SabreDAV</a> - Open source CardDAV, CalDAV, and WebDAV framework and server. (<a href="https://github.com/sabre-io/dav">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.xandikos.org/">Xandikos</a> - Open source CardDAV and CalDAV server with minimal administrative overhead, backed by a Git repository. (<a href="https://github.com/jelmer/xandikos">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
</ul>
<h3 id="calendar-contacts---caldav-or-carddav-web-based-clients">Calendar & Contacts - CalDAV or CardDAV Web-based Clients</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://agendav.org/">AgenDAV</a> - Multilanguage CalDAV web client with a rich AJAX interface and shared calendars support. (<a href="https://github.com/agendav/agendav">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.etesync.com/faq/#web-client">EteSync Web</a> - EteSync’s official Web-based client (i.e., their Web app). (<a href="https://client.etesync.com/">Demo</a>, <a href="https://github.com/etesync/etesync-web">Source Code</a>) <code>AGPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://www.inf-it.com/open-source/clients/infcloud/">InfCloud</a> - Open source CalDAV/CardDAV web client implementation. (<a href="https://www.inf-it.com/infcloud/">Demo</a>, <a href="https://www.inf-it.com/InfCloud_0.13.1.zip">Source Code</a>) <code>AGPL-3.0</code> <code>Javascript</code></li>
</ul>
<h3 id="communication">Communication</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<h3 id="communication---custom-communication-systems">Communication - Custom Communication Systems</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/niedev/BluetoothCommunicatorExample">BluetoothCommunicatorExample</a> - Bluetooth LE chat app to communicate between android devices with P2P architecture. (<a href="https://github.com/niedev/RTranslator">Clients</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/centrifugal/centrifugo">Centrifugo</a> - Language-agnostic real-time messaging (Websocket or SockJS) server. (<a href="https://github.com/centrifugal/centrifugo#demo">Demo</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://chaskiq.io">Chaskiq</a> - Full featured livechat, helpcenter and CRM as an alternative to Intercom & Drift, Crisp and others. (<a href="https://github.com/chaskiq/chaskiq">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://www.chatwoot.com">Chatwoot</a> - Self-hosted customer communication platform, an alternative to Intercom & Zendesk. (<a href="https://github.com/chatwoot/chatwoot">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://github.com/rafael-santiago/cherry">Cherry</a> - Tiny webchat server. <code>GPL-2.0</code> <code>Go</code></li>
<li><a href="https://conduit.rs/">Conduit</a> - A simple, fast, and reliable chat server powered by Matrix. (<a href="https://gitlab.com/famedly/conduit">Source Code</a>) <code>Apache-2.0</code> <code>Rust</code></li>
<li><a href="https://github.com/darkwire/darkwire.io">Darkwire.io</a> - End-to-end encrypted instant web chat. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://element.io">Element</a> - Fully-featured Matrix client for Web, iOS & Android. (<a href="https://github.com/vector-im/element-web">Source Code</a>) <code>Apache-2.0</code> <code>Javascript</code></li>
<li><a href="https://github.com/enigma-reloaded/enigma-reloaded">Enigma Reloaded</a> - DIY Message and file encryption for any platform. <code>GPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://freenetproject.org/index.html">Freenet</a> - Anonymously share files, browse and publish <em>freesites</em> (web sites accessible only through Freenet) and chat on forums. (<a href="https://github.com/freenet/fred">Source Code</a>) <code>GPL-2.0</code> <code>Java</code></li>
<li><a href="https://galene.org/">Galene</a> - Galène (or Galene) is a videoconference server (an “SFU”) that is easy to deploy and that requires moderate server resources. (<a href="https://github.com/jech/galene">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://gnunet.org/">GNUnet</a> - Free software framework for decentralized, peer-to-peer networking. (<a href="https://gnunet.org/git/">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://gotify.net/">Gotify</a> - Self-hosted notification server with Android and CLI clients, similar to PushBullet. (<a href="https://github.com/gotify/server">Source Code</a>, <a href="https://github.com/gotify/android">Clients</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://hawkpost.co">Hawkpost</a> - HawkPost is a web app that lets you create unique links that you can share with a person that desires to send you important information but doesn’t know how to encrypt it. The message is encrypted in their browser and sent to your email address. (<a href="https://github.com/whitesmith/hawkpost">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://jami.net/">Jami</a> - Free and universal communication platform which preserves the user’s privacy and freedoms (formerly GNU Ring). (<a href="https://git.ring.cx/savoirfairelinux/ring-project">Source Code</a>) <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://jitsi.org/Projects/JitsiMeet">Jitsi Meet</a> - Jitsi Meet is an OpenSource (MIT) WebRTC Javascript application that uses Jitsi Videobridge to provide high quality, scalable video conferences. (<a href="https://github.com/jitsi/jitsi-meet">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://jitsi.org/Projects/JitsiVideobridge">Jitsi Video Bridge</a> - WebRTC compatible Selective Forwarding Unit (SFU) that allows for multiuser video communication. (<a href="https://github.com/jitsi/jitsi-videobridge">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/php-kchat/kchat">KChat</a> - PHP Based Live Chat Application. <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/cryptag/leapchat">LeapChat</a> - Ephemeral, encrypted, in-browser chat rooms. <code>AGPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://sdelements.github.io/lets-chat/">Lets-Chat</a> - Self hosted chat suite written in Node. (<a href="https://github.com/sdelements/lets-chat">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://librenews.io/">LibreNews</a> - Decentralized and secure breaking news notification system. (<a href="https://github.com/milesmcc/LibreNews-Server/">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://livehelperchat.com/">Live Helper Chat</a> - Live Support chat for your website. (<a href="https://github.com/LiveHelperChat/livehelperchat">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://livekit.io/">LiveKit</a> - Modern, scalable WebRTC conferencing platform with client SDKs. (<a href="https://livekit.io/playground">Demo</a>, <a href="https://github.com/livekit/livekit-server">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://matrix.org/docs/projects/client/matrix-console-web">Matrix Console Web</a> - Web client meant to be a showcase of Matrix capabilities, and reference implementation of the Matrix standard. (<a href="https://github.com/matrix-org/matrix-angular-sdk">Source Code</a>) <code>Apache-2.0</code> <code>Javascript</code></li>
<li><a href="https://mattermost.org/">Mattermost</a> - Open-source, on-prem Slack-alternative. It can be integrated with Gitlab. (<a href="https://github.com/mattermost/mattermost-server">Source Code</a>) <code>AGPL-3.0/Apache-2.0</code> <code>Go</code></li>
<li><a href="https://miaou.dystroy.org/login">MiAOU</a> - Multi-room persistent chat server. (<a href="https://github.com/Canop/miaou">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://mibew.org">Mibew</a> - Mibew Messenger is an open-source live support application written in PHP and MySQL. It enables one-on-one chat assistance in real-time directly from your website. (<a href="https://mibew.org/demo2">Demo</a>, <a href="https://github.com/Mibew/mibew">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://wiki.mumble.info/wiki/Main_Page">Mumble</a> - Low-latency, high quality voice/text chat software. (<a href="https://github.com/mumble-voip/mumble">Source Code</a>, <a href="https://wiki.mumble.info/wiki/3rd_Party_Applications">Clients</a>) <code>BSD-3-Clause</code> <code>C++</code></li>
<li><a href="https://ots.fyi/">OTS</a> - One-Time-Secret sharing platform with a symmetric 256bit AES encryption in the browser. (<a href="https://github.com/Luzifer/ots">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://papercups.io/">Papercups</a> - An open source live customer chat web app written in Elixir. (<a href="https://app.papercups.io/demo">Demo</a>, <a href="https://github.com/papercups-io/papercups">Source Code</a>) <code>MIT</code> <code>Elixir</code></li>
<li><a href="https://github.com/pushbits/server">PushBits</a> - Self-hosted notification server for relaying push notifications via Matrix, similar to PushBullet and Gotify. <code>ISC</code> <code>Go</code></li>
<li><a href="https://github.com/soketi/pws">pWS</a> - pWS is a free, open-source Pusher drop-in alternative. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://rallly.co">Rallly</a> - Rallly is a free collaborative scheduling service. (<a href="https://github.com/lukevella/Rallly">Source Code</a>) <code>CC-BY-SA-4.0</code> <code>Nodejs</code></li>
<li><a href="https://retroshare.cc">RetroShare</a> - Secured and decentralized communication system. Offers decentralized chat, forums, messaging, file transfer. (<a href="https://github.com/RetroShare/RetroShare">Source Code</a>) <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://revolt.chat/">Revolt</a> - Revolt is a user-first chat platform built with modern web technologies. (<a href="https://github.com/revoltchat">Source Code</a>) <code>AGPL-3.0</code> <code>Rust</code></li>
<li><a href="https://rocket.chat/">Rocket.Chat</a> - Teamchat solution similar to Gitter.im or Slack. (<a href="https://github.com/RocketChat/Rocket.Chat">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/smallwat3r/shhh">Shhh</a> - Keep secrets out of emails or chat logs, share them using secure links with passphrase and expiration dates. <code>MIT</code> <code>Python</code></li>
<li><a href="https://spectrum.im/">Spectrum 2</a> - Spectrum 2 is an open source instant messaging transport. It allows users to chat together even when they are using different IM networks. (<a href="https://github.com/SpectrumIM/spectrum2">Source Code</a>) <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://www.spreed.me/">Spreed</a> - WebRTC audio/video calls, conferencing server, and web client. (<a href="https://github.com/strukturag/spreed-webrtc">Source Code</a>) <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://cweb.gitlab.io/StoneAge.html">StoneAge Messenger</a> - A self-hosted Android messenger, S3-compatible storage is the only backend needed. (<a href="https://gitlab.com/cweb-repos/cweb-conversations">Source Code</a>, <a href="https://f-droid.org/en/packages/com.cweb.messenger/">Clients</a>) <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://matrix.org/docs/projects/server/synapse">Synapse</a> - Server for <a href="https://matrix.org/">Matrix</a>, an open standard for decentralized persistent communication. (<a href="https://github.com/matrix-org/synapse">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://syndie.de">Syndie</a> - Syndie is a libre system for operating distributed forums. <code>CC0-1.0</code> <code>Java</code></li>
<li><a href="https://github.com/typpo/textbelt">TextBelt</a> <code>⚠</code> - Outgoing SMS API that uses carrier-specific gateways to deliver your text messages for free, and without ads. <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://github.com/tinode">Tinode</a> - Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots. (<a href="https://sandbox.tinode.co/">Demo</a>, <a href="https://github.com/tinode/chat">Source Code</a>, <a href="https://github.com/tinode/webapp">Clients</a>) <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://tox.chat/">Tox</a> - Distributed, secure messenger with audio and video chat capabilities. (<a href="https://github.com/TokTok/c-toxcore">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://blog.trailofbits.com/2015/12/15/self-hosted-video-chat-with-tuber/">Tuber</a> - Peer-to-peer video chat that works. (<a href="https://github.com/trailofbits/tubertc">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://github.com/lovasoa/whitebophir#wbo">WBO</a> - A web Whiteboard to collaborate in real-time on schemas, drawings, and notes. (<a href="https://wbo.ophir.dev/">Demo</a>) <code>AGPL-3.0</code> <code>Nodejs/Docker</code></li>
<li><a href="https://zeronet.io/">ZeroNet</a> <code>⚠</code> - Open, free, and uncensorable websites, using Bitcoin cryptography and BitTorrent network. (<a href="https://github.com/HelloZeroNet/ZeroNet">Source Code</a>) <code>GPL-2.0</code> <code>Python</code></li>
<li><a href="https://zulip.org">Zulip</a> - Zulip is a powerful, open source group chat application. (<a href="https://github.com/zulip/zulip">Source Code</a>) <code>Apache-2.0/Other</code> <code>Python</code></li>
</ul>
<h3 id="communication---email">Communication - Email</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<h3 id="communication---email---complete-solutions">Communication - Email - Complete Solutions</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>Simple deployment of a mail server, e.g. for inexperienced or impatient admins.</p>
<ul>
<li><a href="https://anonaddy.com">AnonAddy</a> - Open source email forwarding service for creating aliases. (<a href="https://github.com/anonaddy/anonaddy">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://docs.debops.org/">DebOps</a> - Your Debian-based data center in a box. A set of general-purpose Ansible roles that can be used to manage Debian or Ubuntu hosts. (<a href="https://github.com/debops/debops">Source Code</a>) <code>GPL-3.0-only</code> <code>YAML/Ansible/Python</code></li>
<li><a href="https://docker-mailserver.github.io/docker-mailserver/edge/">docker-mailserver</a> - Production-ready fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.) running inside a container. Only configuration files, no SQL database. (<a href="https://github.com/docker-mailserver/docker-mailserver">Source Code</a>) <code>MIT</code> <code>Docker</code></li>
<li><a href="https://github.com/LukeSmithxyz/emailwiz">emailwiz</a> - Luke Smith’s bash script to completely automate the setup of a Postfix/Dovecot/SpamAssassin/OpenDKIM server on debian. <code>GPL-3.0</code> <code>Bash</code></li>
<li><a href="https://github.com/Excision-Mail/Excision-Mail">Excision Mail</a> - Fullstack, security focused mailserver based on OpenSMTPD for OpenBSD using ansible. <code>ISC</code> <code>Shell/Ansible</code></li>
<li><a href="https://github.com/progmaticltd/homebox">homebox</a> - Suite of Ansible scripts to deploy a fully functional mail server on Debian. Unobtrusive and automatic as much as possible, focusing on stability and security. <code>GPL-3.0</code> <code>Shell</code></li>
<li><a href="https://inboxen.org">Inboxen</a> - Inboxen is a service that provides you with an infinite number of unique inboxes. (<a href="https://github.com/Inboxen/Inboxen">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.iredmail.org/">iRedMail</a> - Full-featured mail server solution based on Postfix and Dovecot. (<a href="https://github.com/iredmail/iRedMail">Source Code</a>) <code>GPL-3.0</code> <code>Shell</code></li>
<li><a href="https://github.com/foxcpp/maddy">Maddy Mail Server</a> - All-in-one mail server that implements SMTP (both MTA and MX) and IMAP. Replaces Postfix, Dovecot, OpenDKIM, OpenSPF, OpenDMARC with single daemon. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://mailinabox.email/">Mail-in-a-Box</a> - Turns any Ubuntu server into a fully functional mail server with one command. (<a href="https://github.com/mail-in-a-box/mailinabox">Source Code</a>) <code>CC0-1.0</code> <code>Shell</code></li>
<li><a href="https://mailcow.email/">Mailcow</a> - Mail server suite based on Dovecot, Postfix and other open source software, that provides a modern Web UI for administration. (<a href="https://github.com/mailcow/mailcow-dockerized">Source Code</a>) <code>GPL-2.0</code> <code>Docker/PHP</code></li>
<li><a href="https://mailu.io/">Mailu</a> - Mailu is a simple yet full-featured mail server as a set of Docker images. (<a href="https://github.com/Mailu/Mailu">Source Code</a>) <code>MIT</code> <code>Docker/Python</code></li>
<li><a href="https://modoboa.org/en/">Modoboa</a> - Modoboa is a mail hosting and management platform including a modern and simplified Web User Interface. (<a href="https://github.com/modoboa/modoboa">Source Code</a>) <code>ISC</code> <code>Python</code></li>
<li><a href="https://github.com/xyfir/ptorx">Ptorx</a> - Email privacy. Anonymously send and receive with alias forwarding. <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://gitlab.com/simple-nixos-mailserver/nixos-mailserver">Simple NixOS Mailserver</a> - Complete mailserver solution leveraging the Nix Ecosystem. <code>GPL-3.0</code> <code>Nix</code></li>
<li><a href="https://simplelogin.io">SimpleLogin</a> - Open source email alias solution to protect your email address. Comes with browser extensions and mobile apps. (<a href="https://github.com/simple-login/app">Source Code</a>) <code>MIT</code> <code>Docker/Python</code></li>
<li><a href="https://wildduck.email/">wildduck</a> - Scalable no-SPOF IMAP/POP3 mail server. (<a href="https://github.com/nodemailer/wildduck">Source Code</a>) <code>EUPL-1.2</code> <code>Nodejs</code></li>
</ul>
<h3 id="communication---email---mail-delivery-agents">Communication - Email - Mail Delivery Agents</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>MDAs - IMAP/POP3 software</p>
<ul>
<li><a href="https://www.cyrusimap.org/">Cyrus IMAP</a> - Email (IMAP/POP3), contacts and calendar server. (<a href="https://github.com/cyrusimap/cyrus-imapd">Source Code</a>) <code>BSD-3-Clause-Attribution</code> <code>C</code></li>
<li><a href="https://www.dovecot.org/">Dovecot</a> - IMAP and POP3 server written primarily with security in mind. (<a href="https://github.com/dovecot/core">Source Code</a>) <code>MIT/LGPL-2.1</code> <code>C</code></li>
<li><a href="https://github.com/Feuerhamster/mailform">MailForm</a> - Lightweight self-hosted open source alternative to Formspree and SendGrid. <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://www.mailpiler.org/wiki/start">Piler</a> - feature-rich open source email archiving solution. (<a href="https://bitbucket.org/jsuto/piler">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
</ul>
<h3 id="communication---email---mail-transfer-agents">Communication - Email - Mail Transfer Agents</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>MTAs / SMTP servers</p>
<ul>
<li><a href="https://blitiri.com.ar/p/chasquid/">chasquid</a> - SMTP (email) server with a focus on simplicity, security, and ease of operation. (<a href="https://blitiri.com.ar/git/r/chasquid/">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://www.courier-mta.org/">Courier MTA</a> - Fast, scalable, enterprise mail/groupware server providing ESMTP, IMAP, POP3, webmail, mailing list, basic web-based calendaring and scheduling services. (<a href="https://www.courier-mta.org/repo.html">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://www.exim.org/">Exim</a> - Message transfer agent (MTA) developed at the University of Cambridge. (<a href="https://git.exim.org/exim.git">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://haraka.github.io/">Haraka</a> - High-performance, pluginable SMTP server written in Javascript. (<a href="https://github.com/haraka/Haraka">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://mailcatcher.me/">MailCatcher</a> - Ruby gem that deploys a simply SMTP MTA gateway that accepts all mail and displays in web interface. Useful for debugging or development. (<a href="https://github.com/sj26/mailcatcher">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://gitlab.com/markbeeson/maildrop">Maildrop</a> - Disposable email SMTP server, also useful for development. <code>MIT</code> <code>Scala</code></li>
<li><a href="https://github.com/mailhog/MailHog">MailHog</a> - Small Golang executable which runs an SMTP MTA gateway that accepts all mail and displays in web interface. Useful for debugging or development. <code>MIT</code> <code>Go</code></li>
<li><a href="https://opensmtpd.org/">OpenSMTPD</a> - Secure SMTP server implementation from the OpenBSD project. (<a href="https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.sbin/smtpd/">Source Code</a>) <code>ISC</code> <code>C</code></li>
<li><a href="http://www.postfix.org/">Postfix</a> - Fast, easy to administer, and secure Sendmail replacement. <code>IPL-1.0</code> <code>C</code></li>
<li><a href="https://cr.yp.to/qmail.html">Qmail</a> - Secure Sendmail replacement. (<a href="https://sources.debian.net/src/netqmail/1.06-5/">Source Code</a>) <code>CC0-1.0</code> <code>C</code></li>
<li><a href="https://www.proofpoint.com/us/products/email-protection/open-source-email-solution">Sendmail</a> - Message transfer agent (MTA). <code>Sendmail</code> <code>C</code></li>
<li><a href="https://www.slimta.org">Slimta</a> - Mail Transfer Library built on Python. (<a href="https://github.com/slimta/python-slimta">Source Code</a>) <code>MIT</code> <code>Python</code></li>
</ul>
<h3 id="communication---email---mailing-lists-and-newsletters">Communication - Email - Mailing Lists and Newsletters</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>Mailing lists servers and mass mailing software - one message to many recipients.</p>
<ul>
<li><a href="https://dadamailproject.com/">Dada Mail</a> - Web-based list management system that can be used for announcement lists and/or discussion lists. (<a href="https://github.com/justingit/dada-mail">Source Code</a>) <code>GPL-2.0</code> <code>Perl</code></li>
<li><a href="https://wiki.list.org/HyperKitty">HyperKitty</a> - Open source Django application to provide a web interface to access GNU Mailman v3 archives. (<a href="https://lists.mailman3.org/">Demo</a>, <a href="https://gitlab.com/mailman/hyperkitty">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://listmonk.app/">Listmonk</a> - High performance, self-hosted newsletter and mailing list manager with a modern dashboard. (<a href="https://github.com/knadh/listmonk">Source Code</a>) <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://www.gnu.org/software/mailman/">Mailman</a> - The Gnu mailing list server. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://mailtrain.org/">Mailtrain</a> - Self hosted newsletter application. (<a href="https://github.com/Mailtrain-org/mailtrain">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://mailyherald.org/">MailyHerald</a> - Self-hosted Mailchimp alternative that you can easily integrate with your site. Helps you send and manage your application mailings. It supports email marketing and conducting the daily stream of notifications you send to your users. (<a href="https://github.com/Sology/maily_herald">Source Code</a>) <code>LGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://www.mautic.org/">Mautic</a> - Mautic is marketing automation software (email, social and more). (<a href="https://github.com/mautic/mautic">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://phplist.org">phpList</a> - Newsletter and email marketing with advanced management of subscribers, bounces, and plugins. (<a href="https://github.com/phpList/">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://postal.atech.media/">Postal</a> - Fully featured open source mail delivery platform for incoming and outgoing e-mail. (<a href="https://github.com/postalhq/postal">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://docs.mailman3.org/projects/postorius/en/latest/">Postorius</a> - Web user interface to access GNU Mailman. (<a href="https://gitlab.com/mailman/postorius/">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://schleuder.nadir.org/">Schleuder</a> - GPG-enabled mailing list manager with resending-capabilities. (<a href="https://0xacab.org/schleuder/schleuder/tree/master">Source Code</a>) <code>GPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://www.sympa.org/">Sympa</a> - Mailing list manager. <code>GPL-2.0</code> <code>Perl</code></li>
</ul>
<h3 id="communication---email---webmail-clients">Communication - Email - Webmail Clients</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://afterlogic.org/webmail-lite">Afterlogic WebMail Lite</a> - Fast and easy-to-use webmail front-end for your existing IMAP mail server, Plesk or cPanel. (<a href="https://lite.afterlogic.com/">Demo</a>, <a href="https://github.com/afterlogic/webmail-lite">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://cypht.org">Cypht</a> - Feed reader for your email accounts. (<a href="https://github.com/jasonmunro/cypht">Source Code</a>) <code>LGPL-2.1</code> <code>PHP</code></li>
<li><a href="https://www.horde.org/apps/imp/">IMP</a> - HORDE application that provides webmail access to IMAP and POP3 accounts. (<a href="http://demo.horde.org/">Demo</a>, <a href="https://www.horde.org/download/imp">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://blog.marcnuri.com/isotope-mail-client-introduction/">Isotope Mail</a> - Microservice based webmail client built with ReactJS and Spring. (<a href="https://github.com/manusa/isotope-mail">Source Code</a>) <code>Apache-2.0</code> <code>Docker/Java</code></li>
<li><a href="https://mailcare.io">MailCare</a> - Open source disposable email address service. (<a href="https://github.com/mailcare/mailcare">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.mailpile.is/">Mailpile</a> - Webmail client with search, filtering, encryption features and more. (<a href="https://github.com/mailpile/Mailpile">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.rainloop.net/">RainLoop</a> - Simple, modern and fast webmail with IMAP/SMTP Support and multi accounting. (<a href="https://mail.rainloop.net">Demo</a>, <a href="https://github.com/RainLoop/rainloop-webmail">Source Code</a>). <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://roundcube.net">Roundcube</a> - Browser-based IMAP client with an application-like user interface. (<a href="https://github.com/roundcube/roundcubemail">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://squirrelmail.org">SquirrelMail</a> - Another browser-based IMAP client. (<a href="https://sourceforge.net/p/squirrelmail/code/HEAD/tree/">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
</ul>
<h3 id="communication---irc">Communication - IRC</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><a href="https://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a> communication software</p>
<ul>
<li><a href="https://convos.chat/">Convos</a> - Always online web IRC client. (<a href="https://convos.chat/#instant-demo">Demo</a>, <a href="https://github.com/nordaaker/convos">Source Code</a>) <code>Artistic-2.0</code> <code>Perl</code></li>
<li><a href="https://github.com/khlieng/dispatch">Dispatch</a> - Self-hosted web IRC client written in Go. (<a href="https://dispatch.khlieng.com/connect">Demo</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://ergo.chat/">Ergo</a> - Modern IRCv3 server written in Go, combining the features of an ircd, a services framework, and a bouncer. (<a href="https://github.com/ergochat/ergo">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/glowing-bear/glowing-bear/">Glowing Bear</a> - A web frontend for WeeChat. (<a href="https://www.glowing-bear.org">Demo</a>) <code>GPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://www.inspircd.org/">InspIRCd</a> - Modular IRC server written in C++ for Linux, BSD, Windows, and macOS. (<a href="https://github.com/inspircd/inspircd">Source Code</a>) <code>GFDL-1.2-only</code> <code>C++</code></li>
<li><a href="https://kiwiirc.com/">Kiwi IRC</a> - Responsive web IRC client with theming support. (<a href="https://kiwiirc.com/nextclient/">Demo</a>, <a href="https://github.com/kiwiirc/kiwiirc">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://ngircd.barton.de/">ngircd</a> - Free, portable and lightweight Internet Relay Chat server for small or private networks. (<a href="https://github.com/ngircd/ngircd">Source Code</a>) <code>GPL-2.0</code> <code>C</code></li>
<li><a href="https://quassel-irc.org/">Quassel IRC</a> - distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core. (<a href="https://github.com/quassel/quassel">Source Code</a>) <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://robustirc.net/">Robust IRC</a> - RobustIRC is IRC without netsplits. Distributed IRC server, based on RobustSession protocol. (<a href="https://github.com/robustirc/robustirc">Source Code</a>) <code>BSD-3-Clause</code> <code>Go</code></li>
<li><a href="https://thelounge.chat/">The Lounge</a> - Self-hosted web IRC client. (<a href="https://demo.thelounge.chat/">Demo</a>, <a href="https://github.com/thelounge/thelounge">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://tt-rss.org/tt-irc/">Tiny Tiny IRC</a> - An open source AJAX-powered chat platform with support for IRC (<a href="https://git.tt-rss.org/fox/tt-irc">Source Code</a>). <code>GPL-3.0</code> <code>PHP/Java</code></li>
<li><a href="https://www.unrealircd.org/">UnrealIRCd</a> - Modular, advanced and highly configurable IRC server written in C for Linux, BSD, Windows, and macOS. (<a href="https://github.com/unrealircd/unrealircd">Source Code</a>) <code>GPL-2.0</code> <code>C</code></li>
<li><a href="https://weechat.org/">Weechat</a> - Fast, light and extensible chat client. <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://wiki.znc.in/ZNC">ZNC</a> - Advanced IRC bouncer. (<a href="https://github.com/znc/znc">Source Code</a>) <code>Apache-2.0</code> <code>C++</code></li>
</ul>
<h3 id="communication---sip">Communication - SIP</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><a href="https://en.wikipedia.org/wiki/Session_Initiation_Protocol">SIP</a>/<a href="https://en.wikipedia.org/wiki/IP_PBX">IPBX</a> telephony software</p>
<ul>
<li><a href="https://www.asterisk.org/">Asterisk</a> - Easy to use but advanced IP PBX system, VoIP gateway and conference server. <code>GPL-2.0</code> <code>C</code></li>
<li><a href="https://www.astppbilling.org/">ASTPP</a> - is an Open Source VoIP Billing Solution for Freeswitch. It supports prepaid and postpaid billing with call rating and credit control. It also provides many other features. (<a href="https://github.com/iNextrix/ASTPP">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.freepbx.org">Freepbx</a> - Web-based open source GUI that controls and manages Asterisk. (<a href="https://git.freepbx.org/projects/FREEPBX">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://freeswitch.org/">FreeSWITCH</a> - Scalable open source cross-platform telephony platform. (<a href="https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse">Source Code</a>) <code>MPL-2.0</code> <code>C</code></li>
<li><a href="https://www.fusionpbx.com/">FusionPBX</a> - Open source project that provides a customizable and flexible web interface to the very powerful and highly scalable multi-platform voice switch called FreeSWITCH. (<a href="https://github.com/fusionpbx/fusionpbx">Source Code</a>) <code>MPL-1.1</code> <code>PHP</code></li>
<li><a href="https://www.kamailio.org/w/">Kamailio</a> - Modular SIP server (registrar/proxy/router/etc). (<a href="https://github.com/kamailio/kamailio">Source Code</a>) <code>GPL-2.0</code> <code>C</code></li>
<li><a href="https://2600hz.org/">Kazoo</a> - KAZOO is an open-source, highly scalable software platform designed to provide carrier-grade VoIP switch functions and features. (<a href="https://github.com/2600hz/KAZOO">Source Code</a>) <code>MPL-1.1</code> <code>Erlang</code></li>
<li><a href="https://dev.guardianproject.info/projects/ostel/wiki/Server_Documentation">Ostel</a> - Secure SIP telephony setup with ZRTP encryption. <code>GPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://routr.io">Routr</a> - A lightweight sip proxy, location server, and registrar for a reliable and scalable SIP infrastructure. (<a href="https://github.com/fonoster/routr">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://sip3.io/">SIP3</a> - VoIP troubleshooting and monitoring platform. (<a href="https://demo.sip3.io">Demo</a>, <a href="https://github.com/sip3io/">Source Code</a>) <code>Apache-2.0</code> <code>Kotlin</code></li>
<li><a href="https://www.sipcapture.org/">SIPCAPTURE Homer</a> - Troubleshooting and monitoring VoIP calls. (<a href="https://github.com/sipcapture/homer">Source Code</a>) <code>AGPL-3.0</code> <code>Angular/C</code></li>
<li><a href="https://sipxcom.org/">SipXcom</a> - Open source unified communications system. (<a href="https://github.com/sipXcom/sipxecs">Source Code</a>) <code>AGPL-3.0</code> <code>Java</code></li>
<li><a href="https://wazo-platform.org/">Wazo</a> - Full-featured IPBX solution built atop Asterisk with integrated Web administration interface and REST-ful API. (<a href="https://github.com/wazo-platform">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://yeti-switch.org/">Yeti-Switch</a> - Transit class4 softswitch(SBC) with integrated billing and routing engine and REST API. (<a href="https://yeti-switch.org/demo.html">Demo</a>, <a href="https://github.com/yeti-switch">Source Code</a>) <code>GPL-2.0</code> <code>C++/Ruby</code></li>
</ul>
<h3 id="communication---social-networks-and-forums">Communication - Social Networks and Forums</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/abilian/abilian-sbe">Abilian SBE</a> - Open Source Collaboration and Social Networking framework and platform. <code>LGPL-2.1</code> <code>Python</code></li>
<li><a href="https://www.getanahita.com/">Anahita</a> - Open Source Social Networking Framework and Platform. (<a href="https://github.com/anahitasocial">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://board.asm32.info">AsmBB</a> - A fast, SQLite-powered forum engine written in ASM. (<a href="https://asm32.info/fossil/asmbb/index">Source Code</a>) <code>EUPL-1.2</code> <code>Assembly</code></li>
<li><a href="https://bbpress.org/">bbPress</a> - bbPress is forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress.org powered site. (<a href="https://bbpress.trac.wordpress.org/browser/trunk">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://bibliogram.art">Bibliogram</a> <code>⚠</code> - An alternative front-end for Instagram. (<a href="https://sr.ht/~cadence/bibliogram/">Source Code</a>) <code>AGPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://trybootcamp.vitorfs.com">Bootcamp</a> - Enterprise social network. (<a href="https://github.com/vitorfs/bootcamp">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="http://buddycloud.com/">Buddycloud</a> - Tools, libraries, services and a community to build user-to-user, group and social messaging into your app. Saves time. Scales up. Supports you. (<a href="https://github.com/buddycloud">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://buddypress.org/about/">BuddyPress</a> - Powerful plugin that takes your WordPress.org powered site beyond the blog with social-network features like user profiles, activity streams, user groups, and more. (<a href="https://github.com/buddypress/BuddyPress">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://cactus.chat/">Cactus Comments</a> - Cactus Comments is a federated comment system for the open web built on Matrix. (<a href="https://cactus.chat/demo/">Demo</a>, <a href="https://gitlab.com/cactus-comments/">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/daveajones/cartulary">cartulary</a> - RSS reader, readability tool, article archiver, microblogger, social graph manager and reading list manager. <code>CDDL-1.0</code> <code>PHP</code></li>
<li><a href="https://gitlab.com/commento/commento">Commento</a> - Commento is a discussion platform that you can embed on your blog, news articles, and any place where you want your readers to add comments. <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/schn4ck/schnack">schnack</a> - Schnack is simple self-hosted node app for Disqus-like drop-in commenting on static websites. <code>Lil licence v1</code> <code>Node.js</code></li>
<li><a href="https://coralproject.net/">Coral</a> - A better commenting experience from Vox Media. (<a href="https://github.com/coralproject/talk">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li>[diaspora*](https://diasporafoundation.org/) - Distributed social networking server. (<a href="https://podupti.me/go.php">Demo</a>, <a href="https://github.com/diaspora/diaspora">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://www.discourse.org/">Discourse</a> - Advanced forum / community solution based on Ruby and JS. (<a href="https://try.discourse.org/">Demo</a>, <a href="https://github.com/discourse/discourse">Source Code</a>) <code>GPL-2.0</code> <code>Ruby</code></li>
<li><a href="https://github.com/dyu/comments">dyu comments</a> - Real-time, markdown-enabled comment engine powered by leveldb. (<a href="https://dyu.github.io/comments/real-time/">Demo</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://elgg.org/">Elgg</a> - Powerful open source social networking engine. (<a href="https://github.com/Elgg/Elgg">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/epochtalk/epochtalk">EpochTalk</a> - Next Generation Forum Software. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://flarum.org">Flarum</a> - Delightfully simple forums. Flarum is the next-generation forum software that makes online discussion fun again. (<a href="https://github.com/flarum/flarum">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://flaskbb.org/">FlaskBB</a> - FlaskBB is forum software written in Python using the microframework Flask. You can easily create new topics, posts and send other users private messages. It also includes basic administration and moderation tools. (<a href="https://github.com/flaskbb/flaskbb">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://fluxbb.org/">FluxBB</a> - Fast, light, user-friendly forum software for your website. (<a href="https://github.com/fluxbb/fluxbb">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://friendi.ca/">Friendica</a> - Social Communication Server. (<a href="https://github.com/friendica/friendica">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/glosa/glosa-server">Glosa</a> - Open source commentary system easy to integrate with static pages. You can import from Disqus. <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://gnu.io/social/">GNU social</a> - Social communication software for both public and private communications. (<a href="https://notabug.org/diogo/gnu-social">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://gosora-project.com/">Gosora</a> - Gosora is an ultra-fast and secure forum software written in Go that balances usability with functionality. (<a href="https://github.com/Azareal/Gosora">Source Code</a>) <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://hubzilla.org">Hubzilla</a> - Decentralized identity, privacy, publishing, sharing, cloud storage, and communications/social platform. (<a href="https://framagit.org/hubzilla/core">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.humhub.org/">HumHub</a> - Flexible kit for private social networks. (<a href="https://github.com/humhub/humhub">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://posativ.org/isso/">Isso</a> - Lightweight commenting server written in Python and Javascript. It aims to be a drop-in replacement for Disqus. (<a href="https://github.com/posativ/isso">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://join-lemmy.org/">Lemmy</a> - A link aggregator / reddit clone for the fediverse. Reddit alternative built in Rust. (<a href="https://github.com/LemmyNet/lemmy">Source Code</a>) <code>AGPL-3.0</code> <code>Rust</code></li>
<li><a href="https://libredd.it/">Libreddit</a> <code>⚠</code> - Private front-end for Reddit written in Rust. (<a href="https://github.com/spikecodes/libreddit">Source Code</a>) <code>AGPL-3.0</code> <code>Rust</code></li>
<li><a href="https://www.loomio.org/">Loomio</a> - Loomio is a collaborative decision-making tool that makes it easy for anyone to participate in decisions which affect them. (<a href="https://github.com/loomio/loomio">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://joinmastodon.org/">Mastodon</a> - Federated microblogging server, an alternative to GNU social. (<a href="https://github.com/tootsuite/mastodon">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://misago-project.org/">Misago</a> - Misago is fully featured modern forum application that is fast, scalable and responsive. (<a href="https://github.com/rafalp/Misago">Source Code</a>) <code>GPL-2.0</code> <code>Python</code></li>
<li><a href="https://misskey.io/">Misskey</a> - Decentralized app-like microblogging server/SNS for the Fediverse, using the ActivityPub protocol like GNU social and Mastodon. (<a href="https://github.com/misskey-dev/misskey">Source Code</a>) <code>AGPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://movim.eu/">Movim</a> - Modern, federated social network based on XMPP, with a fully featured group-chat, subscriptions and microblogging. (<a href="https://github.com/movim/movim">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://mybb.com/">MyBB</a> - Free, extensible forum software package. (<a href="https://github.com/mybb/mybb">Source Code</a>) <code>LGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://nitter.net">Nitter</a> <code>⚠</code> - A alternative front end to twitter. (<a href="https://github.com/zedeus/nitter">Source Code</a>) <code>AGPL-3.0</code> <code>Nimble</code></li>
<li><a href="https://nodebb.org/">NodeBB</a> - Forum software built for the modern web. (<a href="https://github.com/NodeBB/NodeBB">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://www.goodoldweb.com/">Orange Forum</a> - Orange Forum is an easy to deploy forum that has minimal dependencies and uses very little javascript. (<a href="https://github.com/s-gv/orangeforum">Source Code</a>) <code>BSD-3-Clause</code> <code>Go</code></li>
<li><a href="https://www.opensource-socialnetwork.org/">OSSN</a> - Open Source Social Network (OSSN) is a social networking software written in PHP. It allows you to make a social networking website and helps your members build social relationships, with people who share similar professional or personal interests. (<a href="https://github.com/opensource-socialnetwork/opensource-socialnetwork">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.phpbb.com/">phpBB</a> - Flat-forum bulletin board software solution that can be used to stay in touch with a group of people or can power your entire website. (<a href="https://github.com/phpbb/phpbb">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://pixelfed.social">PixelFed</a> - Pixelfed is an open-source, federated platform alternate to Instagram. (<a href="https://github.com/pixelfed/pixelfed">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://pleroma.social">Pleroma</a> - Federated microblogging server, Mastodon, GNU social, & ActivityPub compatible. (<a href="https://git.pleroma.social/pleroma/pleroma">Source Code</a>) <code>AGPL-3.0</code> <code>Elixir</code></li>
<li><a href="http://pump.io/">Pump.io</a> - Stream server that does most of what people really want from a social network. (<a href="https://github.com/pump-io/pump.io">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://remark42.com/">remark42</a> - A lightweight and simple comment engine, which doesn’t spy on users. It can be embedded into blogs, articles or any other place where readers add comments. (<a href="https://remark42.com/demo/">Demo</a>, <a href="https://github.com/umputun/remark42">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/jointwt/rss2twtxt">rss2twtxt</a> - An RSS/Atom feed aggregator command-line tool and web service that consumes RSS/Atom and produces twtxt.net feeds for consumption by twtxt clients. (<a href="https://feeds.twtxt.net">Demo</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://satellity.org/">Satellity</a> - Yet another open source forum written in Golang, React and PostgreSQL. (<a href="https://github.com/satellity/satellity">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://scoold.com">Scoold</a> - Stack Overflow in a JAR. An enterprise-ready Q&A platform with full-text search, SAML, LDAP integration and social login support. (<a href="https://live.scoold.com">Demo</a>, <a href="https://github.com/Erudika/scoold">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://www.simplemachines.org/">Simple Machines Forum</a> - Free, professional grade software package that allows you to set up your own online community within minutes. (<a href="https://github.com/SimpleMachines/SMF2.1">Source Code</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
<li><a href="https://socialhome.network">Socialhome</a> - Federated and decentralized profile builder and social network engine. (<a href="https://socialhome.network/">Demo</a>, <a href="https://github.com/jaywink/socialhome">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.talkyard.io/">Talkyard</a> - Create a community, where your users can suggest ideas and get questions answered. And have friendly open-ended discussions and chat (Slack/StackOverflow/Discourse/Reddit/Disqus hybrid). (<a href="https://www.talkyard.io/forum/latest">Demo</a>, <a href="https://github.com/debiki/talkyard">Source Code</a>) <code>AGPL-3.0</code> <code>Scala</code></li>
<li><a href="https://teddit.net">Teddit</a> <code>⚠</code> - Alternative Reddit front-end focused on privacy. (<a href="https://codeberg.org/teddit/teddit">Source Code</a>) <code>AGPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://github.com/thredded/thredded">Thredded</a> - Forums, feature-rich and simple. <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://tokumei.co/">Tokumei</a> - Anonymous microblogging platform. (<a href="https://gitlab.com/tokumei/tokumei">Source Code</a>) <code>ISC</code> <code>rc</code></li>
<li><a href="http://twister.net.co/">twister</a> - Fully decentralized P2P microblogging platform leveraging the free software implementations of Bitcoin and BitTorrent protocols. (<a href="https://github.com/miguelfreitas/twister-core">Source Code</a>) <code>MIT</code> <code>C++</code></li>
<li><a href="https://twtxt.net">twtxt.net</a> - a Self-Hosted, Twitter™-like Decentralised micro-logging platform. No ads, no tracking, your content, your data. (<a href="https://git.mills.io/yarnsocial/yarn">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://vanillaforums.org/">Vanilla Forums</a> - Simple and flexible forum software. (<a href="https://github.com/vanilla/vanilla">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://zusam.org">Zusam</a> - Free and open-source way to self-host private forums for groups of friends or family. (<a href="https://demo.zusam.org">Demo</a>, <a href="https://github.com/zusam/zusam">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="communication---xmpp">Communication - XMPP</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><a href="https://en.wikipedia.org/wiki/XMPP">Extensible Messaging and Presence Protocol</a> software</p>
<h3 id="communication---xmpp---servers">Communication - XMPP - Servers</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://www.ejabberd.im/">ejabberd</a> - XMPP instant messaging server. (<a href="https://github.com/processone/ejabberd">Source Code</a>) <code>GPL-2.0</code> <code>Erlang</code></li>
<li><a href="https://github.com/ortuman/jackal">jackal</a> - XMPP server with focus on stability, simple configuration and low resource consumption. <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://www.kontalk.org">Kontalk</a> - Kontalk is an Open Source Messenger, similar to WhatsApp (app for android only currently), including end-to-end encryption, server is based on Tigase XMPP Server. (<a href="https://github.com/kontalk">Source Code</a>) <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://metronome.im/">Metronome IM</a> - Fork of Prosody IM. (<a href="https://github.com/maranda/metronome">Source Code</a>) <code>MIT</code> <code>Lua</code></li>
<li><a href="https://www.erlang-solutions.com/products/mongooseim.html">MongooseIM</a> - Mobile messaging platform with a focus on performance and scalability. (<a href="https://github.com/esl/MongooseIM">Source Code</a>) <code>GPL-2.0</code> <code>Erlang</code></li>
<li><a href="https://www.igniterealtime.org/projects/openfire/">Openfire</a> - Real time collaboration (RTC) server. (<a href="https://github.com/igniterealtime/Openfire">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://prosody.im/">Prosody IM</a> - Feature-rich and easy to configure XMPP server. (<a href="https://hg.prosody.im/">Source Code</a>) <code>MIT</code> <code>Lua</code></li>
<li><a href="https://snikket.org/">Snikket</a> - All-in-one Dockerized easy XMPP solution, including web admin and clients. (<a href="https://github.com/snikket-im/snikket-server">Source Code</a>, <a href="https://snikket.org/app/">Clients</a>) <code>Apache-2.0</code> <code>Lua/Python</code></li>
<li><a href="https://tigase.net/xmpp-server">Tigase</a> - XMPP server implementation in Java. <code>GPL-3.0</code> <code>Java</code></li>
</ul>
<h3 id="communication---xmpp---web-clients">Communication - XMPP - Web Clients</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://candy-chat.github.io/candy/">Candy</a> - Multi user XMPP client written in Javascript. (<a href="https://github.com/candy-chat/candy">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://conversejs.org/">Converse.js</a> - Free and open-source XMPP chat client in your browser. (<a href="https://github.com/conversejs/converse.js">Source Code</a>) <code>MPL-2.0</code> <code>Javascript</code></li>
<li><a href="https://jsxc.org">JSXC</a> - Real-time XMPP web chat application with video calls, file transfer and encrypted communication. There are also versions for Nextcloud/Owncloud and SOGo. (<a href="https://github.com/jsxc/jsxc">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://wiki.goffi.org/wiki/Libervia/en">Libervia</a> - Web frontend from Salut à Toi. (<a href="https://repos.goffi.org/libervia-web">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.salut-a-toi.org/">Salut à Toi</a> - Multipurpose, multi frontend, libre and decentralized communication tool. (<a href="https://repos.goffi.org/libervia-backend">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
</ul>
<h3 id="community-supported-agriculture-csa">Community-Supported Agriculture (CSA)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>Management and administration tools for community supported agriculture and food cooperatives</p>
<p><em>Related: <a href="#e-commerce">E-commerce</a></em></p>
<ul>
<li><a href="https://acp-admin.ch/">ACP Admin</a> - CSA administration. Manage members, subscriptions, deliveries, drop-off locations, member participation, invoices and emails. (<a href="https://github.com/acp-admin/acp-admin/">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://cagette.net/">Cagette</a> - Open source web app to help people build a better and sustainable food system. Some people call it a ‘foodhub’ - a mix between a groupware and a marketplace, helping consumers to order food from local farmers and producers. (<a href="https://github.com/CagetteNet/cagette">Source Code</a>) <code>GPL-2.0</code> <code>Haxe</code></li>
<li><a href="https://www.foodcoopshop.com/">FoodCoopShop</a> - User-friendly open source software for food-coops. (<a href="https://github.com/foodcoopshop/foodcoopshop">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://foodcoops.net/">Foodsoft</a> - Web-based software to manage a non-profit food coop (product catalog, ordering, accounting, job scheduling). (<a href="https://github.com/foodcoops/foodsoft">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://juntagrico.org/">juntagrico</a> - Management platform for community gardens and vegetable cooperatives. (<a href="https://github.com/juntagrico/juntagrico">Source Code</a>) <code>LGPL-3.0</code> <code>Python</code></li>
<li><a href="https://localfoodnodes.org/">Local Food Nodes</a> - Your open source platform for peoples driven local food markets and CSA. (<a href="https://gitlab.com/localfoodnodes/localfoodnodes">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.openfoodnetwork.org/">Open Food Network</a> - Online marketplace for local food. It enables a network of independent online food stores that connect farmers and food hubs with individuals and local businesses. (<a href="https://github.com/openfoodfoundation/openfoodnetwork">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://openolitor.org/">OpenOlitor</a> - Administration platform for Community Supported Agriculture groups. (<a href="https://github.com/OpenOlitor">Source Code</a>) <code>AGPL-3.0</code> <code>Scala</code></li>
<li><a href="https://github.com/teikei/teikei">teikei</a> - A web application that maps out community-supported agriculture based on crowdsourced data. (<a href="https://ernte-teilen.org/karte/#/">Demo</a>) <code>AGPL-3.0</code> <code>Nodejs</code></li>
</ul>
<h3 id="conference-management">Conference Management</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://bigbluebutton.org/">BigBlueButton</a> - Supports real-time sharing of audio, video, slides (with whiteboard controls), chat, and the screen. Instructors can engage remote students with polling, emojis, and breakout rooms. (<a href="https://demo.bigbluebutton.org/gl">Demo</a>, <a href="https://github.com/bigbluebutton/bigbluebutton">Source Code</a>) <code>LGPL-3.0</code> <code>Java</code></li>
<li><a href="http://usecod.com/">Conference Organizing Distribution (COD)</a> - Create conference and event websites built on top of Drupal. (<a href="https://git.drupalcode.org/project/cod">Source Code</a>) <code>GPL-1.0</code> <code>PHP</code></li>
<li><a href="https://frab.github.io/frab/">frab</a> - web-based conference planning and management system. It helps to collect submissions, to manage talks and speakers and to create a schedule. (<a href="https://github.com/frab/frab">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://getindico.io/">indico</a> - A feature-rich event management system, made @ CERN, the place where the Web was born. (<a href="https://sandbox.getindico.io/">Demo</a>, <a href="https://github.com/indico/indico">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://pkp.sfu.ca/ocs/">Open Conference Systems (OCS)</a> - is a free Web publishing tool that will create a complete Web presence for your scholarly conference. (<a href="https://pkp.sfu.ca/ocs/ocs_demo/">Demo</a>, <a href="https://github.com/pkp/ocs">Source Code</a>) <code>GPL-1.0</code> <code>PHP</code></li>
<li><a href="https://github.com/opencfp/opencfp">OpenCFP</a> - OpenCFP is a PHP-based conference talk submission system. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://osem.io/">osem</a> - Event management tailored to free Software conferences. (<a href="https://demo.osem.io/">Demo</a>, <a href="https://github.com/openSUSE/osem">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://pretalx.org">pretalx</a> - Web-based event management, including running a Call for Papers, reviewing submissions, and scheduling talks. Exports and imports for various related tools. (<a href="https://github.com/pretalx/pretalx">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
</ul>
<h3 id="content-management-systems-cms">Content Management Systems (CMS)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>CMS are a practical way to setup a website with many features. CMS often come with third party plugins, themes and functionality that is easy to add and customize to your needs.</p>
<p><em>Related: <a href="#blogging-platforms">Blogging Platforms</a>, <a href="#static-site-generators">Static Site Generators</a></em></p>
<ul>
<li><a href="https://www.alfresco.com/products/community/download">Alfresco Community Edition</a> - The open source Enterprise Content Management software that handles any type of content, allowing users to easily share and collaborate on content. (<a href="https://hub.alfresco.com/t5/alfresco-content-services-hub/project-overview-repository/ba-p/290502">Source Code</a>) <code>LGPL-3.0</code> <code>Java</code></li>
<li><a href="https://apostrophecms.org/">Apostrophe</a> - CMS with a focus on extensible in-context editing tools. (<a href="https://dashboard.apostrophecmsdemo.org">Demo</a>, <a href="https://github.com/apostrophecms/apostrophe">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://b2evolution.net/">b2evolution CMS</a> - The most integrated CMS ever: b2evolution includes everything you need to build websites for publishing, sharing and interacting with your community. (<a href="https://github.com/b2evolution/b2evolution">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://backdropcms.org/">Backdrop CMS</a> - Comprehensive CMS for small to medium sized businesses and non-profits. (<a href="https://github.com/backdrop/backdrop">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.bigtreecms.org/">BigTree CMS</a> - Straightforward, well documented, and capable written with PHP and MySQL. (<a href="https://github.com/bigtreecms/BigTree-CMS">Source Code</a>) <code>LGPL-2.1</code> <code>PHP</code></li>
<li><a href="https://bolt.cm/">Bolt CMS</a> - Open source Content Management Tool, which strives to be as simple and straightforward as possible. (<a href="https://try.bolt.cm/">Demo</a>, <a href="https://github.com/bolt/bolt">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.cmsmadesimple.org/">CMS Made Simple</a> - Open source content management system, faster and easier management of website contents, scalable for small businesses to large corporations. (<a href="http://svn.cmsmadesimple.org/svn/cmsmadesimple/trunk/">Source Code</a>) <code>GPL-1.0</code> <code>PHP</code></li>
<li><a href="https://getcockpit.com">Cockpit</a> - Simple Content Platform to manage any structured content. (<a href="https://github.com/agentejo/cockpit">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.concretecms.com">Concrete 5 CMS</a> - Open source content management system. (<a href="https://github.com/concrete5/concrete5">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://contao.org/">Contao</a> - Contao is a powerful open source CMS that allows you to create professional websites and scalable web applications. (<a href="https://github.com/contao/contao/">Source Code</a>) <code>LGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.couchcms.com/">CouchCMS</a> - Simple Open-Source CMS for designers. (<a href="https://github.com/CouchCMS/CouchCMS">Source Code</a>) <code>CPAL-1.0</code> <code>PHP</code></li>
<li><a href="https://directus.io/">Directus</a> - 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. (<a href="https://github.com/directus/directus">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://www.drupal.org/">Drupal</a> - Advanced open source content management platform. (<a href="https://git.drupalcode.org/project/drupal">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.elabftw.net">eLabFTW</a> - Online lab notebook for research labs. Store experiments, use a database to find reagents or protocols, use trusted timestamping to legally timestamp an experiment, export as pdf or zip archive, share with collaborators…. (<a href="https://demo.elabftw.net">Demo</a>, <a href="https://github.com/elabftw/elabftw">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/thomas4019/expressa">Expressa</a> - Content Management System for powering database driven websites using JSON schemas. Provides permission management and automatic REST APIs. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://flextype.org/">Flextype</a> - Flextype is an open-source Hybrid Content Management System with the freedom of a headless CMS and with the full functionality of a traditional CMS. (<a href="https://demo.flextype.org/">Demo</a>, <a href="https://github.com/flextype/flextype">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="http://get-simple.info/">GetSimple CMS</a> - The Simplest Content Management System. Ever. (<a href="https://github.com/GetSimpleCMS/GetSimpleCMS">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.joomla.org/">Joomla!</a> - Advanced Content Management System (CMS). (<a href="https://github.com/joomla/joomla-cms">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://keystonejs.com/">KeystoneJS</a> - CMS and Web Application Platform. (<a href="https://demo.keystonejs.com/">Demo</a>, <a href="https://github.com/keystonejs/keystone">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://modx.com/">MODX</a> - MODX is an advanced content management and publishing platform. The current version is called ‘Revolution’. (<a href="https://github.com/modxcms/revolution">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.neos.io">Neos</a> - Neos or TYPO3 Neos (for version 1) is a modern, open source CMS. (<a href="https://git.typo3.org/Packages/TYPO3.Neos.git">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://gitlab.com/noosfero/noosfero">Noosfero</a> - Noosfero is a web platform for social and solidarity economy networks with blog, e-Portfolios, CMS, RSS, thematic discussion, events agenda and collective intelligence for solidarity economy in the same system. <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://octobercms.com/">october</a> - Free, open-source, self-hosted CMS platform. (<a href="https://github.com/octobercms/october">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://omeka.org">Omeka</a> - Create complex narratives and share rich collections, adhering to Dublin Core standards with Omeka on your server, designed for scholars, museums, libraries, archives, and enthusiasts. (<a href="https://omeka.org/classic/showcase/">Demo</a>, <a href="https://github.com/omeka/Omeka">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://pagekit.com/">Pagekit</a> - New modern CMS to create and share. (<a href="https://github.com/pagekit/pagekit">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://picocms.org/">Pico</a> - Stupidly simple, blazing fast, flat file CMS. (<a href="https://github.com/picocms/Pico">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.pimcore.org/">Pimcore</a> - Multi-Channel Experience and Engagement Management Platform. (<a href="https://github.com/pimcore/pimcore">Source Code</a>) <code>GPL-3.0-or-later</code> <code>PHP</code></li>
<li><a href="https://plone.org/">Plone</a> - Powerful open-source CMS system. (<a href="https://github.com/plone">Source Code</a>) <code>ZPL-2.0</code> <code>Python</code></li>
<li><a href="https://processwire.com/">ProcessWire</a> - ProcessWire is an open source content management system (CMS) and web application framework aimed at the needs of designers, developers and their clients. (<a href="https://github.com/ryancramerdesign/ProcessWire">Source Code</a>) <code>MPL-2.0</code> <code>PHP</code></li>
<li><a href="https://propertywebbuilder.com">PropertyWebBuilder</a> - Ultimate Ruby on Rails engine for creating real estate websites. (<a href="https://propertywebbuilder.herokuapp.com">Demo</a>, <a href="https://github.com/etewiah/property_web_builder">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://publify.github.io/">Publify</a> - Simple but full featured web publishing software. (<a href="https://github.com/publify/publify">Source Code</a>) <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://www.redaxo.org">REDAXO</a> - Simple, flexible and useful content management system (documentation only available in German). (<a href="https://github.com/redaxo/redaxo">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://redaxscript.com">Redaxscript</a> - Ultra lightweight CMS for MySQL, SQLite and PostgreSQL. (<a href="https://demo.redaxscript.com/login">Demo</a>, <a href="https://github.com/redaxscript/redaxscript">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.roadiz.io/">Roadiz</a> - Modern CMS based on a node system which can handle many types of services. (<a href="https://github.com/roadiz/roadiz">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.silverstripe.org">SilverStripe</a> - Easy to use CMS with powerful MVC framework underlying. (<a href="https://demo.silverstripe.org/">Demo</a>, <a href="https://github.com/silverstripe">Source Code</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
<li><a href="https://www.spip.net/fr">SPIP</a> - Publication system for the Internet aimed at collaborative work, multilingual environments, and simplicity of use for web authors. (<a href="https://git.spip.net/">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://squidex.io">Squidex</a> - Headless CMS, based on MongoDB, CQRS and Event Sourcing. (<a href="https://cloud.squidex.io">Demo</a>, <a href="https://github.com/Squidex/squidex">Source Code</a>) <code>MIT</code> <code>.NET</code></li>
<li><a href="https://strapi.io/">Strapi</a> - The most advanced open-source Content Management Framework (headless-CMS) to build powerful API with no effort. (<a href="https://github.com/strapi/strapi">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://textpattern.com/">Textpattern</a> - Flexible, elegant and easy-to-use CMS. (<a href="https://textpattern.co/demo">Demo</a>, <a href="https://github.com/textpattern/textpattern">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://typemill.net/">Typemill</a> - Author-friendly flat-file-cms with a visual markdown editor based on vue.js. (<a href="https://github.com/typemill/typemill">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://typo3.org/">TYPO3</a> - Powerful and advanced CMS with a large community. (<a href="https://github.com/TYPO3/TYPO3.CMS">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://umbraco.com/">Umbraco</a> - The friendly CMS. Free and open source with an amazing community. (<a href="https://github.com/umbraco/Umbraco-CMS">Source Code</a>) <code>MIT</code> <code>.NET</code></li>
<li><a href="https://wagtail.io/">Wagtail</a> - Django content management system focused on flexibility and user experience. (<a href="https://github.com/wagtail/wagtail">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://www.wondercms.com">WonderCMS</a> - WonderCMS is the smallest flat file CMS since 2008. (<a href="https://www.wondercms.com/demo">Demo</a>, <a href="https://github.com/robiso/wondercms">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://wordpress.org/">WordPress</a> - World’s most-used blogging and CMS engine. (<a href="https://github.com/WordPress/WordPress">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://writefreely.org">WriteFreely</a> - Writing software for starting a minimalist, federated blog — or an entire community. (<a href="https://github.com/writefreely/writefreely">Source Code</a>) <code>AGPL-3.0</code> <code>Go</code></li>
</ul>
<h3 id="dns">DNS</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>See also: <a href="https://github.com/awesome-foss/awesome-sysadmin#dns">awesome-sysadmin/DNS</a></em></p>
<ul>
<li><a href="https://github.com/0xERR0R/blocky">blocky</a> - Fast and lightweight DNS proxy (like Pi-hole) as ad-blocker for local network with many features. <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://coredns.io/">CoreDNS</a> - Plugin driven DNS Server with support for proxying to Google’s DNS-over-HTTPS. (<a href="https://github.com/coredns/coredns">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://maza-ad-blocking.andros.dev/">Maza ad blocking</a> - Local ad blocker. Like Pi-hole but local and using your operating system. (<a href="https://github.com/tanrax/maza-ad-blocking">Source Code</a>) <code>Apache-2.0</code> <code>Bash</code></li>
<li><a href="https://www.nsupdate.info/">nsupdate.info</a> - nsupdate.info is a dynamic DNS service. (<a href="https://www.nsupdate.info/account/register/">Demo</a>, <a href="https://github.com/nsupdate-info/nsupdate.info">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://spftoolbox.com">SPF Toolbox</a> - Application to look up DNS records such as SPF, MX, Whois, and more. (<a href="https://github.com/charlesabarnes/SPFtoolbox">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
</ul>
<h3 id="document-management">Document Management</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/randombenj/docat">DOCAT</a> - Host your docs. Simple. Versioned. Fancy. <code>MIT</code> <code>Python/Docker</code></li>
<li><a href="https://docspell.org">Docspell</a> - Auto-tagging document organizer and archive. (<a href="https://github.com/eikek/docspell">Source Code</a>) <code>GPL-3.0</code> <code>Scala/Java</code></li>
<li><a href="https://github.com/jonashellmann/everydocs-core/">EveryDocs</a> - A simple Document Management System for private use with basic functionality to organize your documents digitally. <code>GPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://i-librarian.net">I, Librarian</a> - I, Librarian can organize PDF papers and office documents. It provides a lot of extra features for students and research groups both in industry and academia. (<a href="https://i-librarian.net/demo/">Demo</a>, <a href="https://github.com/mkucej/i-librarian-free">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.mayan-edms.com">Mayan EDMS</a> - Free Open Source Electronic Document Management System. An electronic vault for your documents with preview generation, OCR, and automatic categorization among other features. (<a href="https://gitlab.com/mayan-edms/mayan-edms">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://github.com/jonaswinkler/paperless-ng">Paperless-ng</a> - A fork of paperless, adding a new interface and many other changes under the hood. Scan, index, and archive all of your paper documents. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.papermerge.com">Papermerge</a> - Open Source Document Management System focused on scanned documents (electronic archives). Features file browsing in similar way to dropbox/google drive. OCR, full text search, text overlay/selection. (<a href="https://github.com/ciur/papermerge">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://dedicatedcode.com/projects/">paper{s}pace</a> - a small web application to manage all your offline documents. Provides a searchable storage for your documents and reminds you of upcoming tasks. (<a href="https://gitlab.com/dedicatedcode/paperspace">Source Code</a>) <code>MIT</code> <code>Java</code></li>
<li><a href="https://teedy.io/">Teedy</a> - (Ex SismicsDocs) Lightweight document management system packed with all the features you can expect from big expensive solutions. (<a href="https://github.com/sismics/docs">Source Code</a>) <code>GPL-2.0</code> <code>Java</code></li>
</ul>
<h3 id="document-management---e-books">Document Management - E-books</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://projekte.textmulch.de/bicbucstriim/">BicBucStriim</a> - Provides web-based access to your Calibre Library’s e-book collection. (<a href="https://github.com/rvolz/BicBucStriim">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://github.com/janeczku/calibre-web">Calibre Web</a> - Web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://calibre-ebook.com/">Calibre</a> - 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. (<a href="https://calibre-ebook.com/demo">Demo</a>, <a href="https://launchpad.net/calibre">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://blog.slucas.fr/en/oss/calibre-opds-php-server">COPS</a> - Lightweight e-book server alternative to Calibre content server or Calibre2OPDS. (<a href="http://cops-demo.slucas.fr/index.php">Demo</a>, <a href="https://github.com/seblucas/cops">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.kavitareader.com/">Kavita</a> - Cross-platform e-book/manga/comic/pdf server and web reader with user management, ratings and reviews, and metatdata support. (<a href="https://wiki.kavitareader.com/en/kavita-demo">Demo</a>, <a href="https://github.com/Kareadita/Kavita">Source Code</a>) <code>GPL-3.0</code> <code>.NET Core/Docker</code></li>
<li><a href="https://komga.org">Komga</a> - Media server for comics/mangas/BDs with API and OPDS support, a modern web interface for exploring your libraries, as well as a web reader. (<a href="https://github.com/gotson/komga">Source Code</a>) <code>MIT</code> <code>Java/Docker</code></li>
<li><a href="https://github.com/hkalexling/Mango">Mango</a> - Manga server and web reader with a built-in MangaDex downloader. <code>MIT</code> <code>Crystal</code></li>
<li><a href="https://github.com/th3r00t/pyShelf">pyShelf</a> - Lightweight Ebook Server. <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/faldez/tanoshi">Tanoshi</a> - Selfhosted web manga reader with extensions. <code>MIT</code> <code>Rust</code></li>
<li><a href="https://tt-rss.org/the-epube">The Epube</a> - Self-hosted web EPUB reader using EPUB.js, Bootstrap, and Calibre. (<a href="https://git.tt-rss.org/fox/the-epube">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="document-management---institutional-repository-and-digital-library-software">Document Management - Institutional Repository and Digital Library Software</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://duraspace.org/dspace/">DSpace</a> - Turnkey repository application providing durable access to digital resources. (<a href="https://github.com/DSpace/DSpace">Source Code</a>) <code>BSD-3-Clause</code> <code>Java</code></li>
<li><a href="https://www.eprints.org/">EPrints</a> - Digital document management system with a flexible metadata and workflow model primarily aimed at academic institutions. (<a href="http://tryme.demo.eprints-hosting.org/">Demo</a>, <a href="https://github.com/eprints/eprints">Source Code</a>) <code>GPL-3.0</code> <code>Perl</code></li>
<li><a href="https://fedorarepository.org/">Fedora Commons Repository</a> - Robust and modular repository system for the management and dissemination of digital content especially suited for digital libraries and archives, both for access and preservation. (<a href="https://github.com/fcrepo/fcrepo">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://islandora.ca/">Islandora</a> - Drupal module for browsing and managing Fedora-based digital repositories. (<a href="https://github.com/Islandora/islandora">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://samvera.org/">Samvera Hyrax</a> - Front-end for the Samvera framework, which itself is a Ruby on Rails application for browsing and managing Fedora-based digital repositories. (<a href="https://github.com/samvera/hyrax">Source Code</a>) <code>Apache-2.0</code> <code>Ruby</code></li>
</ul>
<h3 id="document-management---integrated-library-systems-ils">Document Management - Integrated Library Systems (ILS)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#content-management-systems-cms">Content Management Systems (CMS)</a>, <a href="#archiving-and-digital-preservation-dp">Archiving and Digital Preservation (DP)</a></em></p>
<ul>
<li><a href="https://evergreen-ils.org">Evergreen</a> - Highly-scalable software for libraries that helps library patrons find library materials, and helps libraries manage, catalog, and circulate those materials. (<a href="https://github.com/evergreen-library-system/Evergreen">Source Code</a>) <code>GPL-2.0</code> <code>PL/pgSQL</code></li>
<li><a href="https://koha-community.org/">Koha</a> - Enterprise-class ILS with modules for acquisitions, circulation, cataloging, label printing, offline circulation for when Internet access is not available, and much more. (<a href="https://koha-community.org/demo/">Demo</a>, <a href="https://github.com/Koha-Community/Koha">Source Code</a>) <code>GPL-3.0</code> <code>Perl</code></li>
<li><a href="https://rero21.ch/">RERO ILS</a> - Large-scale ILS that can be run as a service with consortial features, intended primarily for library networks. Includes most standard modules (circulation, acquisitions, cataloging,…) and a web-based public and professional interface. (<a href="https://ils.test.rero.ch/">Demo</a>, <a href="https://github.com/rero/rero-ils">Source Code</a>) <code>AGPL-3.0</code> <code>Python/Other</code></li>
</ul>
<h3 id="e-commerce">E-commerce</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#community-supported-agriculture-csa">Community-Supported Agriculture (CSA)</a></em></p>
<ul>
<li><a href="https://aimeos.org/">Aimeos</a> - Ultra fast, Open Source e-commerce framework for building custom online shops, market places and complex B2B applications scaling to billions of items with Laravel. (<a href="https://demo.aimeos.org/">Demo</a>, <a href="https://github.com/aimeos">Source Code</a>) <code>LGPL-3.0/MIT</code> <code>PHP</code></li>
<li><a href="https://www.attendize.com/">Attendize</a> - Ticket selling and event management platform. (<a href="https://github.com/attendize/attendize">Source Code</a>) <code>AAL</code> <code>PHP</code></li>
<li><a href="https://bagisto.com/en/">Bagisto</a> - Leading Laravel open source e-commerce framework with multi-inventory sources, taxation, localization, dropshipping and more exciting features. (<a href="https://demo.bagisto.com/">Demo</a>, <a href="https://github.com/bagisto/bagisto">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.coreshop.org">CoreShop</a> - CoreShop is a e-commerce plugin for Pimcore. (<a href="https://github.com/coreshop/CoreShop">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://drupalcommerce.org">Drupal Commerce</a> - Drupal Commerce is a popular e-commerce module for Drupal CMS, with support for dozens of payment, shipping, and shopping related modules. (<a href="https://github.com/drupalcommerce/commerce">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://magento.com/">Magento</a> - Leading provider of open omnichannel innovation. (<a href="https://magento.com/schedule-a-demo">Demo</a>, <a href="https://github.com/magento/magento2">Source Code</a>) <code>OSL-3.0</code> <code>PHP</code></li>
<li><a href="https://microweber.com/">Microweber</a> - Drag and Drop CMS and online shop. (<a href="https://demo.microweber.org/">Demo</a>, <a href="https://github.com/microweber/microweber">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://www.opensourcepos.org/">Open Source POS</a> - Open Source Point of Sale is a web based point of sale system. (<a href="https://github.com/opensourcepos/opensourcepos">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.openbazaar.org">OpenBazaar</a> - Decentralized marketplace using cryptocurrency. (<a href="https://github.com/openbazaar/openbazaar-go">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://www.opencart.com">OpenCart</a> - Free open source shopping cart solution. (<a href="https://github.com/opencart/opencart">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://oxidforge.org">OXID eShop</a> - OXID eShop is a flexible open source e-commerce software with a wide range of functionalities. (<a href="https://demoshop.oxid-esales.com/community-edition/">Demo</a>, <a href="https://github.com/OXID-eSales/oxideshop_ce">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.prestashop.com/">PrestaShop</a> - PrestaShop offers a free, open-source and fully scalable e-commerce solution. (<a href="https://demo.prestashop.com/">Demo</a>, <a href="https://github.com/PrestaShop/PrestaShop">Source Code</a>) <code>OSL-3.0</code> <code>PHP</code></li>
<li><a href="https://pretix.eu/">Pretix</a> - Django based ticket sales platform for events. (<a href="https://github.com/pretix">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://reactioncommerce.com/">Reaction Commerce</a> - Customizable, real-time reactive, Javascript commerce platform. (<a href="https://github.com/reactioncommerce/reaction">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://saleor.io">Saleor</a> - Django based open-sourced e-commerce storefront. (<a href="https://demo.getsaleor.com/">Demo</a>, <a href="https://github.com/mirumee/saleor">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://shopware.com/community/">Shopware Community Edition</a> - PHP based open source e-commerce software made in Germany. (<a href="https://www.shopware.com/en/test-demo/">Demo</a>, <a href="https://github.com/shopware/platform">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.shuup.com/">Shuup</a> - Django powered fully customizable open source e-commerce framework for small and large sites. (<a href="https://github.com/shuup/shuup">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://solidus.io/">Solidus</a> - A free, open-source ecommerce platform that gives you complete control over your store. (<a href="http://demo.solidus.io/">Demo</a>, <a href="https://github.com/solidusio/solidus">Source Code</a>) <code>BSD-3-Clause</code> <code>Ruby</code></li>
<li><a href="https://spreecommerce.org">Spree Commerce</a> - Spree is a complete, modular & API-driven open source e-commerce solution for Ruby on Rails. (<a href="https://new-ux.spreecommerce.org/">Demo</a>, <a href="https://github.com/spree/spree">Source Code</a>) <code>BSD-3-Clause</code> <code>Ruby</code></li>
<li><a href="https://sylius.com">Sylius</a> - Symfony2 powered open source full-stack platform for eCommerce. (<a href="https://sylius.com/try/">Demo</a>, <a href="https://github.com/Sylius/Sylius">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://thelia.net/">Thelia</a> - Thelia is an open source and flexible e-commerce solution. (<a href="https://demo.thelia.net/">Demo</a>, <a href="https://github.com/thelia/thelia">Source Code</a>) <code>LGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://woocommerce.com/">WooCommerce</a> - WordPress based e-commerce solution. (<a href="https://github.com/woocommerce/woocommerce">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://yclas.com/">Yclas</a> - Free open-source, self-hosted CMS for classifieds sites. (<a href="https://github.com/yclas/yclas">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="federated-identity-authentication">Federated Identity & Authentication</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><strong>Please visit <a href="https://github.com/awesome-foss/awesome-sysadmin#identity-management">awesome-sysadmin/Identity Management</a></strong></p>
<h3 id="feed-readers">Feed Readers</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>A <a href="https://en.wikipedia.org/wiki/News_aggregator">news aggregator</a>, also termed a feed aggregator, feed reader, news reader, <a href="https://en.wikipedia.org/wiki/RSS">RSS</a> reader or simply an aggregator, is client software or a web application that aggregates syndicated web content such as online newspapers, blogs/vlogs, podcasts, and other updates in one location for easy viewing. This also section includes RSS/Atom automation tools.</p>
<ul>
<li><a href="https://www.commafeed.com/">CommaFeed</a> - Google Reader inspired self-hosted RSS reader. (<a href="https://github.com/Athou/commafeed">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://feedhq.org/">FeedHQ</a> - FeedHQ is a web-based feed reader. (<a href="https://github.com/feedhq/feedhq">Source Code</a>) <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://github.com/ncarlier/feedpushr">Feedpushr</a> - Powerful RSS aggregator, able to transform and send articles to many outputs. Single binary, extensible with plugins. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://freshrss.org/">FreshRSS</a> - Self-hostable RSS feed aggregator. (<a href="https://demo.freshrss.org/i/">Demo</a>, <a href="https://github.com/FreshRSS/FreshRSS">Source Code</a>, <a href="https://github.com/Alkarex/EasyRSS">Clients</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://fivefilters.org/content-only">Full-Text RSS</a> - Extract article content from news sites and blogs and convert RSS feeds that contain only extracts of stories to full-text feeds. Developed by FiveFilters.org. (<a href="https://bitbucket.org/fivefilters/full-text-rss">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/slurdge/goeland">Goeland</a> - Reads RSS/Atom feeds and filter/digest them to create beautiful emails. <code>MIT</code> <code>Go</code></li>
<li><a href="http://gritttt-rss.nicolashoening.de/">gritttt-rss</a> - More features for Tiny Tiny RSS. (<a href="https://github.com/nhoening/gritttt-rss">Source Code</a>) <code>BSD-2-Clause</code> <code>Python</code></li>
<li><a href="https://1pxsolidblack.pl/jarr-en.html">JARR</a> - JARR (Just Another RSS Reader) is a web-based news aggregator and reader (fork of Newspipe). (<a href="https://jarr.info/login?next=%2F">Demo</a>, <a href="https://github.com/jaesivsm/JARR">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://tontof.net/kriss/feed/">Kriss Feed</a> - Simple and smart (or stupid) feed reader. (<a href="https://tontof.net/feed/">Demo</a>, <a href="https://github.com/tontof/kriss_feed">Source Code</a>) <code>CC0-1.0</code> <code>PHP</code></li>
<li><a href="https://github.com/LeedRSS/Leed">Leed</a> - Leed (for Light Feed) is a Free and minimalist RSS aggregator. <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/toxinu/leselys">Leselys</a> - Your very elegant RSS reader. <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/cubny/lite-reader">Lite-Reader</a> - Read your feeds on your own machine with a simple and lite application. (<a href="http://cubny.com/lite-reader/">Demo</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
<li><a href="https://miniflux.app/">Miniflux</a> - Miniflux is a minimalist and open source news reader, written in Go and PostgreSQL. (<a href="https://github.com/miniflux/v2">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://moonmoon.org/">Moonmoon</a> - simple feed aggregator (planet like): it only aggregates feeds and spits them out in one single page. (<a href="https://github.com/moonmoon/moonmoon">Source Code</a>) <code>BSD-3-Clause</code> <code>PHP</code></li>
<li><a href="https://www.newsblur.com/">NewsBlur</a> - NewsBlur is a personal news reader that brings people together to talk about the world. A new sound of an old instrument. (<a href="https://github.com/samuelclay/NewsBlur">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://github.com/buzz/newsdash">newsdash</a> - A news dashboard inspired by iGoogle and Netvibes. <code>AGPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://git.sr.ht/~cedric/newspipe">Newspipe</a> - Newspipe is a web news reader. (<a href="https://www.newspipe.org/signup">Demo</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/taroved/pol">PolitePol</a> - Online tool for creation of RSS feeds for any web page. (<a href="https://politepol.com">Demo</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://github.com/lemon24/reader">reader</a> - A Python feed reader web app and library (so you can use it to build your own), with only standard library and pure-Python dependencies. <code>BSD-3-Clause</code> <code>Python</code></li>
<li><a href="https://github.com/RSS-Bridge/rss-bridge">RSS-Bridge</a> - rss-bridge is a PHP project capable of generating ATOM feeds for websites which don’t have one. <code>Unlicense</code> <code>PHP</code></li>
<li><a href="https://github.com/Kombustor/rss-fulltext-proxy">RSS Fulltext Proxy</a> - Mirrors RSS feeds to return the full content of the items, extracted from the website. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/taophp/rss-merger">RSS Merger</a> - PHP script which will take multiple RSS / Atom feeds as input and merge them into a single RSS feed. <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/pietheinstrengholt/rssmonster">RSS Monster</a> - RSS Monster is an easy to use web-based RSS aggregator and reader compatible with the Fever API, created as an alternative for Google Reader. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://github.com/rss2email/rss2email">RSS2EMail</a> - Fetches RSS/Atom-feeds and pushes new Content to any email-receiver, supports OPML. <code>GPL-2.0</code> <code>Python</code></li>
<li><a href="https://github.com/herrbischoff/screaming-liquid-tiger">Screaming Liquid Tiger</a> - Simple script to automatically generate valid RSS and Atom feeds from a list of media files in the same folder. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://selfoss.aditu.de/">Selfoss</a> - New multipurpose rss reader, live stream, mashup, aggregation web application. (<a href="https://github.com/fossar/selfoss">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.sismics.com/reader/">Sismics Reader</a> - Free and open source feeds reader, including all major Google Reader features. (<a href="https://www.sismics.com/reader/#!/demo">Demo</a>, <a href="https://github.com/sismics/reader">Source Code</a>) <code>GPL-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/swanson/stringer">Stringer</a> - Work-in-progress self-hosted, anti-social RSS reader. <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://github.com/fazalmajid/temboz">Temboz</a> - Two-column feed reader emphasizing filtering capabilities to manage information overload. <code>MIT</code> <code>Python</code></li>
<li><a href="https://tt-rss.org">Tiny Tiny RSS</a> - Open source web-based news feed (RSS/Atom) reader and aggregator. (<a href="https://framanews.org/">Demo</a>, <a href="https://git.tt-rss.org/fox/tt-rss">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/mboinet/ttrss-mobile">ttrss-mobile</a> - Mobile webapp for Tiny Tiny RSS. <code>AGPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://github.com/kucrut/ttrss-reader">ttrss-reader</a> - Light and responsive client for TTRSS. <code>GPL-2.0</code> <code>Javascript</code></li>
<li><a href="https://getstream.io/winds/">Winds</a> <code>⚠</code> - Open source and beautiful RSS reader built using React/Redux/Sails/Node and Stream. It showcases personalized feeds powered by the Stream API. (<a href="https://winds.getstream.io/">Demo</a>, <a href="https://github.com/GetStream/Winds">Source Code</a>) <code>BSD-3-Clause</code> <code>Nodejs</code></li>
</ul>
<h3 id="file-transfer-synchronization">File Transfer & Synchronization</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>Related: <a href="#groupware">Groupware</a></em></p>
<ul>
<li><a href="https://git-annex.branchable.com/">Git Annex</a> - File synchronization between computers, servers, external drives. (<a href="https://git.joeyh.name/index.cgi/git-annex.git/">Source Code</a>) <code>GPL-3.0</code> <code>Haskell</code></li>
<li><a href="https://kinto.readthedocs.org">Kinto</a> - Kinto is a minimalist JSON storage service with synchronisation and sharing abilities. (<a href="https://github.com/Kinto">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://github.com/subnub/myDrive">myDrive</a> - Fully featured online storage solution, upload/download files, photo/video viewer, and more, all through the web client. (<a href="https://mydrive-demo.herokuapp.com/">Demo</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://nextcloud.com/">Nextcloud</a> - Access and share your files, calendars, contacts, mail and <a href="https://apps.nextcloud.com/">more</a> from any device, on your terms. (<a href="https://demo.nextcloud.com/">Demo</a>, <a href="https://github.com/nextcloud/server">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.openssh.com/">OpenSSH SFTP server</a> - Secure File Transfer Program. (<a href="https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh">Source Code</a>) <code>BSD-2-Clause</code> <code>C</code></li>
<li><a href="https://owncloud.org/">ownCloud</a> - All-in-one solution for saving, synchronizing, viewing, editing and sharing files, calendars, address books and more. (<a href="https://github.com/owncloud/core">Source Code</a>, <a href="https://github.com/owncloud/core/wiki/Apps">Clients</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://pydio.com/">Pydio</a> - Turn any web server into a powerful file management system and an alternative to mainstream cloud storage providers. (<a href="https://github.com/pydio/cells">Source Code</a>) <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://www.samba.org/">Samba</a> - Samba is the standard Windows interoperability suite of programs for Linux and Unix. It provides secure, stable and fast file and print services for all clients using the SMB/CIFS protocol. (<a href="https://git.samba.org/samba.git/">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://www.seafile.com/en/home/">Seafile</a> - File hosting and sharing solution primary for teams and organizations. (<a href="https://github.com/haiwen/seafile">Source Code</a>) <code>GPL-2.0/GPL-3.0/AGPL-3.0/Apache-2.0</code> <code>C</code></li>
<li><a href="https://sparkleshare.org/">SparkleShare</a> - Self hosted, instant, secure file sync. (<a href="https://github.com/hbons/SparkleShare">Source Code</a>) <code>GPL-3.0</code> <code>C#</code></li>
<li><a href="https://www.syncany.org/">Syncany</a> - Secure file sync software for arbitrary storage backends, an open-source cloud storage and filesharing application. Securely synchronize your files to any kind of storage. <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://syncthing.net/">Syncthing</a> - Syncthing is an open source peer-to-peer file synchronisation tool. (<a href="https://github.com/syncthing/syncthing">Source Code</a>) <code>MPL-2.0</code> <code>Go</code></li>
<li><a href="https://www.cis.upenn.edu/~bcpierce/unison/">Unison</a> - Unison is a file-synchronization tool for OSX, Unix, and Windows. <code>GPL-3.0</code> <code>OCaml</code></li>
<li><a href="https://z-push.org/">Z-Push</a> - Implementation of Microsoft’s ActiveSync protocol. (<a href="https://stash.kopano.io/projects/ZHUB/repos/z-push">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="file-transfer---distributed-filesystems">File Transfer - Distributed Filesystems</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><strong>Please visit <a href="https://github.com/awesome-foss/awesome-sysadmin#distributed-filesystems">awesome-sysadmin/Distributed Filesystems</a></strong></p>
<h3 id="file-transfer---object-storage-file-servers">File Transfer - Object Storage & File Servers</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://minio.io/">Minio</a> - Minio is an open source object storage server compatible with Amazon S3 APIs. (<a href="https://github.com/minio/minio">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://github.com/chrislusf/seaweedfs">SeaweedFS</a> - 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. <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://github.com/drakkan/sftpgo">SFTPGo</a> - Flexible, fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support. <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://www.zenko.io/cloudserver">Zenko CloudServer</a> - Zenko CloudServer, an open-source implementation of a server handling the Amazon S3 protocol. (<a href="https://github.com/scality/cloudserver">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
</ul>
<h3 id="file-transfer---peer-to-peer-filesharing">File Transfer - Peer-to-peer Filesharing</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://webtorrent.io/">bittorrent-tracker</a> - Simple, robust, BitTorrent tracker (client and server) implementation. (<a href="https://github.com/webtorrent/bittorrent-tracker">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/jpillora/cloud-torrent">cloud-torrent</a> - Torrent Web Client with HTTP retrievable or streamable downloaded files. <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://datproject.org">Dat Project</a> - Powerful decentralized file sharing applications built from a large ecosystem of modules. (<a href="https://github.com/datproject">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/varbhat/exatorrent">exatorrent</a> - BitTorrent client written in Go that can be run locally or hosted on a remote server, and supports streaming via HTTP. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://file.pizza/">FilePizza</a> - Peer-to-peer file transfers in your browser. (<a href="https://github.com/kern/filepizza">Source Code</a>) <code>BSD-3-Clause</code> <code>Nodejs</code></li>
<li><a href="https://github.com/webtorrent/instant.io">instant.io</a> - Streaming file transfer over WebTorrent. (<a href="https://instant.io">Demo</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/boramalper/magnetico">Magnetico</a> - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/sergiotapia/magnetissimo">Magnetissimo</a> - Search engine that indexes all popular torrent sites. <code>MIT</code> <code>Elixir</code></li>
<li><a href="https://erdgeist.org/arts/software/opentracker/">Opentracker</a> - Open and free bittorrent tracker. It aims for minimal resource usage and is intended to run at your wlan router. (<a href="https://erdgeist.org/gitweb/opentracker/">Source Code</a>) <code>Beerware</code> <code>C</code></li>
<li><a href="https://github.com/asapach/peerflix-server">peerflix-server</a> - Downloads torrent files and provides a direct link download or a direct link stream. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://www.qbittorrent.org/">qBittorrent</a> - Free cross-platform bittorrent client with a feature rich Web UI for remote access. (<a href="https://github.com/qbittorrent/qBittorrent">Source Code</a>) <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://github.com/swetorrentking/rartracker">rartracker</a> - Complete private bittorrent tracker. <code>WTFPL</code> <code>PHP</code></li>
<li><a href="https://github.com/timvisee/send">Send</a> - Simple, private, end to end encrypted temporary file sharing, originally built by Mozilla. (<a href="https://github.com/timvisee/send#clients">Clients</a>) <code>MPL-2.0</code> <code>Nodejs</code></li>
<li><a href="https://codeberg.org/heretic/torrents-csv-server">Torrents.csv</a> - A self-hostable torrent search engine. <code>GPL-3.0</code> <code>Rust</code></li>
<li><a href="https://transmissionbt.com/">Transmission</a> - Fast, easy, Free Bittorrent client. (<a href="https://github.com/transmission/transmission">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
</ul>
<h3 id="file-transfer---single-click-drag-n-drop-upload">File Transfer - Single-click & Drag-n-drop Upload</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/tycrek/ass">ass</a> - The superior self-hosted ShareX server. For use with clients such as ShareX (Windows), Flameshot (Linux), & MagicCap (Linux, macOS). <code>ISC</code> <code>Nodejs</code></li>
<li><a href="https://github.com/broncowdd/BoZoN">BoZoN</a> - Minimalist Drag and drop file sharing app. <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://lolisafe.moe/">Chibisafe</a> - Blazing fast file uploader and awesome bunker written in node. (<a href="https://github.com/weebdev/chibisafe">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://coquelicot.potager.org/">Coquelicot</a> - Coquelicot is a “one-click” file sharing web application with a focus on protecting users’ privacy. (<a href="https://coquelicot.potager.org/dist/coquelicot-0.9.6.tar.gz">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://elixi.re">elixire</a> - Simple yet advanced screenshot uploading and link shortening service. (<a href="https://gitlab.com/elixire/elixire">Source Code</a>, <a href="https://gitlab.com/elixire/elixiremanager">Clients</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/anderspitman/fibridge-proxy-rs">fibridge</a> - Stream huge files out of your browser without having to upload. <code>MIT</code> <code>Rust</code></li>
<li><a href="https://github.com/axeloz/filesharing">Files Sharing</a> - Open Source and self-hosted files sharing application based on unique and temporary links. <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/epoupon/fileshelter">FileShelter</a> - FileShelter is a self-hosted software that allows you to easily share files over the Internet. (<a href="https://fileshelter.demo.poupon.io/">Demo</a>) <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://github.com/rockmanvnx6/FireShare">FireShare</a> - A full-stack, pub-sub, real-time secure file sharing system. (<a href="https://auspham.dev/FireShare">Demo</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/Forceu/gokapi">Gokapi</a> - Lightweight server to share files, which expire after a set amount of downloads or days. Similar to the discontinued Firefox Send, with the difference that only the admin is allowed to upload files. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/Depado/goploader">goploader</a> - Easy file sharing with server-side encryption, curl/httpie/wget compliant. <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/daggy1234/image-uploader">image-uploader</a> - A shareX compatible image uploader built for speed with a web interface and REST API. <code>AGPL-3.0</code> <code>Rust</code></li>
<li><a href="https://github.com/hauxir/imgpush">imgpush</a> - imgpush is a self-hosted file upload service that can easily be integrated into other webapps. <code>MIT</code> <code>Python</code></li>
<li><a href="https://gitlab.com/mojo42/Jirafeau">Jirafeau</a> - Jirafeau is a web site permitting to upload a file in a simple way and give an unique link to it. (<a href="http://jirafeau.net/">Demo</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://kleeja.net/">Kleeja</a> - File Upload/sharing application, used by thousands of webmasters since 2007. (<a href="https://github.com/kleeja-official/kleeja">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/ZizzyDizzyMC/linx-server">linx-server</a> - Simple file sharing and pastebin with API, auto-expiry, deletion keys, and web seed support. (<a href="https://put.icu/">Demo</a>) <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://framagit.org/fiat-tux/hat-softwares/lufi">lufi</a> - Let’s Upload that FIle, client-side encrypted. (<a href="https://demo.lufi.io">Demo</a>, <a href="https://framagit.org/fiat-tux/hat-softwares/lufi/tree/master">Source Code</a>) <code>AGPL-3.0</code> <code>Perl</code></li>
<li><a href="https://github.com/ldidry/lutim">lutim</a> - Let’s Upload That Image. <code>AGPL-3.0</code> <code>Perl</code></li>
<li><a href="https://github.com/micahflee/onionshare">OnionShare</a> - Securely and anonymously share a file of any size. <code>GPL-2.0</code> <code>Python</code></li>
<li><a href="https://www.pictshare.net/">PictShare</a> - PictShare is a multi lingual, open source image hosting service with a simple resizing and upload API. (<a href="https://github.com/HaschekSolutions/pictshare">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/root-gg/plik">Plik</a> - Plik is a scalable and friendly temporary file upload system. (<a href="https://plik.root.gg/">Demo</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://github.com/Pomf/Pomf">Pomf</a> - Simple file uploading and sharing, source for the now shut down site Pomf.se. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.projectsend.org/">ProjectSend</a> - Upload files and assign them to specific clients you create. Give access to those files to your clients. (<a href="https://github.com/projectsend/projectsend">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/psi-4ward/psitransfer">PsiTransfer</a> - Simple open source self-hosted file sharing solution with robust up-/download-resume and password protection. <code>BSD-2-Clause</code> <code>Nodejs</code></li>
<li><a href="https://dev.pste.pw/">Pste</a> - Just a simple file hosting application inspired by the likes of pomf.se and teknik.io. (<a href="https://github.com/FoxDev/pste">Source Code</a>) <code>GPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/ihexxa/quickshare">QuickShare</a> - Quick and simple file sharing between different devices. (<a href="https://hexxa-quickshare.herokuapp.com/">Demo</a>) <code>LGPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/MrDemonWolf/share">Share</a> - Simple yet advanced uploader - upload files, images and text with moderation tools for admins. Can be used for friends and family or just for you. Integration with ShareX and more. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/eikek/sharry">Sharry</a> - Share files easily over the internet between authenticated and anonymous users (both ways) with resumable up- and downloads. <code>GPL-3.0</code> <code>Scala/Java</code></li>
<li><a href="https://transfer.sh">transfer.sh</a> - Easy file sharing from the command line. (<a href="https://github.com/dutchcoders/transfer.sh">Source Code</a>) <code>MIT</code> <code>Go</code></li>
<li><a href="https://uguu.se/">Uguu</a> - Stores files and deletes after X amount of time. (<a href="https://github.com/nokonoko/uguu">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://github.com/Upload/Up1">Up1</a> - Client-side Encrypted Image Host. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/AlphaNecron/Void">Void</a> - Lightweight, fast and elegant file hosting service for ShareX with Web UI and REST API. (<a href="https://github.com/AlphaNecron/Void/">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://v2.femto.pw/">Web-File-Uploader</a> - A simple tool to let people upload and share images and files. (<a href="https://github.com/femto-apps/web-file-uploader">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/SergiX44/XBackBone">XBackBone</a> - A simple, fast and lightweight file manager with instant sharing tools integration, like ShareX (a free and open-source screenshot utility for Windows). <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.youtransfer.io">YouTransfer</a> - YouTransfer is a simple but elegant self-hosted file transfer and sharing solution. (<a href="https://github.com/YouTransfer/YouTransfer">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://zipline.diced.me/">Zipline</a> - A lightweight, fast and reliable file sharing server that is commonly used with ShareX, offering a react-based Web UI and fast API. (<a href="https://github.com/diced/zipline">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
</ul>
<h3 id="file-transfer---web-based-file-managers">File Transfer - Web-based File Managers</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://oupala.github.io/apaxy/">Apaxy</a> - Theme built to enhance the experience of browsing web directories, using the mod_autoindex Apache module and some CSS to override the default style of a directory listing. (<a href="https://github.com/oupala/apaxy">Source Code</a>) <code>GPL-3.0</code> <code>HTML</code></li>
<li><a href="https://www.directorylister.com/">DirectoryLister</a> - Simple PHP based directory lister that lists a directory and all its sub-directories and allows you to navigate there within. (<a href="https://github.com/DirectoryLister/DirectoryLister">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://soyuka.github.io/explorer/">explorer</a> - Highly-configurable directory listing. (<a href="https://github.com/soyuka/explorer">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://filebrowser.org/">filebrowser</a> - Web File Browser with a Material Design web interface. (<a href="https://github.com/filebrowser/filebrowser">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://filegator.io/">FileGator</a> - FileGator is a powerful multi-user file manager with a single page front-end. (<a href="https://demo.filegator.io">Demo</a>, <a href="https://github.com/filegator/filegator">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.filestash.app/">Filestash</a> - A web file manager that lets you manage your data anywhere it is located: FTP, SFTP, WebDAV, Git, S3, Minio, Dropbox, or Google Drive . (<a href="https://demo.filestash.app/">Demo</a>, <a href="https://github.com/mickael-kerjean/filestash">Source Code</a>) <code>AGPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/xataz/gobrowser">goBrowser</a> - Simple http file browser. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/pldubouilh/gossa">Gossa</a> - Gossa is a light and simple webserver for your files. <code>MIT</code> <code>Go</code></li>
<li><a href="https://larsjung.de/h5ai/">h5ai</a> - Modern file indexer for HTTP web servers with focus on your files. Directories are displayed in a appealing way and browsing them is enhanced by different views, a breadcrumb and a tree overview. (<a href="https://larsjung.de/h5ai/demo/">Demo</a>, <a href="https://github.com/lrsjng/h5ai">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://github.com/misterunknown/ifm">IFM</a> - Single script file manager. <code>MIT</code> <code>PHP</code></li>
<li><a href="https://www.resourcespace.com">ResourceSpace</a> - ResourceSpace open source digital asset management software is the simple, fast, and free way to organise your digital assets. (<a href="https://www.resourcespace.com/trial">Demo</a>, <a href="https://www.resourcespace.com/svn">Source Code</a>) <code>BSD-4-Clause</code> <code>PHP</code></li>
<li><a href="https://github.com/jessfraz/s3server">s3server</a> - Simple HTTP interface to index and browse files in a public S3 or Google Cloud Storage bucket. <code>MIT</code> <code>Go</code></li>
<li><a href="https://git.cloudron.io/cloudron/surfer">Surfer</a> - Simple static file server with webui to manage files. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://www.tagspaces.org/">TagSpaces</a> - TagSpaces is an offline, cross-platform file manager and organiser that also can function as a note taking app. The WebDAV version of the application can be installed on top of a WebDAV servers such as Nextcloud or ownCloud. (<a href="https://demo.tagspaces.com">Demo</a>, <a href="https://github.com/tagspaces/tagspaces">Source Code</a>) <code>AGPL-3.0</code> <code>Javascript</code></li>
<li><a href="https://github.com/sc0tfree/updog">updog</a> - Updog is a replacement for Python’s SimpleHTTPServer. It allows uploading and downloading via HTTP/S, can set ad hoc SSL certificates and use http basic auth. <code>MIT</code> <code>Python</code></li>
</ul>
<h3 id="games">Games</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p>Games, game servers and control panels.</p>
<ul>
<li><a href="https://github.com/doublespeakgames/adarkroom">A Dark Room</a> - Minimalist text adventure game for your browser. (<a href="https://adarkroom.doublespeakgames.com/">Demo</a>) <code>MPL-2.0</code> <code>HTML5</code></li>
<li><a href="https://play.elevatorsaga.com/">elevatorsaga</a> - The elevator programming game. (<a href="https://github.com/magwo/elevatorsaga">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://emulinker.org">EmuLinkerSF</a> - EmuLinkerSF is an open source Kaillera server. Kaillera is a client/server system that any emulator can implement to enable netplay over the Internet. (<a href="https://github.com/God-Weapon/EmuLinkerSF">Source Code</a>) <code>GPL-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/Hextris/hextris">Hextris</a> - Fast paced HTML5 puzzle game inspired by Tetris. (<a href="https://hextris.github.io/hextris">Demo</a>) <code>GPL-3.0</code> <code>HTML5</code></li>
<li><a href="https://github.com/lotgd/core">Legend of the Green Dragon</a> - Legend of the Green Dragon is a text-based RPG originally developed by Eric Stevens and JT Traub as a remake of and homage to the classic BBS Door game, Legend of the Red Dragon, by Seth Able Robinson. (<a href="http://lotgd.net/">Demo</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://lichess.org/">Lila</a> - The forever free, adless and open source chess server powering lichess.org, with official iOS and Android client apps. (<a href="https://github.com/ornicar/lila">Source Code</a>) <code>AGPL-3.0</code> <code>Scala</code></li>
<li><a href="https://mindustrygame.github.io/">Mindustry</a> - Factorio-like tower defense game. Build production chains to gather more resources, and build complex facilities. (<a href="https://github.com/Anuken/Mindustry">Source Code</a>) <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://www.minetest.net/">Minetest</a> - An open source voxel game engine. Play one of our many games, mod a game to your liking, make your own game, or play on a multiplayer server. (<a href="https://github.com/minetest/minetest">Source Code</a>) <code>LGPL-2.1/CC-BY-SA-3.0/Other</code> <code>C++</code></li>
<li><a href="https://mtasa.com/">MTA:SA</a> <code>⚠</code> - Multi Theft Auto (MTA) is a software project that adds network play functionality to Rockstar North’s Grand Theft Auto game series, in which this functionality is not originally found. (<a href="https://github.com/multitheftauto/mtasa-blue">Source Code</a>) <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://net64-mod.github.io">Net64+</a> <code>⚠</code> - Net64 aka SM64O allows playing Super Mario 64 in an online multiplayer mode. Net64+ is the official continuation of the program and features an integrated server list. (<a href="https://github.com/Tarnadas/net64plus-server/">Source Code</a>, <a href="https://github.com/Tarnadas/net64plus/">Clients</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/jehervy/node-virtual-gamepads">node-virtual-gamepads</a> - Turn your smartphone into a game controller, keyboard, or touchpad for a remote Linux OS machine. <code>MIT</code> <code>Nodejs/CoffeScript</code></li>
<li><a href="https://github.com/piqueserver/piqueserver">piqueserver</a> - Server for openspades, the first-person shooter in a destructible voxel world. (<a href="https://github.com/yvt/openspades">Clients</a>) <code>GPL-3.0</code> <code>Python/C++</code></li>
<li><a href="https://github.com/abrenaut/posio">Posio</a> - Geography multiplayer game. <code>MIT</code> <code>Python</code></li>
<li><a href="https://github.com/begleysm/quakejs">QuakeJS</a> - QuakeJS is a port of ioquake3 to Javascript that can be played in a browser. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://github.com/nymanjens/quizmaster">Quizmaster</a> - A web-app for conducting a quiz, including a page for players to enter their answers. <code>Apache-2.0</code> <code>Scala</code></li>
<li><a href="https://github.com/gorcon/rcon-cli">RconCli</a> - CLI for executing queries on a remote Valve Source dedicated server using the RCON Protocol. <code>MIT</code> <code>Go</code></li>
<li><a href="https://sbpp.github.io">SourceBans++</a> - Admin, ban, and communication management system for games running on the Source engine. (<a href="https://github.com/sbpp/sourcebans-pp">Source Code</a>) <code>CC-BY-SA-4.0</code> <code>PHP</code></li>
<li><a href="https://www.teeworlds.com">Teeworlds</a> - Open source 2D retro multiplayer shooter. (<a href="https://github.com/teeworlds/teeworlds">Source Code</a>) <code>BSD-3-Clause/Other</code> <code>C++</code></li>
<li><a href="https://github.com/wesnoth/wesnoth">The Battle for Wesnoth</a> - The Battle for Wesnoth is an Open Source, turn-based tactical strategy game with a high fantasy theme, featuring both singleplayer and online/hotseat multiplayer combat. <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://zero-k.info/">Zero-K</a> - Open Source on Springrts engine. Zero-K is a traditional real time strategy game with a focus on player creativity through terrain manipulation, physics, and a large roster of unique units - all while being balanced to support competitive play. (<a href="https://github.com/ZeroK-RTS/Zero-K">Source Code</a>) <code>GPL-2.0</code> <code>Lua</code></li>
</ul>
<h3 id="gateways-and-terminal-sharing">Gateways and Terminal Sharing</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/asciinema/asciinema-server">asciinema</a> - Web app for hosting asciicasts. (<a href="https://asciinema.org/">Demo</a>) <code>Apache-2.0</code> <code>Elixir/Docker</code></li>
<li><a href="http://liftoffsoftware.com/Products/GateOne">GateOne</a> - Gate One is an HTML5 web-based terminal emulator and SSH client. (<a href="https://github.com/liftoff/GateOne">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://guacamole.apache.org">Guacamole</a> - Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC and RDP. (<a href="https://github.com/glyptodon/">Source Code</a>) <code>Apache-2.0</code> <code>Java/C</code></li>
<li><a href="https://neko.m1k1o.net">Neko</a> - A self hosted virtual browser (rabb.it clone) that runs in Docker. (<a href="https://github.com/m1k1o/neko">Source Code</a>) <code>Apache-2.0</code> <code>Docker/Go</code></li>
<li><a href="https://oneye-project.org/">oneye</a> - Cloud software to access your data from everywhere with any browser. (<a href="https://wiki.oneye-project.org/0.9:demo">Demo</a>, <a href="https://github.com/oneye/oneye">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.os-js.org/">OS.js</a> - Desktop implementation for your browser with a fully-fledged window manager, Application APIs, GUI toolkits and filesystem abstraction. (<a href="https://demo.os-js.org/">Demo</a>, <a href="https://github.com/os-js/OS.js">Source Code</a>) <code>BSD-2-Clause</code> <code>Nodejs</code></li>
<li><a href="https://www.shellhub.io">ShellHub</a> - ShellHub is a modern SSH server for remotely accessing linux devices via command line (using any SSH client) or web-based user interface, designed as an alternative to sshd. Think ShellHub as centralized SSH for the edge and cloud computing. (<a href="https://github.com/shellhub-io/shellhub">Source Code</a>) <code>Apache-2.0</code> <code>Go/Other</code></li>
<li><a href="https://github.com/nirui/sshwifty">Sshwifty</a> - Sshwifty is a SSH and Telnet connector made for the Web. <code>AGPL-3.0</code> <code>Go/Docker</code></li>
<li><a href="https://goteleport.com/">Teleport</a> - Certificate authority and access plane for SSH, Kubernetes, web applications, and databases. (<a href="https://github.com/gravitational/teleport">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://tmate.io/">tmate</a> - Instant terminal sharing. (<a href="https://github.com/tmate-io/tmate">Source Code</a>) <code>ISC</code> <code>C</code></li>
</ul>
<h3 id="genealogy">Genealogy</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://genea.app/">Genea.app</a> - Genea is a privacy by design and open source tool anyone can use to author or edit their family tree. Data is stored in the GEDCOM format and all processing is done in the browser. (<a href="https://github.com/genea-app/genea-app">Source Code</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://geneweb.tuxfamily.org/wiki/GeneWeb">GeneWeb</a> - GeneWeb is an open source genealogy software written in OCaml. It comes with a Web interface and can be used off-line or as a Web service. (<a href="https://demo.geneweb.tuxfamily.org/gw7/">Demo</a>, <a href="https://github.com/geneweb/geneweb">Source Code</a>) <code>GPL-2.0</code> <code>OCaml</code></li>
<li><a href="https://www.webtrees.net">webtrees</a> - Webtrees is the web’s leading on-line collaborative genealogy application. (<a href="https://dev.webtrees.net/demo-stable/index.php?ctype=gedcom&ged=demo">Demo</a>, <a href="https://github.com/fisharebest/webtrees">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="groupware">Groupware</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://www.bluemind.net/en/">BlueMind</a> - Groupware with email, calendar, addressbooks, exchange active sync, exchange MAPI protocol support. (<a href="https://forge.bluemind.net/stash/projects/BM/repos/bluemind-public/browse">Source Code</a>) <code>AGPL-3.0</code> <code>Java</code></li>
<li><a href="https://www.citadel.org/doku.php">Citadel</a> - Groupware including email, calendar/scheduling, address books, forums, mailing lists, IM, wiki and blog engines, RSS aggregation and more. (<a href="https://www.citadel.org/source.html">Source Code</a>) <code>GPL-3.0</code> <code>C</code></li>
<li><a href="https://cortezaproject.org">Corteza</a> - CRM including a unified workspace, enterprise messaging and a low code environment for rapidly and securely delivering records-based management solutions. (<a href="https://latest.cortezaproject.org">Demo</a>, <a href="https://github.com/cortezaproject/corteza-server">Source Code</a>) <code>Apache-2.0</code> <code>Go</code></li>
<li><a href="https://cozy.io">Cozy Cloud</a> - Personal cloud where you can manage and sync your contact, files and calendars, and manage your budget with an app store full of community contributions. (<a href="https://github.com/cozy">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://www.group-office.com">Group Office</a> - Group-Office is an enterprise CRM and groupware tool. Share projects, calendars, files and e-mail online with co-workers and clients. (<a href="https://github.com/Intermesh/groupoffice/">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.egroupware.org/">egroupware</a> - Software suite including calendars, address books, notepad, project management tools, client relationship management tools (CRM), knowledge management tools, a wiki and a CMS. (<a href="https://github.com/EGroupware/egroupware">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.espocrm.com/">EspoCRM</a> - CRM with a frontend designed as a single page application, and a REST API. (<a href="https://demo.espocrm.com/">Demo</a>, <a href="https://github.com/espocrm/espocrm">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.horde.org/">Horde</a> - The Horde Project is about creating high quality Open Source applications and libraries, based on PHP and the Horde Framework. (<a href="http://demo.horde.org/login.php">Demo</a>, <a href="https://github.com/horde/horde">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/zelon88/HRCloud2">HRCloud2</a> - Full-featured home hosted Cloud Drive, Personal Assistant, App Launcher, File Converter, Streamer, Share Tool and more. <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://kolab.org/">Kolab</a> - Kolab community is a unified communication and collaboration system. (<a href="https://git.kolab.org/">Source Code</a>) <code>GPL-2.0/LGPL-2.1/GPL-3.0</code> <code>C++/Python/PHP</code></li>
<li><a href="https://kopano.com/">Kopano</a> - Groupware suite including e-mail, calendars, tasks, todos and notes. Featuring a modern WebApp, DeskApp and mobile access over Z-Push/ActiveSync. (<a href="https://demo.kopano.com">Demo</a>, <a href="https://stash.kopano.io">Source Code</a>) <code>AGPL-3.0</code> <code>C/Python/PHP</code></li>
<li><a href="https://openmeetings.apache.org/index.html">Openmeetings</a> - Openmeetings provides video conferencing, instant messaging, white board, collaborative document editing and other groupware tools using API functions of the Red5 Streaming Server for Remoting and Streaming. (<a href="https://openmeetings.apache.org/scm.html">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://sogo.nu/">SOGo</a> - SOGo offers multiple ways to access the calendaring and messaging data. CalDAV, CardDAV, GroupDAV, as well as ActiveSync, including native Outlook compatibility and Web interface. (<a href="https://demo.sogo.nu/SOGo/">Demo</a>, <a href="https://github.com/inverse-inc/sogo">Source Code</a>) <code>LGPL-2.1</code> <code>Objective-C</code></li>
<li><a href="https://suitecrm.com">SuiteCRM</a> - The award-winning, enterprise-class open source CRM. (<a href="https://github.com/salesagility/SuiteCRM">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.tine20.org">Tine 2.0</a> - Contacts, Calendar, Tasks, WebDAV, ActiveSync, VOIP, Mail-Client, CRM, Sales, Projects, Timetracker. (<a href="https://demo.tine20.net">Demo</a>, <a href="https://packages.tine20.com/maintenance/source/">Source Code</a>) <code>AGPL-3.0/Other</code> <code>PHP</code></li>
<li><a href="https://github.com/tracim/tracim">Tracim</a> - Collaborative Platform for team collaboration: file,threads,notes,agenda,etc. <code>AGPL-3.0/LGPL-3.0/MIT</code> <code>Python</code></li>
<li><a href="https://www.zimbra.com/">Zimbra Collaboration</a> - Email, calendar, collaboration server with Web interface and lots of integrations. (<a href="https://github.com/zimbra">Source Code</a>) <code>GPL-2.0/CPAL-1.0</code> <code>Java</code></li>
</ul>
<h3 id="human-resources-management-hrm">Human Resources Management (HRM)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://www.admidio.org/">admidio</a> - Admidio is a free open source user management system for websites of organizations and groups. The system has a flexible role model so that it’s possible to reflect the structure and permissions of your organization. (<a href="https://www.admidio.org/demo/">Demo</a>, <a href="https://github.com/Admidio/admidio">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://icehrm.com/">IceHrm</a> - IceHrm employee management system allows companies to centralize confidential employee information. (<a href="https://icehrm.com/demo.php">Demo</a>, <a href="https://github.com/gamonoid/icehrm">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://www.orangehrm.com/">OrangeHRM</a> - OrangeHRM is a comprehensive HRM system that captures all the essential functionalities required for any enterprise. (<a href="https://sourceforge.net/projects/orangehrm/">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="http://www.sentrifugo.com/">Sentrifugo</a> - Sentrifugo is a HRM system that can be easily configured to meet your organizational needs. (<a href="https://github.com/sapplica/sentrifugo">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://timeoff.management">TimeOff.Management</a> - Simple yet powerful absence management software for small and medium size business. (<a href="https://app.timeoff.management">Demo</a>, <a href="https://github.com/timeoff-management/timeoff-management-application">Source Code</a>) <code>MIT</code> <code>Nodejs</code></li>
</ul>
<h3 id="internet-of-things-iot">Internet of Things (IoT)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://www.devicehive.com/">DeviceHive</a> - Open Source IoT Platform with a wide range of integration options. (<a href="https://playground.devicehive.com/">Demo</a>, <a href="https://github.com/devicehive/devicehive-java-server">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://www.domoticz.com/">Domoticz</a> - Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. (<a href="https://github.com/domoticz/domoticz">Source Code</a>, <a href="https://github.com/domoticz/domoticz-android">Clients</a>) <code>GPL-3.0</code> <code>C/C++</code></li>
<li><a href="https://fhem.de/fhem.html">FHEM</a> - FHEM is used to automate common tasks in the household like switching lamps and heating. It can also be used to log events like temperature or power consumption. You can control it via web or smartphone frontends, telnet or TCP/IP directly. (<a href="https://svn.fhem.de/trac">Source Code</a>) <code>GPL-3.0</code> <code>Perl</code></li>
<li><a href="https://gladysassistant.com/">Gladys</a> - Gladys is a privacy-first, open-source home assistant. (<a href="https://github.com/GladysAssistant/Gladys">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://home-assistant.io/">Home Assistant</a> - Open-source home automation platform. (<a href="https://home-assistant.io/demo/">Demo</a>, <a href="https://github.com/home-assistant/core">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://nodered.org/">Node RED</a> - Browser-based flow editor that helps you wiring hardware devices, APIs and online services to create IoT solutions. (<a href="https://github.com/node-red/node-red">Source Code</a>) <code>Apache-2.0</code> <code>Nodejs</code></li>
<li><a href="https://www.openhab.org">openHAB</a> - Vendor and technology agnostic open source software for home automation. (<a href="https://github.com/openhab/openhab-core">Source Code</a>) <code>EPL-2.0</code> <code>Java</code></li>
<li><a href="https://openremote.io">OpenRemote</a> - 100% Open Source IoT Platform - IoT Asset management, Flow Rules and WHEN-THEN rules, Data visualization, Edge Gateway. (<a href="https://demo.openremote.io/">Demo</a>, <a href="https://github.com/openremote/openremote">Source Code</a>) <code>AGPL-3.0</code> <code>Java</code></li>
<li><a href="https://thingsboard.io/">Thingsboard</a> - Open-source IoT Platform - Device management, data collection, processing and visualization. (<a href="https://demo.thingsboard.io/signup">Demo</a>, <a href="https://github.com/thingsboard/thingsboard">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://thingspeak.com/">Thingspeak</a> - Open source “Internet of Things” application and API to store and retrieve data from things using HTTP. (<a href="https://thingspeak.com/channels/public">Demo</a>, <a href="https://github.com/iobridge/thingspeak">Source Code</a>) <code>GPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://webthings.io/gateway/">WebThings Gateway</a> - WebThings is an open source implementation of the Web of Things, including the WebThings Gateway and the WebThings Framework. (<a href="https://github.com/WebThingsIO/gateway">Source Code</a>) <code>MPL-2.0</code> <code>Nodejs</code></li>
</ul>
<h3 id="knowledge-management-tools">Knowledge Management Tools</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/drichard/mindmaps">Mindmaps</a> - Open source, offline capable, mind mapping application. (<a href="https://www.mindmaps.app">Demo</a>) <code>AGPL-3.0</code> <code>HTML5</code></li>
<li><a href="https://github.com/ondras/my-mind">My Mind</a> - Web application for creating and managing mind maps. (<a href="https://my-mind.github.io/?url=examples%2Ffeatures.mymind">Demo</a>) <code>MIT</code> <code>Javascript</code></li>
<li><a href="https://github.com/semi-technologies/weaviate">Weaviate</a> - A cloud-native, realtime vector search engine integrating scalable machine learning models (GraphQL and RESTful APIs). (<a href="https://www.semi.technology/documentation/weaviate/current/">Demo</a>) <code>BSD-3-Clause</code> <code>Go</code></li>
</ul>
<h3 id="learning-and-courses">Learning and Courses</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://www.canvaslms.com/">Canvas LMS</a> - Canvas is the trusted, open-source learning management system (LMS) that is revolutionizing the way we educate. (<a href="https://canvas.instructure.com/register">Demo</a>, <a href="https://github.com/instructure/canvas-lms">Source Code</a>) <code>AGPL-3.0</code> <code>Ruby</code></li>
<li><a href="https://chamilo.org/">Chamilo LMS</a> - Chamilo LMS allows you to create a virtual campus for the provision of online or semi-online training. (<a href="https://github.com/chamilo/chamilo-lms">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.edx.org/">edX</a> - The Open edX platform is open-source code that powers edX.org. (<a href="https://github.com/edx/">Source Code</a>) <code>AGPL-3.0</code> <code>Python</code></li>
<li><a href="https://www.gibbonedu.org/">Gibbon</a> - The flexible, open source school management platform designed to make life better for teachers, students, parents and leaders. (<a href="https://github.com/GibbonEdu/core">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.ilias.de">ILIAS</a> - ILIAS is the Learning Management System that can cope with anything you throw at it. (<a href="https://demo.ilias.de">Demo</a>, <a href="https://github.com/ILIAS-eLearning/ILIAS">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://mahara.org/">Mahara</a> - Open Source fully featured web application to build students electronic portfolio. (<a href="https://github.com/MaharaProject/mahara">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://moodle.org/">Moodle</a> - Moodle is a learning and courses platform with one of the largest open source communities worldwide. (<a href="https://moodle.org/demo/">Demo</a>, <a href="https://git.moodle.org/gw">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://www.openeclass.org/">Open eClass</a> - Open eClass is an advanced e-learning solution that can enhance the teaching and learning process. (<a href="https://demo.openeclass.org/">Demo</a>, <a href="https://github.com/gunet/openeclass">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.openolat.com/?lang=en">OpenOLAT</a> - OpenOLAT is a web-based learning management system for teaching, education, assessment and communication. (<a href="https://learn.olat.com">Demo</a>, <a href="https://github.com/OpenOLAT/OpenOLAT">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://documen.tician.de/relate/">RELATE</a> - RELATE is a web-based courseware package, includes features such as: flexible rules, statistics, multi-course support, class calendar. (<a href="https://github.com/inducer/relate">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://www.rosariosis.org/">RosarioSIS</a> - RosarioSIS, free Student Information System for school management. (<a href="https://www.rosariosis.org/demo/">Demo</a>, <a href="https://gitlab.com/francoisjacquet/rosariosis/">Source Code</a>) <code>GPL-2.0</code> <code>PHP</code></li>
<li><a href="https://www.sakaiproject.org/">Sakai</a> - The Sakai project provides a flexible and feature-rich environment for teaching, learning, research and other collaboration. (<a href="https://www.sakaiproject.org/try-sakai">Demo</a>, <a href="https://github.com/sakaiproject/sakai">Source Code</a>) <code>ECL-2.0</code> <code>Java</code></li>
</ul>
<h3 id="maps-and-global-positioning-system-gps">Maps and Global Positioning System (GPS)</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><em>See also: <a href="https://github.com/sshuair/awesome-gis">awesome-gis</a></em></p>
<ul>
<li><a href="https://github.com/noandrea/geo2tz">Geo2tz</a> - Get the timezone from geo coordinates (lat, lon). <code>MIT</code> <code>Go/Docker</code></li>
<li><a href="https://graphhopper.com/">GraphHopper</a> - Fast routing library and server using OpenStreetMap. (<a href="https://github.com/graphhopper/graphhopper">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://github.com/bilde2910/Hauk">Hauk</a> - Easy to setup location sharing platform that lets you temporarily share your location with anyone in real-time. (<a href="https://github.com/bilde2910/Hauk#demo-server">Demo</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://github.com/MapBBCode/share.mapbbcode.org">MapBBCodeShare</a> - Tool for sharing custom OSM maps. Support for annotated markers, polygons, lines, multi-format import/export, multiple layers, shortlinks. (<a href="http://share.mapbbcode.org/">Demo</a>) <code>WTFPL/Other</code> <code>PHP</code></li>
<li><a href="https://nominatim.org/">Nominatim</a> - Server application for reverse geocoding (address -> coordinates) on OpenStreetMap data. (<a href="https://github.com/osm-search/Nominatim">Source Code</a>) <code>GPL-2.0</code> <code>C</code></li>
<li><a href="http://project-osrm.org/">Open Source Routing Machine (OSRM)</a> - High performance routing engine designed to run on OpenStreetMap data and offering an HTTP API, C++ library interface, and Nodejs wrapper. (<a href="https://map.project-osrm.org/">Demo</a>, <a href="https://github.com/Project-OSRM/osrm-backend">Source Code</a>) <code>BSD-2-Clause</code> <code>C++</code></li>
<li><a href="http://www.opengts.org/">OpenGTS</a> - Entry-level fleet tracking system. Supports variety of tracking devices and protocols. Comes with rich web-interface and reporting features. (<a href="http://track.opengts.org/track/Track">Demo</a>, <a href="https://sourceforge.net/projects/opengts/files/server-base/">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://www.openstreetmap.org/">OpenStreetMap</a> - Collaborative project to create a free editable map of the world. (<a href="https://github.com/openstreetmap/openstreetmap-website">Source Code</a>, <a href="https://wiki.openstreetmap.org/wiki/Software">Clients</a>) <code>GPL-2.0</code> <code>Ruby</code></li>
<li><a href="https://www.opentripplanner.org/">OpenTripPlanner</a> - Multimodal trip planning software based on OpenStreetMap data and consuming published GTFS-formatted data to suggest routes using local public transit systems. (<a href="https://github.com/opentripplanner/OpenTripPlanner">Source Code</a>) <code>LGPL-3.0</code> <code>Java/Javascript</code></li>
<li><a href="https://github.com/LINKIWI/orion-web">Orion</a> - Powerful OwnTracks API-compliant location data visualization frontend for the web. (<a href="https://linkiwi.github.io/orion-web/">Demo</a>) <code>MIT</code> <code>Python/Nodejs</code></li>
<li><a href="https://github.com/owntracks/recorder">OwnTracks Recorder</a> <code>⚠</code> - Store and access data published by <a href="https://owntracks.org/">OwnTracks</a> location tracking apps. <code>GPL-2.0</code> <code>C/Lua</code></li>
<li><a href="https://tileserver.readthedocs.io/">TileServer GL</a> - Vector and raster maps with GL styles. Server side rendering by Mapbox GL Native. Map tile server for Mapbox GL JS, Android, iOS, Leaflet, OpenLayers, GIS via WMTS, etc. (<a href="https://github.com/maptiler/tileserver-gl">Source Code</a>) <code>BSD-2-Clause</code> <code>Nodejs</code></li>
<li><a href="https://www.maptiler.com/server/">TileServer PHP</a> - Serve map tiles from any PHP hosting. (<a href="https://github.com/maptiler/tileserver-php">Source Code</a>) <code>BSD-2-Clause</code> <code>PHP</code></li>
<li><a href="https://www.traccar.org/">Traccar</a> - Java application to track GPS positions. Supports loads of tracking devices and protocols, has an Android and iOS App. Has a web interface to view your trips. (<a href="https://demo.traccar.org/">Demo</a>, <a href="https://github.com/traccar">Source Code</a>) <code>Apache-2.0</code> <code>Java</code></li>
<li><a href="https://umap.openstreetmap.fr/en/">uMap</a> - Create maps with OpenStreetMap layers in a minute and embed them in your site. (<a href="https://github.com/umap-project/umap">Source Code</a>) <code>WTFPL</code> <code>Python</code></li>
<li><a href="https://github.com/bfabiszewski/ulogger-server">μlogger</a> - Collect geolocation from users in real-time and display their GPS tracks on a website. (<a href="http://ulogger.fabiszewski.net/">Demo</a>) <code>GPL-3.0</code> <code>PHP</code></li>
</ul>
<h3 id="media-streaming">Media Streaming</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<p><strong>Please visit <a href="#media-streaming---audio-streaming">Media streaming - Audio Streaming</a>, <a href="#media-streaming---mutimedia-streaming">Media streaming - Multimedia Streaming</a>, <a href="#media-streaming---video-streaming">Media streaming - Video Streaming</a></strong></p>
<p><em>See also: <a href="https://en.wikipedia.org/wiki/List_of_streaming_media_systems">List of streaming media systems - Wikipedia</a>, <a href="https://en.wikipedia.org/wiki/Comparison_of_streaming_media_systems">Comparison of streaming media systems - Wikipedia</a></em></p>
<h3 id="media-streaming---audio-streaming">Media Streaming - Audio Streaming</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://github.com/airsonic-advanced/airsonic-advanced/">Airsonic Advanced</a> - Open-source web-based media streamer and jukebox based on Airsonic, with several key performance and feature enhancements. <code>GPL-3.0</code> <code>Java</code></li>
<li><a href="https://ampache.org/">Ampache</a> - Web based audio/video streaming application. (<a href="https://play.dogmazic.net/">Demo</a>, <a href="https://github.com/ampache/ampache">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/izderadicka/audioserve">Audioserve</a> - Simple personal server to serve audio files from directories (audiobooks, music, podcasts…). Focused on simplicity and supports sync of play position between clients. <code>MIT</code> <code>Rust</code></li>
<li><a href="https://www.azuracast.com/">AzuraCast</a> - A modern and accessible self-hosted web radio management suite. (<a href="https://github.com/AzuraCast/AzuraCast">Source Code</a>) <code>Apache-2.0</code> <code>PHP</code></li>
<li><a href="https://beets.io/">Beets</a> - Music library manager and MusicBrainz tagger (command-line and Web interface). (<a href="https://github.com/beetbox/beets">Source Code</a>) <code>MIT</code> <code>Python</code></li>
<li><a href="https://github.com/aidewoode/black_candy">Black Candy</a> - Music streaming server built with Rails and Stimulus. <code>MIT</code> <code>Ruby</code></li>
<li><a href="https://github.com/compactd/compactd">Compactd</a> - Remote music player that supports adding content. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://listen-to-euterpe.eu">euterpe</a> - Self-hosted music streaming server with RESTful API and Web interface. (<a href="https://listen-to-euterpe.eu/demo">Demo</a>, <a href="https://github.com/ironsmile/euterpe">Source Code</a>) <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/xouabita/friends-radio">FriendsRadio</a> <code>⚠</code> - Share music with your friends from Youtube and Soundcloud. (<a href="https://friends-radio.herokuapp.com/">Demo</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://funkwhale.audio/">Funkwhale</a> - Modern, web-based, convivial, multi-user and free music server. (<a href="https://demo.funkwhale.audio/">Demo</a>, <a href="https://code.eliotberriot.com/funkwhale/funkwhale">Source Code</a>) <code>BSD-3-Clause</code> <code>Python/Django</code></li>
<li><a href="https://gnu.io/fm/">GNU FM</a> - Running music community websites, alternative to last.fm. (<a href="https://git.savannah.gnu.org/cgit/librefm.git/">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/sentriz/gonic">gonic</a> - Lightweight music streaming server. Subsonic compatible. <code>GPL-3.0</code> <code>Go</code></li>
<li><a href="https://github.com/andrewrk/groovebasin">Groove Basin</a> - Music player server with a web-based user interface inspired by Amarok 1.4. <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://koel.dev/">koel</a> - Personal music streaming server that works. (<a href="https://github.com/koel/koel">Source Code</a>) <code>MIT</code> <code>PHP</code></li>
<li><a href="https://koozic.net/">KooZic</a> - Music server with powerful playlist features and Subsonic compatibility. (<a href="https://demo.koozic.net/public">Demo</a>, <a href="https://github.com/DocMarty84/koozic">Source Code</a>) <code>LGPL-3.0/MIT</code> <code>Python</code></li>
<li><a href="https://libretime.org">LibreTime</a> - Simple, open source platform that lets you broadcast streaming radio on the web (fork of <a href="https://github.com/sourcefabric/Airtime">Airtime</a>). (<a href="https://github.com/LibreTime/libretime">Source Code</a>) <code>AGPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/epoupon/lms">LMS</a> - Access your self-hosted music using a web interface. (<a href="https://lms.demo.poupon.io/">Demo</a>) <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://moodeaudio.org/">moOde Audio</a> - Audiophile-quality music playback for the wonderful Raspberry Pi family of single board computers. (<a href="https://github.com/moode-player/moode">Source Code</a>) <code>GPL-3.0</code> <code>PHP</code></li>
<li><a href="https://github.com/martijnboland/moped">Moped</a> - Responsive HTML5 + Javascript client for the Mopidy music server. <code>MIT</code> <code>HTML5</code></li>
<li><a href="https://github.com/pimusicbox/mopidy-musicbox-webclient">Mopidy MusicBox</a> - Web Client for Mopidy Music Server. <code>Apache-2.0</code> <code>HTML5</code></li>
<li><a href="https://github.com/Lesterpig/mopidy-party">Mopidy-Party</a> - Mopidy web extension designed for party! Let your guests manage the sound. <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://docs.mopidy.com/">Mopidy</a> - Extensible music server. Offers a superset of the mpd API, as well as integration with 3rd party services like Spotify, SoundCloud etc. (<a href="https://github.com/mopidy/mopidy">Source Code</a>) <code>Apache-2.0</code> <code>Python</code></li>
<li><a href="https://www.musicpd.org/">mpd</a> - Daemon to remotely play music, stream music, handle and organize playlists. Many clients available. (<a href="https://github.com/MusicPlayerDaemon/MPD">Source Code</a>, <a href="https://www.musicpd.org/clients/">Clients</a>) <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://mstream.io/">mStream</a> - Music streaming server with GUI management tools. Runs on Mac, Windows, and Linux. (<a href="https://github.com/IrosTheBeggar/mStream">Source Code</a>) <code>GPL-2.0</code> <code>Nodejs</code></li>
<li><a href="https://musikcube.com/">musikcube</a> - Streaming audio server with Linux/macOS/Windows/Android clients. (<a href="https://github.com/clangen/musikcube">Source Code</a>) <code>BSD-3-Clause</code> <code>C++</code></li>
<li><a href="https://www.navidrome.org">Navidrome Music Server</a> - Modern Music Server and Streamer, compatible with Subsonic/Airsonic. (<a href="https://www.navidrome.org/demo">Demo</a>, <a href="https://github.com/navidrome/navidrome">Source Code</a>, <a href="https://www.navidrome.org/docs/overview/#apps">Clients</a>) <code>GPL-3.0</code> <code>Go/Javascript</code></li>
<li><a href="https://github.com/agersant/polaris">Polaris</a> - Music browsing and streaming application optimized for large music collections, ease of use and high performance. <code>MIT</code> <code>Rust</code></li>
<li><a href="https://github.com/raveberry/raveberry">Raveberry</a> - A multi-user music server with a focus on participation. (<a href="https://demo.raveberry.party/">Demo</a>) <code>LGPL-3.0</code> <code>Python</code></li>
<li><a href="https://github.com/badaix/snapcast">Snapcast</a> - Synchronous multiroom audio server. <code>GPL-3.0</code> <code>C++</code></li>
<li><a href="https://github.com/benkaiser/stretto">Stretto</a> - Music player with Youtube/Soundcloud import and iTunes/Spotify discovery. (<a href="https://next.kaiserapps.com">Demo</a>, <a href="https://github.com/benkaiser/stretto-mobile-next">Clients</a>) <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://volumio.org/">Volumio</a> - A free and open source linux distribution, designed and fine-tuned exclusively for music playback. (<a href="https://github.com/volumio/Volumio2">Source Code</a>) <code>GPL-3.0</code> <code>Nodejs</code></li>
<li><a href="https://www.ympd.org/">ympd</a> - Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS. (<a href="https://github.com/notandy/ympd">Source Code</a>) <code>GPL-2.0</code> <code>C</code></li>
</ul>
<h3 id="media-streaming---multimedia-streaming">Media Streaming - Multimedia Streaming</h3>
<p><strong><a href="#"><code>^ back to top ^</code></a></strong></p>
<ul>
<li><a href="https://gerbera.io/">Gerbera</a> - Gerbera is an UPnP Media Server. It allows you to stream your digital media throughout your home network and listen to/watch it on a variety of UPnP compatible devices. (<a href="https://github.com/gerbera/gerbera">Source Code</a>) <code>GPL-2.0</code> <code>C++</code></li>
<li><a href="https://github.com/ridhwaans/homehost">homehost</a> <code>⚠</code> - Self-hosted React + Redux app that streams your media collection (music, movies, books, podcasts, comics etc). <code>MIT</code> <code>Nodejs</code></li>
<li><a href="https://icecast.org">Icecast 2</a> - streaming audio/video server which can be used to create an Internet radio station or a privately running jukebox and many things in between. (<a href="https://gitlab.xiph.org/xiph/icecast-server">Source Code</a>, <a href="https://icecast.org/apps/">Clients</a>) <code>GPL-2.0</code> <code>C</code></li>