jam VS Wekan

Compare jam vs Wekan and see what are their differences.

jam

🍓 Jam is your own open source Clubhouse for mini conferences, friends, communities (by jam-systems)

Wekan

The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://app.transifex.com/wekan/wekan only. (by wekan)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
jam Wekan
12 79
1,239 19,126
0.2% 0.6%
0.0 9.8
8 months ago 11 days ago
JavaScript JavaScript
GNU Affero General Public License v3.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

jam

Posts with mentions or reviews of jam. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-20.
  • Top Webflow tools and integrations. Part 1.
    2 projects | /r/webflow | 20 Jun 2022
    Jam pro
  • Show HN: WebRTC Nuts and Bolts, A holistic way of understanding how WebRTC runs
    5 projects | news.ycombinator.com | 29 May 2022
  • Hacker News top posts: Dec 9, 2021
    2 projects | /r/hackerdigest | 9 Dec 2021
    Jam – Self-Hosted Clubhouse\ (40 comments)
  • Jam – Self-Hosted Clubhouse
    1 project | /r/patient_hackernews | 9 Dec 2021
    1 project | /r/hackernews | 9 Dec 2021
    1 project | /r/Boiling_Steam | 9 Dec 2021
    5 projects | news.ycombinator.com | 8 Dec 2021
    Wow, I just woke up to this. Glad to see Jam here on hn. We've come a long way since the initial release earlier this year (Show HN: https://news.ycombinator.com/item?id=26131123).

    Most of our efforts since february went into making the rooms more reliable which sounds simple but there are actually countless of different reasons for why audio might not work or not work as well as it could (switching from wifi to mobile data, microphone permissions, bandwidth problems, OS forces app into background, …) some are solvable others at least need to be documented and tracked.

    What else is new other than reliability?:

    # Support for large rooms (think: thousands of people in the audience) using an SFU

    Initially Jam only had support for p2p rooms which is great for small rooms (up to like ~20 people depending on upstream bandwidth of the speakers) but for online conferences, meetups and so on you often need rooms that support 100s or 1000s of participants so we added an SFU where the speakers still send audio to each other p2p to keep conversations low-latency but we use a server to stream audio to all users that are in the audience.

    (That said: you can still run Jam p2p-only if you prefer that)

    # Locally recorded multi-track audio (think: podcasts with multiple guests, where you get one high quality audio track per speaker)

    You can try multi-track audio recordings on our public beta server (https://beta.jam.systems). Tap on our own user and then "Start Podcast Recording". When you tap on your own user again and then "Stop Podcast Recording" the browser will prompt you with downloads for all audio tracks (we will make this more smooth going forward).

    # Custom UI

    For everyone who wants to add audio rooms to their own app but needs full control over the look and feel we have added an API and JavaScript library (and NPM package) so you can "build your own" ui for Jam. This basically means that Jam is running "headless" as an audio room server and makes sure audio works while you can build exactly the ui that you want.

    E.g. let's say you have an app like Google Docs and you want to allow people to talk about a document. In this case you might want something that doesn't look like a room on Clubhouse or Twitter Spaces but rather like a line of avatars and with the API and library you can build this yourself now:

    https://www.npmjs.com/package/jam-core

    https://gitlab.com/jam-systems/jam/-/tree/master/ui/examples

    # Managed hosting

    For everyone who wants to use Jam but doesn't want to install and maintain Jam themselves we are run and support Jam for you (think: what Wordpress.com is to Wordpress.org):

    https://jamshelf.com

  • Jam: Open Source Self-Hosted Clubhouse
    1 project | /r/opensource | 9 Dec 2021
  • Tools: Recording a Podcast with guests
    1 project | /r/podcasting | 10 Nov 2021
    I am working on an open source tool (Jam) that can be used to record podcasts with guests.
  • Awesome Clones
    40 projects | dev.to | 14 Apr 2021

Wekan

Posts with mentions or reviews of Wekan. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-18.
  • Elegant open source project tracking, Trello like but self-hosted
    6 projects | news.ycombinator.com | 18 Mar 2024
    Looks nice, I selfhosted https://github.com/wekan/wekan for a while, which is a MIT licensed heavily Trello-inspired alternative, does someone know both Wekan and Plankanban and can tell their differences?
  • PostgreSQL on S390x
    1 project | news.ycombinator.com | 23 Nov 2023
    Where can I get info, how to make required changes to get software running on s390x? For example, some software requires CPU-specific assembler code. I can not get some code to compile correctly:

    https://github.com/wekan/wekan/wiki/s390x

  • Coding Is Hard
    2 projects | news.ycombinator.com | 19 Nov 2023
    Thanks for writing this.

    I have added and removed about 4 million lines of code:

    https://github.com/wekan/wekan/graphs/contributors

    to WeKan Open Source kanban:

    https://wekan.github.io

    You are not dumb. It is normal to feel frustrated, when figuring out, step by step, how something works, and what to do. It is like labyrinth. Having enough breaks, taking a walk when needed, having enough coping skills or adding more of them, having patience to keep notes of what is current position in that rabbit hole. If some way does not work, try some other way.

    It is always about the basics. Many programming languages change syntax often. Some dependencies change.

    For example, when writing some for database export:

    1) There was no working code examples at documentation

    2) Google etc searches had old info, did not work

    3) I did not find from source code how it did work

    4) ChatGPT, Bing AI etc examples did not work

    5) So I tried with trial and error, what is correct syntax, character by character

    For some error messages, sometimes Google search shows somebody having same problem, or even a fix. But if not, it's about reading source code of the software.

    But this works when code is available, like in Open Source.

    If something is binary executeable, then there is need to decompile, read assembler, deobfuscate, etc. That means even more required, I have not gone there yet. That is why I use and develop FOSS, when it is possible to more easily fix something, when it is broken.

  • Show HN: Kantankanban – A CLI to track to-do's, custom lists, and more
    5 projects | news.ycombinator.com | 17 Aug 2023
    Hi Wekan,

    looks cool but IHMO suffers from confusing documentation and onramp.

    It took me multiple attempts, days apart, after initially stumbling upon this comment to get a better sense of it.

    The project homepage (https://wekan.github.io/) stresses the different installers but at that point I didn't know if I want to install it or not.

    Clicking on the Features link (https://wekan.github.io/#features) just takes you a few lines down on the same page which doesn't tell you much.

    I tried to find a link to the Github repo but that wasn't obvious either. Eventually I stumbled upon it by following the Docs and API links at the bottom but those are very small and hidden compared to the rest of the content on the page.

    From the Docs wiki there is a much better list of Features (https://github.com/wekan/wekan/wiki#:~:text=Calendar-,Featur...) that tells me more of what I was looking for.

    However, I still don't know what database backends are supported or how configurable those are which I need to know in order to assess my backup strategy and how much work it will be for me to maintain this for our intranet site.

  • Trello Alternative
    10 projects | /r/selfhosted | 6 Jun 2023
  • Firefox Multirow Bookmarks Toolbar
    1 project | news.ycombinator.com | 1 Jun 2023
  • Kanboard is a free and open source Kanban project management software
    14 projects | news.ycombinator.com | 23 May 2023
    Thanks! I added issue about it:

    https://github.com/wekan/wekan/issues/4930

  • Suggestions for self-hosted Kanban with activities timeline?
    1 project | /r/selfhosted | 14 Apr 2023
    Try to look at wekan. https://wekan.github.io/
  • Project Management
    4 projects | /r/NextCloud | 29 Mar 2023
    Deck is very minimal and not really suited for anything beyond simple, personal stuff, in my opinion. As far as self-hosted, my favorite is still Kanboard, which has a lot of plugins and themes to choose from. Leantime is good too and a bit different. I also like Vikunja and Wekan.
  • Self-hosted kanban board
    6 projects | /r/selfhosted | 19 Mar 2023
    Have a look at Kanboard. For Android it can be used with kandroid (available on F-Droid). There is also WeKan with official app on Google Play Store

What are some alternatives?

When comparing jam and Wekan you can also consider the following projects:

Google-Meet-Spam-Bot - Flood any class or meeting with as many chat spamming bots as you desire 😈

Kanboard - Kanban project management software

react-native-steve - React Native horizontal scroll view component as seen on Clubhouse tags

focalboard - Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.

mumble-web - An HTML5 Mumble client

Planka - The realtime kanban board for workgroups built with React and Redux.

clubhouse - Clubhouse API client and social graph crawler for TypeScript.

Restyaboard - Trello like kanban board. Based on Restya platform.

kord - Spotify, Soundcloud, and YouTube all in one website!

deck - 🗂 Kanban-style project & personal management tool for Nextcloud, similar to Trello

Rocket.Chat - The communications platform that puts data protection first.

deck - DECK is a powerful and high performant local web development studio, an open source alternative to Docker desktop