Convert Figma logo to code with AI

wekan logowekan

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.

19,527
2,833
19,527
645

Top Related Projects

Kanban project management software

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

19,410

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.

Quick Overview

Wekan is an open-source kanban board application that helps teams organize and manage their work. It provides a visual interface for task management, allowing users to create boards, lists, and cards to track projects and collaborate effectively. Wekan is highly customizable and can be self-hosted, making it a popular choice for organizations seeking control over their data.

Pros

  • Self-hosted and open-source, providing full control over data and customization
  • Feature-rich with support for multiple boards, lists, labels, and integrations
  • Active community and regular updates
  • Mobile-friendly and responsive design

Cons

  • Steeper learning curve compared to some commercial alternatives
  • Self-hosting requires technical knowledge for setup and maintenance
  • Limited built-in reporting and analytics features
  • Some advanced features may require additional configuration or plugins

Getting Started

To get started with Wekan, follow these steps:

  1. Install Docker on your system
  2. Run the following command to start Wekan:
docker run -d --restart=always --name wekan-app \
    -e ROOT_URL=http://localhost \
    -e MONGO_URL=mongodb://wekan-db:27017/wekan \
    -p 8080:8080 \
    wekanteam/wekan:latest
  1. Access Wekan at http://localhost:8080
  2. Create an admin account and start setting up your boards

For more detailed instructions and alternative installation methods, refer to the official Wekan documentation.

Competitor Comparisons

Kanban project management software

Pros of Kanboard

  • Lightweight and minimalist design, focusing on simplicity and ease of use
  • Built-in time tracking and reporting features
  • Supports plugins for extended functionality

Cons of Kanboard

  • Less visually appealing interface compared to Wekan
  • Fewer built-in integrations with third-party services
  • Limited customization options for board appearance

Code Comparison

Kanboard (PHP):

<?php
require_once __DIR__.'/app/common.php';
$container['router']->dispatch();

Wekan (JavaScript):

import { Meteor } from 'meteor/meteor';
import '../config/accounts';
import '../config/at_config';
import '../config/moment';
Meteor.startup(() => {
  // ...
});

Kanboard uses PHP and follows a more traditional web application structure, while Wekan is built with Meteor, a full-stack JavaScript framework. This difference in technology stack impacts the development experience and deployment options for each project.

Both projects are open-source kanban board solutions, but they cater to slightly different user needs. Kanboard focuses on simplicity and core functionality, while Wekan offers a more feature-rich and visually polished experience. The choice between the two depends on specific project requirements and user preferences.

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

Pros of Focalboard

  • More modern and visually appealing user interface
  • Better integration with other Mattermost products
  • Stronger focus on project management and task organization

Cons of Focalboard

  • Less mature and established compared to Wekan
  • Fewer customization options and plugins
  • Limited support for advanced kanban features

Code Comparison

Focalboard (TypeScript):

export function createBoard(teamId: string, title: string): Board {
    return {
        id: Utils.createGuid(),
        teamId,
        title,
        icon: '',
        description: '',
        createAt: Date.now(),
        updateAt: Date.now(),
        deleteAt: 0,
        minimumRole: '',
    }
}

Wekan (JavaScript):

Boards.insert({
  title: board.title,
  slug: getSlug(board.title),
  archived: false,
  createdAt: new Date(),
  modifiedAt: new Date(),
  stars: 0,
  labels: [],
  members: [],
  permission: board.permission,
});

Both repositories offer open-source kanban board solutions, but they cater to different needs. Focalboard is more focused on modern project management within the Mattermost ecosystem, while Wekan provides a more traditional and customizable kanban experience. The code comparison shows that Focalboard uses TypeScript and has a more structured approach to board creation, while Wekan uses JavaScript and directly interacts with the database for board insertion.

19,410

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.

Pros of Wekan

  • More active development and frequent updates
  • Larger community and contributor base
  • Better documentation and support resources

Cons of Wekan

  • Potentially more complex setup and configuration
  • May have more features than necessary for some users
  • Larger codebase could lead to more potential bugs

Code Comparison

Wekan (main repository):

Template.headerBarContent.events({
  'click .js-create-board': Popup.open('createBoard'),
  'click .js-open-archived-board': Popup.open('archivedBoards'),
  'click .js-change-language': Popup.open('changeLanguage'),
});

Wekan (fork):

Template.headerBarContent.events({
  'click .js-create-board': Popup.open('createBoard'),
  'click .js-open-archived-board': Popup.open('archivedBoards'),
  // Language change functionality removed
});

The code comparison shows that the fork has removed the language change functionality, potentially simplifying the user interface but reducing language options.

Note: The comparison between wekan/wekan and wekan/wekan> is unclear, as they appear to be the same repository. The comparison provided assumes a hypothetical fork with minor differences. In reality, these repositories would likely be identical, making a meaningful comparison impossible without more specific information about any potential differences or branches.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Gitpod Ready-to-Code

WeKan ® - Open Source kanban

Downloads

https://wekan.github.io / Install WeKan ® Server

Docker Containers

docker-compose.yml at https://github.com/wekan/wekan/blob/main/docker-compose.yml

Standards

  • WeKan and Standard for Public Code assessment was made at 2023-11. Currently Wekan meets 8 out of 16 criteria out of the box. Some others could be met with small changes.

Code stats

Translate WeKan ® at Transifex

Translations to non-English languages are accepted only at Transifex using webbrowser. New English strings of new features can be added as PRs to master branch file wekan/imports/i18n/data/en.i18n.json .

WeKan ® feature requests and bugs

Please add most of your questions as GitHub issue: WeKan ® Feature Requests and Bugs. It's better than at chat where details get lost when chat scrolls up.

Chat

Discussions - WeKan Community GitHub Discussions, that are not Feature Requests and Bugs.

WeKan IRC FAQ

Docker: Latest tag has newest release

You can use latest tag to get newest release tag. See bottom of https://github.com/wekan/wekan/issues/3874

FAQ

NOTE:

  • Please read the FAQ first
  • Please don't feed the trolls and spammers that are mentioned in the FAQ :)

About WeKan ®

WeKan ® is an completely Open Source and Free software collaborative kanban board application with MIT license.

Whether you’re maintaining a personal todo list, planning your holidays with some friends, or working in a team on your next revolutionary idea, Kanban boards are an unbeatable tool to keep your things organized. They give you a visual overview of the current state of your project, and make you productive by allowing you to focus on the few items that matter the most.

Since WeKan ® is a free software, you don’t have to trust us with your data and can install Wekan on your own computer or server. In fact we encourage you to do that by providing one-click installation on various platforms.

  • WeKan ® is used in most countries of the world.
  • WeKan ® largest user has 30k users using WeKan ® in their company.
  • WeKan ® has been translated to about 105 languages.
  • Features: WeKan ® has real-time user interface.
  • Platforms: WeKan ® supports many platforms. WeKan ® is critical part of new platforms Wekan is currently being integrated to.

Requirements

  • 64bit: Linux Snap or Sandstorm / Mac / Windows. More Platforms, bundle for RasPi3 ARM and other CPUs where Node.js and MongoDB exists.
  • 1 GB RAM minimum free for WeKan ®. Production server should have minimum total 4 GB RAM. For thousands of users, for example with Docker: 3 frontend servers, each having 2 CPU and 2 wekan-app containers. One backend wekan-db server with many CPUs.
  • Enough disk space and alerts about low disk space. If you run out disk space, MongoDB database gets corrupted.
  • SECURITY: Updating to newest WeKan ® version very often. Please check you do not have automatic updates of Sandstorm or Snap turned off. Old versions have security issues because of old versions Node.js etc. Only newest WeKan ® is supported. WeKan ® on Sandstorm is not usually affected by any Standalone WeKan ® (Snap/Docker/Source) security issues.
  • Reporting all new bugs immediately. New features and fixes are added to WeKan ® many times a day.
  • Backups of WeKan ® database once a day miminum. Bugs, updates, users deleting list or card, harddrive full, harddrive crash etc can eat your data. There is no undo yet. Some bug can cause WeKan ® board to not load at all, requiring manual fixing of database content.

Roadmap and Demo

Roadmap - Public read-only board at WeKan ® demo.

Developer Documentation

We also welcome sponsors for features and bugfixes. By working directly with WeKan ® you get the benefit of active maintenance and new features added by growing WeKan ® developer community.

Screenshot

More screenshots at Features page

Screenshot of WeKan ®

License

WeKan ® is released under the very permissive MIT license, and made with Meteor.

NPM DownloadsLast 30 Days