[
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contributing\n\nIf you have any questions, please open an [issue](https://github.com/RunaCapital/awesome-oss-clones/issues).\n\n## How to contribute\nFirst, collect required information about the startup: \n  - startup name \n  - short description\n  - category (presented in the list or a new one)\n  - website url\n  - github repo url\n  - names of SaaS competitors\n  - website urls of SaaS competitors\n\nThen you have two options how to contribute.\n\n### Using Python\n\n1. Clone this repo:\n\n        git clone https://github.com/RunaCapital/awesome-oss-alternatives.git\n\n2. In the root of the repo run the following command:\n        \n        python3 .\\add_company.py\n \n 3. CLI application will walk you through all the necessary steps\n 4. Submit a pull request\n\n### Using web-interface\n\n1. Edit the README.md file through Github's web interface\n2. List is sorted in an alphabetical order by a category and a company name. Please find the right place for insertion.\n3. Format your submission as follows:\n        \n         Category name| [Company Name](https://company_url.com) | Description\n         |<a href=https://github.com/COMPANY/COMPANY_REPO_NAME><img src=\"https://img.shields.io/github/stars/COMPANY/COMPANY_REPO_NAME?style=social\" width=150/></a>\n         |[SaaS Name 1](https://www.saas1_url.com/), [SaaS Name 2](https://saas2_url.com/)\n4. Submit a pull request\n5. See [Editing files in another user's repository](https://help.github.com/articles/editing-files-in-another-user-s-repository/), [Creating Pull Requests](https://help.github.com/articles/creating-a-pull-request/), [Using Pull Requests](https://help.github.com/articles/using-pull-requests/) for help on sending your patch.\n\n**Important**: Please add one startup per pull-request. Also please check, that you are adding it to the right category and in the right place (startups in a category are sorted in a alphabetical order).\n\nHappy contributing!\n"
  },
  {
    "path": ".github/workflows/deploy.yml",
    "content": "name: Deploy to GitHub Pages\n\non:\n  push:\n    branches:\n      - main\n    # Review gh actions docs if you want to further define triggers, paths, etc\n    # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on\n\njobs:\n  deploy:\n    name: Deploy to GitHub Pages\n    runs-on: ubuntu-latest\n    defaults:\n      run:\n        working-directory: website\n    steps:\n      - uses: actions/checkout@v2\n      - uses: actions/setup-node@v3\n        with:\n          node-version: 18\n          cache: npm\n          cache-dependency-path: ./website/package-lock.json\n\n      - name: Install dependencies\n        run: npm install\n      - name: Build website\n        run: npm run build\n\n      # Popular action to deploy to GitHub Pages:\n      # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus\n      - name: Deploy to GitHub Pages\n        uses: peaceiris/actions-gh-pages@v3\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          # Build output to publish to the `gh-pages` branch:\n          publish_dir: ./website/build\n          # The following lines assign commit authorship to the official\n          # GH-Actions bot for deploys to `gh-pages` branch:\n          # https://github.com/actions/checkout/issues/13#issuecomment-724415212\n          # The GH actions bot is used by default if you didn't specify the two fields.\n          # You can swap them out with your own user credentials.\n          user_name: github-actions[bot]\n          user_email: 41898282+github-actions[bot]@users.noreply.github.com\n"
  },
  {
    "path": ".github/workflows/direct_merge_to_readme.yaml",
    "content": "name: Create YAML on direct merge to README\n\non:\n  pull_request:\n    paths:\n      - \"README.md\"\n    types:\n      - closed\n\njobs:\n  if_merged:\n    if: github.event.pull_request.merged == true\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout repo content\n        uses: actions/checkout@v3 # checkout the repository content to github runner.\n      - name: setup python\n        uses: actions/setup-python@v4\n        with:\n          python-version: \"3.9\" #install the python needed\n      - name: install dependencies\n        run: pip install pyyaml\n      - name: sort readme # sorting readmde\n        run: |\n          python sort.py\n      - name: execute py script - create YAMLs # run file\n        run: |\n          python create_yamls.py\n      - name: Commit files # transfer the new html files back into the repository\n        run: |\n          git config --local user.name ${{ github.actor }}\n          git add --all\n          git commit -m \"Generating new YAMLs from the PR merge\"\n      - name: Push changes # push the output folder to your repo\n        uses: ad-m/github-push-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          force: true\n"
  },
  {
    "path": ".github/workflows/merge_created_new_yaml.yaml",
    "content": "name: Build README from new YAML\n\non:\n  pull_request:\n    paths:\n      - \"submissions/**.yaml\"\n    types:\n      - closed\n\njobs:\n  if_merged:\n    if: github.event.pull_request.merged == true\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout repo content\n        uses: actions/checkout@v3 # checkout the repository content to github runner.\n      - name: setup python\n        uses: actions/setup-python@v4\n        with:\n          python-version: \"3.9\" #install the python needed\n      - name: install dependencies\n        run: pip install pyyaml\n      - name: execute py script - build README # run file\n        run: |\n          python build_readme.py\n      - name: Commit files # transfer the new html files back into the repository\n        run: |\n          git config --local user.name ${{ github.actor }}\n          git add --all\n          git commit -m \"Rebuild README after merging PR with a new YAML\"\n      - name: Push changes # push the output folder to your repo\n        uses: ad-m/github-push-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          force: true\n"
  },
  {
    "path": ".github/workflows/push_to_readme.yaml",
    "content": "name: Create YAML on direct push to README\n\non:\n  push:\n    paths:\n      - \"README.md\"\n\njobs:\n  create_yamls:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout repo content\n        uses: actions/checkout@v3 # checkout the repository content to github runner.\n      - name: setup python\n        uses: actions/setup-python@v4\n        with:\n          python-version: \"3.9\" #install the python needed\n      - name: install dependencies\n        run: pip install pyyaml\n      - name: sort readme # sorting readmde\n        run: |\n          python sort.py\n      - name: execute py script - create YAMLs # run file\n        run: |\n          python create_yamls.py\n      - name: Commit files # transfer the new html files back into the repository\n        run: |\n          git config --local user.name ${{ github.actor }}\n          git add --all\n          git commit -m \"Generating new YAMLs from the direct push to README\"\n      - name: Push changes # push the output folder to your repo\n        uses: ad-m/github-push-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          force: true\n"
  },
  {
    "path": ".github/workflows/push_to_yaml.yaml",
    "content": "name: Build README from new YAML on push\n\non:\n  push:\n    paths:\n      - \"submissions/**.yaml\"\n\njobs:\n  build_readme:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout repo content\n        uses: actions/checkout@v3 # checkout the repository content to github runner.\n      - name: setup python\n        uses: actions/setup-python@v4\n        with:\n          python-version: \"3.9\" #install the python needed\n      - name: install dependencies\n        run: pip install pyyaml\n      - name: execute py script - build README # run file\n        run: |\n          python build_readme.py\n      - name: Commit files # transfer the new html files back into the repository\n        run: |\n          git config --local user.name ${{ github.actor }}\n          git add --all\n          git commit -m \"Rebuild README after adding new YAML\"\n      - name: Push changes # push the output folder to your repo\n        uses: ad-m/github-push-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          force: true\n"
  },
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n\n.idea/\n\n# C extensions\n*.so\n*.xlsx\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\ncover/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\n# .python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\nindex.html\n"
  },
  {
    "path": ".history/README_20220510185516.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510185835.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://redkubes.com)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510185946.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510190636.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Self-hosted Paa powered PaaS that runs in your own cloud|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510190641.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Self-hosted PaaS for Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510190651.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Self-hosted PaaS for Kubernetes powered PaaS that runs |<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510190654.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Self-hosted PaaS for Kubernete|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": ".history/README_20220510190656.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together. \n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nBusiness intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Netlify CMS](https://www.netlifycms.org/)|Git-based CMS for static site generators|<a href=https://github.com/netlify/netlify-cms><img src=\"https://img.shields.io/github/stars/netlify/netlify-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)|\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a servive|[Otomi](https://otomi.io)|Self-hosted PaaS for Kubernetes|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2022 Igor Kotua\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Awesome open-source alternatives to SaaS\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\nAwesome list of open-source startup alternatives to established SaaS products. Maintained by folks at [![Runa Capital](https://img.shields.io/static/v1?label=&message=%20&style=social&logoWidth=50&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAAUCAYAAAA6NOUqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUpSURBVHgBtVhNUuNGFH7d/gkzmSrEKjGzGPkEmKpAUtkgdkBSBTkB4gSYE9icAHMCzAniqWI8kxXKJsXAVGFOgLLBZDWeRSapBNTpT/2EZCEbmcl8VV2S+v97f/1agnLi0qlZU1PldZLCIaUcIZSlSFhoU4p6+rsX3MrO81/evqTHY0kXVxebvwe6dHQ5pM8A8VCH/krNJllq6I4bEdmxUOTr0qy8OZ10w+tkiPq67JAhvklGGI4uv9L/jLHkr9cWtvWjmYt0Gkp5Sty4s93z3ycYda5LT5etRN2lLh7XRfsY8BPf07ok15jTpcZ9eok2i9usqL6YsYHQxJ88LR5o0hv3GoXwVAAzDy7CT0nTKpB6MeWm+jlClTw913zV6w0oH9L9bN7sgAlBOG2KhQPluLpU+b3JfT0y1kLcZvPYCJiznkn+iyflY2UWYx5qoJRoUVkeVjonftaY/sp3u0IGe3pcLDBB9tSzYo03kxfY2Hq0QSbTIqPB3phxdR4zw9+RG70g40pVioX7sy6OTM9wvbqwJ0RMXCnV+uvPL6uV7unuKOJA5c2Jf0Nq91790TuPJgPWdsloGGQcik13nAWl187qC+to8LzWEPn+ymJDCQEJhtomKZdnX5/tVD0vl9kWSTWGa0SbJoeny09ktI1NfqBPB6zgPRnzhyDBJyZvonroM4AfqFKtcnTi5ZkZMQIWo0gOxQhFhSY9Hvv8TAo0KybkARQKF8Ap0ibjBlbs86J8zG++oqIz2/0tNDUT/EqbOMsrr8+Gjpurte9fiOAfV0hRT58IilQ9muOR8HnTsACQhln3uA5tNYqj+kPwyLhSg8c4GBceddrcN7XW23iXkmpfHZ1emHptDRCKSEhYhQtTMslJAu4S6HN+tnu2T5MDSY6g4QBpUxy8IMxNroMiYMoz3N9mUm0eh71t8LgoZ0DdRTTOkF9dvDQEg2al+253JPGHgGNQFdykxjGPEuU9Ev/WJzzzPztkqHVD0I+Im5ZSIzdxTRrBsfLq7XLa1GWxPC2lToep5IdrjQc0A9M80GWPzDGVF0hglnL2hSWdS71xN/wUd8EuhJSiFUb8bOi+aqtAav7vj09nQHpUcIQLqVtzgiipWoghNBogjHYEpknTY4fiAIjn+pi+UJAlrn9YeK8TmIE+x6vpHn/8uDinkKaqlG+Hfq/cdAAch/7qt9qFlJN0rRSwBlLZmVQ9NOpyO/wXFydoeIPrPDKCsslYCnwa2ZxPJuPDHhvcjoC5z+/HOOraARnNpAGtCZ2m8kQx4A7a1PtrCwdXa/O5TFNnfyY7M/NlYY6yM7gPTA6lxXUd7gshYu+I4NElKEpv0Q5BREFun9vvXEN+/eps53l39DU0jPyBXBaZGxMu8vf+yjeNcUIIg16QcU+4T3KUS4AYzNjm7yjy+2T2BcF5if6oH1B8DGJv2zx/NAdl5vZpIHXVj/n+2mJDx4H6kBuEViCbgmTzanWxIxR1pM4JbgvFQeH2xgpEsGHyAEMMl6IRy/gUm24yaCIP32KSbsY4K9U/jW1+Yo6DZEMu8hGQ3+sLzCFJpLGpWxzBorUf6hLgnW4oKKBW6hBxB59EqTViemipSUaDbYp9fMAE0sEX1gATrvGYZKSPkiGPxzkUJzidaD1Bj4QWgk2FYAmmjz87Dw7IyAFGwOJN+hTHGpvfo+stNHjI7z4N3++jd4eMEAY8PqqPnvajySdx6ThW+dlHRwba94SweTEd3JHtCV8UxMu894SciMh79An4D/op5DM7HoOhAAAAAElFTkSuQmCC)](https://runacap.com) \n\nAlso checkout our [ROSS index](https://runacap.com/ross-index/): fastest-growing open-source startups, every quarter.\n\n## Criteria\nOpen-source company is added to the list if: \n1. Its product is strongly based on an open-source repo \n2. It has a well-known closed-source competitor, solving a similar business problem\n3. It is a private for-profit company, founded in the last 10 years\n4. Its repo has 100+ stars on GitHub\n\nThings change really fast in the startup world, so this list can neither be fully complete, nor 100% up to date.\n\nDon't hesitate to [contribute](.github/CONTRIBUTING.md) and add new startups. Let's build the most comprehensive list together.\n\nAny questions or suggestions? Feel free to DM project maintainer [@garrrikkotua](https://twitter.com/garrrikkotua)\n\n--------------------\n\n## Startup List\n\nAll startups in the list are sorted by categories and sorted in alphabetical order. If you click on the stars badge you will get to the product's repo. \n**Have a good search!**\n\n<!-- BEGIN STARTUP LIST -->\n\n|Category|Company|Description|GitHub Stars|Alternative to|\n|:-------|:------|:----------|:----------:|:------------:|\nAPI Gateway|[Apache APISIX](https://github.com/apache/apisix)|Cloud Native API Gateway under the Apache Software Foundation|<a href=https://github.com/apache/apisix><img src=\"https://img.shields.io/github/stars/apache/apisix?style=social\" width=150/></a>|[apigee](https://cloud.google.com/apigee)\nAPI Platform|[Firecamp](https://firecamp.dev/)|DX first open-source API devtool|<a href=https://github.com/firecamp-dev/firecamp><img src=\"https://img.shields.io/github/stars/firecamp-dev/firecamp?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Fusio](https://github.com/apioo/fusio)|API management platform|<a href=https://github.com/apioo/fusio><img src=\"https://img.shields.io/github/stars/apioo/fusio?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Hoppscotch](https://hoppscotch.io/)|API development ecosystem|<a href=https://github.com/hoppscotch/hoppscotch><img src=\"https://img.shields.io/github/stars/hoppscotch/hoppscotch?style=social\" width=150/></a>|[Postman](https://www.postman.com/)\nAPI Platform|[Keploy](https://keploy.io/)|e2e Testing and Data Mocking|<a href=https://github.com/keploy/keploy><img src=\"https://img.shields.io/github/stars/keploy/keploy?style=social\" width=150/></a>|[Smartbear](https://smartbear.com/), [Newman](https://learning.postman.com/docs/running-collections/using-newman-cli/command-line-integration-with-newman/)\nAPI Platform|[Step CI](https://stepci.com/)|API Testing and Monitoring|<a href=https://github.com/stepci/stepci><img src=\"https://img.shields.io/github/stars/stepci/stepci?style=social\" width=150/></a>|[Checkly](https://www.checklyhq.com), [Postman](https://www.postman.com/)\nAuth & SSO|[BoxyHQ](https://boxyhq.com)|Enterprise Readiness made simple|<a href=https://github.com/boxyhq/jackson><img src=\"https://img.shields.io/github/stars/boxyhq/jackson?style=social\" width=150/></a>|[Auth0](https://auth0.com/)|\nAuth & SSO|[Cerbos](https://cerbos.dev/)|Granular access control|<a href=https://github.com/cerbos/cerbos><img src=\"https://img.shields.io/github/stars/cerbos/cerbos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[FusionAuth](https://fusionauth.io/)|User authentication and session management framework|<a href=https://github.com/FusionAuth/fusionauth-containers><img src=\"https://img.shields.io/github/stars/FusionAuth/fusionauth-containers?style=social\" width=150/></a>|[Okta](https://www.okta.com/), [Auth0](https://auth0.com/)|\nAuth & SSO|[Hanko](https://www.hanko.io)|Passkey-first authentication framework|<a href=https://github.com/teamhanko/hanko><img src=\"https://img.shields.io/github/stars/teamhanko/hanko?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Keycloak](https://www.cloud-iam.com/)|User authentication and session management framework|<a href=https://github.com/keycloak/keycloak><img src=\"https://img.shields.io/github/stars/keycloak/keycloak?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[OPAL (Permit.io)](https://www.opal.ac/)|Authorization administration framework (Open Policy)|<a href=https://github.com/permitio/opal><img src=\"https://img.shields.io/github/stars/permitio/opal?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Ory](https://www.ory.sh/)|Identity platform|<a href=https://github.com/ory/kratos><img src=\"https://img.shields.io/github/stars/ory/kratos?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Oso](https://www.osohq.com/)|Authorization building framework|<a href=https://github.com/osohq/oso><img src=\"https://img.shields.io/github/stars/osohq/oso?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Supertokens](https://supertokens.io/)|User authentication and session management framework|<a href=https://github.com/supertokens/supertokens-core><img src=\"https://img.shields.io/github/stars/supertokens/supertokens-core?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Warrant](https://warrant.dev/)|Authorization and access control as a service|<a href=https://github.com/warrant-dev/warrant><img src=\"https://img.shields.io/github/stars/warrant-dev/warrant?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)\nAuth & SSO|[Zitadel](https://zitadel.com/)|User authentication and session management framework|<a href=https://github.com/zitadel/zitadel><img src=\"https://img.shields.io/github/stars/zitadel/zitadel?style=social\" width=150/></a>|[Okta](https://okta.com/), [Auth0](https://auth0.com/)|\nBackend as a service|[AceBase](https://acebase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appy-one/acebase><img src=\"https://img.shields.io/github/stars/appy-one/acebase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Amplication](https://amplication.com/)|Backend server with REST and GraphQL APIs to manage core backend needs|<a href=https://github.com/amplication/amplication><img src=\"https://img.shields.io/github/stars/amplication/amplication?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Appwrite](https://appwrite.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/appwrite/appwrite><img src=\"https://img.shields.io/github/stars/appwrite/appwrite?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[CASE](https://case.app)|Lightweight Backend-as-a-Service with essential features|<a href=https://github.com/casejs/case><img src=\"https://img.shields.io/github/stars/casejs/case?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)|\nBackend as a service|[Encore](https://encore.dev/)|Backend Development Engine for cloud-based apps, APIs, and distributed systems|<a href=https://github.com/encoredev/encore><img src=\"https://img.shields.io/github/stars/encoredev/encore?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)|\nBackend as a service|[Kuzzle](https://kuzzle.io/kuzzle-backend/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/kuzzleio/kuzzle><img src=\"https://img.shields.io/github/stars/kuzzleio/kuzzle?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[Nhost](https://nhost.io/)|Backend server with GraphQL|<a href=https://github.com/nhost/nhost><img src=\"https://img.shields.io/github/stars/nhost/nhost?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBackend as a service|[PocketBase](https://pocketbase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/pocketbase/pocketbase><img src=\"https://img.shields.io/github/stars/pocketbase/pocketbase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)|\nBackend as a service|[Supabase](https://supabase.io/)|Backend server with REST APIs to manage core backend needs|<a href=https://github.com/supabase/supabase><img src=\"https://img.shields.io/github/stars/supabase/supabase?style=social\" width=150/></a>|[Firebase](https://firebase.google.com/)\nBusiness Intelligence|[Metabase](https://www.metabase.com/)|Business intelligence software|<a href=https://github.com/metabase/metabase><img src=\"https://img.shields.io/github/stars/metabase/metabase?style=social\" width=150/></a>|[Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\nBusiness Intelligence|[Preset](https://www.preset.io)|Modern BI platform powered by Apache Superset|<a href=https://github.com/apache/superset><img src=\"https://img.shields.io/github/stars/apache/superset?style=social\" width=150/></a>|[PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)|\nCMS|[Builder](https://builder.io/)|Drag and drop page builder and CMS|<a href=https://github.com/builderio/builder><img src=\"https://img.shields.io/github/stars/builderio/builder?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Concrete](https://www.concretecms.com/)|CMS for teams|<a href=https://github.com/concrete5/concrete5><img src=\"https://img.shields.io/github/stars/concrete5/concrete5?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Decap CMS](https://www.decapcms.org/)|Git-based CMS for static site generators|<a href=https://github.com/decaporg/decap-cms><img src=\"https://img.shields.io/github/stars/decaporg/decap-cms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Directus](https://directus.io/)|Data platform which wraps any database with an intuitive app|<a href=https://github.com/directus/directus><img src=\"https://img.shields.io/github/stars/directus/directus?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Ghost](https://ghost.org/)|Headless Node.js publishing platform|<a href=https://github.com/tryghost/ghost><img src=\"https://img.shields.io/github/stars/tryghost/ghost?style=social\" width=150/></a>|[Medium](https://www.medium.com/), [Substack](https://substack.com/)\nCMS|[Plasmic](https://plasmic.app/)|The headless page builder for singe-page frameworks|<a href=https://github.com/plasmicapp/plasmic><img src=\"https://img.shields.io/github/stars/plasmicapp/plasmic?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)|\nCMS|[Strapi](https://strapi.io/)|Node.js Headless CMS to build customisable APIs|<a href=https://github.com/strapi/strapi><img src=\"https://img.shields.io/github/stars/strapi/strapi?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Sulu](https://sulu.io/)|Modern Symfony based CMS|<a href=https://github.com/sulu/sulu><img src=\"https://img.shields.io/github/stars/sulu/sulu?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Tina](https://tina.io/)|Visual editor for React websites|<a href=https://github.com/tinacms/tinacms><img src=\"https://img.shields.io/github/stars/tinacms/tinacms?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCMS|[Webiny](https://www.webiny.com/)|Enterprise serverless CMS|<a href=https://github.com/webiny/webiny-js><img src=\"https://img.shields.io/github/stars/webiny/webiny-js?style=social\" width=150/></a>|[Contentful](https://www.contentful.com/)\nCloud Data Warehouse|[Databend](https://databend.rs)|Elastic and Workload-Aware Modern Cloud Data Warehouse|<a href=https://github.com/datafuselabs/databend><img src=\"https://img.shields.io/github/stars/datafuselabs/databend?style=social\" width=150/></a>|[Snowflake](https://www.snowflake.com)|\nCloud Development Environment|[Gitpod](https://gitpod.io)|Automated provisioning of cloud development environments with multiple git providers & IDEs|<a href=https://github.com/gitpod-io/gitpod><img src=\"https://img.shields.io/github/stars/gitpod-io/gitpod?style=social\" width=150/></a>|[Codespaces](https://github.com/features/codespaces)|\nCloud Storage|[Minio](https://min.io/)|S3 compatible object storage|<a href=https://github.com/minio/minio><img src=\"https://img.shields.io/github/stars/minio/minio?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud Storage|[Storj](https://www.storj.io/)|Decentralized cloud storage|<a href=https://github.com/storj/storj><img src=\"https://img.shields.io/github/stars/storj/storj?style=social\" width=150/></a>|[Amazon S3](https://aws.amazon.com/s3/)|\nCloud-Native Application Protection Platform|[Deepfence ThreatMapper](https://github.com/deepfence/ThreatMapper)|Apache v2, powerful runtime vulnerability and compliance scanner for kubernetes, virtual machines, cloud and serverless.|<a href=https://github.com/deepfence/ThreatMapper><img src=\"https://img.shields.io/github/stars/deepfence/ThreatMapper?style=social\" width=150/></a>|[Palo Alto Prisma](https://www.paloaltonetworks.com/prisma/cloud)|\nCommunication|[Fonoster](https://fonoster.com/)|APIs for SMS, voice and video|<a href=https://github.com/fonoster/fonoster><img src=\"https://img.shields.io/github/stars/fonoster/fonoster?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nCommunication|[Novu](https://novu.co/)|Components and APIs for email, sms, direct and push|<a href=https://github.com/novuhq/novu><img src=\"https://img.shields.io/github/stars/novuhq/novu?style=social\" width=150/></a>|[Courier](https://www.courier.com/), [MagicBell](https://www.magicbell.com/), [Knock](https://knock.app/)|\nCommunity Platform|[crowd.dev](https://crowd.dev/)|Suite of community and data tools built to unlock community-led growth for your organization|<a href=https://github.com/CrowdDotDev/crowd.dev><img src=\"https://img.shields.io/github/stars/CrowdDotDev/crowd.dev?style=social\" width=150/></a>|[Orbit](https://orbit.love/), [Common Room](https://www.commonroom.io/), [Commsor](https://www.commsor.com/)|\nCustomer Data Platform|[Jitsu](https://jitsu.com/)|Fully-scriptable data ingestion engine for modern data teams|<a href=https://github.com/jitsucom/jitsu><img src=\"https://img.shields.io/github/stars/jitsucom/jitsu?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Rudderstack](https://rudderstack.com/)|Customer data platform for developers|<a href=https://github.com/rudderlabs/rudder-server><img src=\"https://img.shields.io/github/stars/rudderlabs/rudder-server?style=social\" width=150/></a>|[Segment](https://segment.com/)\nCustomer Data Platform|[Tracardi](http://www.tracardi.com/)|Customer Data Platform with Consumer Journey automation engine|<a href=https://github.com/tracardi/tracardi><img src=\"https://img.shields.io/github/stars/tracardi/tracardi?style=social\" width=150/></a>|[Segment](https://segment.com/), [Zapier](https://zapier.com/)\nCustomer Engagement|[Chaskiq](https://chaskiq.io/)|Live chat widget|<a href=https://github.com/chaskiq/chaskiq><img src=\"https://img.shields.io/github/stars/chaskiq/chaskiq?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Chatwoot](https://www.chatwoot.com/)|Live chat widget|<a href=https://github.com/chatwoot/chatwoot><img src=\"https://img.shields.io/github/stars/chatwoot/chatwoot?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCustomer Engagement|[Papercups](https://papercups.io/)|Live chat widget|<a href=https://github.com/papercups-io/papercups><img src=\"https://img.shields.io/github/stars/papercups-io/papercups?style=social\" width=150/></a>|[Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\nCybersecurity|[CloudQuery](https://cloudquery.io/)|Assess, audit, and evaluate the configurations of your cloud assets.|<a href=https://github.com/cloudquery/cloudquery><img src=\"https://img.shields.io/github/stars/cloudquery/cloudquery?style=social\" width=150/></a>|[AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)|\nCybersecurity|[CrowdSec](http://crowdsec.net/)|Collaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.|<a href=https://github.com/crowdsecurity/crowdsec><img src=\"https://img.shields.io/github/stars/crowdsecurity/crowdsec?style=social\" width=150/></a>|[GreyNoise](https://www.greynoise.io/)|\nCybersecurity|[Faraday](https://faradaysec.com)|Open Source Vulnerability Management and Orchestration Platform|<a href=https://github.com/infobyte/faraday><img src=\"https://img.shields.io/github/stars/infobyte/faraday?style=social\" width=150/></a>|[Plextrac](https://plextrac.com//), [Vulcan](https://vulcan.io/)|\nCybersecurity|[Firezone](https://www.firez.one/)|VPN Server & Firewall for teams|<a href=https://github.com/firezone/firezone><img src=\"https://img.shields.io/github/stars/firezone/firezone?style=social\" width=150/></a>|[OpenVPN Access Server](https://openvpn.net/access-server/)\nCybersecurity|[Gravitl](https://gravitl.com)|WireGuard virtual networking platform (VPN)|<a href=https://github.com/gravitl/netmaker><img src=\"https://img.shields.io/github/stars/gravitl/netmaker?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[LunaTrace](https://www.lunasec.io/)|Dependency Vulnerability Scanner and SBOM Inventory|<a href=https://github.com/lunasec-io/lunasec><img src=\"https://img.shields.io/github/stars/lunasec-io/lunasec?style=social\" width=150/></a>|[GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)|\nCybersecurity|[Matano](https://www.matano.dev)|Open source cloud-native security lake platform (SIEM alternative) for threat hunting, detection & response, and cybersecurity analytics at petabyte scale on AWS|<a href=https://github.com/matanolabs/matano><img src=\"https://img.shields.io/github/stars/matanolabs/matano?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/), [Elastic Cloud](https://www.elastic.co/elastic-stack/)|\nCybersecurity|[NetBird](https://netbird.io)|Zero Configuration Mesh VPN for Business|<a href=https://github.com/netbirdio/netbird><img src=\"https://img.shields.io/github/stars/netbirdio/netbird?style=social\" width=150/></a>|[Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)|\nCybersecurity|[Nuclei](https://nuclei.projectdiscovery.io/)|Vulnerability scanner based on simple YAML based DSL|<a href=https://github.com/projectdiscovery/nuclei><img src=\"https://img.shields.io/github/stars/projectdiscovery/nuclei?style=social\" width=150/></a>|[Tenable Nessus](https://www.tenable.com/products/nessus)|\nDesign|[21st.dev](https://21st.dev/)|The NPM for Design Engineers|<a href=https://github.com/rorkai/21st><img src=\"https://img.shields.io/github/stars/rorkai/21st?style=social\" width=150/></a>|[Landingfolio](https://www.landingfolio.com/)|\nDesign|[Modulz](https://www.modulz.app/)|Code-based tool for designing and prototyping|<a href=https://github.com/radix-ui/primitives><img src=\"https://img.shields.io/github/stars/radix-ui/primitives?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDesign|[Penpot](https://penpot.app/)|Design & prototyping platform|<a href=https://github.com/penpot/penpot><img src=\"https://img.shields.io/github/stars/penpot/penpot?style=social\" width=150/></a>|[Figma](https://www.figma.com/)|\nDigital Signature|[DocuSeal](https://docuseal.co)|Digital Signing Infrastructure|<a href=https://github.com/docusealco/docuseal><img src=\"https://img.shields.io/github/stars/docusealco/docuseal?style=social\" width=150/></a>|[DocuSign](https://www.docusign.com/)|\nDigital Signature|[Documenso](https://documenso.com)|Digital Signing Infrastructure|<a href=https://github.com/documenso/documenso><img src=\"https://img.shields.io/github/stars/documenso/documenso?style=social\" width=150/></a>|[DocuSign](https://www.docusign.com/)|\nDigital Signature|[LibreSign](https://libresign.coop/)|Digital document signer|<a href=https://github.com/LibreSign/libresign><img src=\"https://img.shields.io/github/stars/libresign/libresign?style=social\" width=150/></a>|[DocuSign](https://www.docusign.com/)\nE-commerce|[Bagisto](https://bagisto.com/en/)|Headless e-commerce platform|<a href=https://github.com/bagisto/bagisto><img src=\"https://img.shields.io/github/stars/bagisto/bagisto?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Medusa](https://www.medusajs.com/)|Headless e-commerce platform|<a href=https://github.com/medusajs/medusa><img src=\"https://img.shields.io/github/stars/medusajs/medusa?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Saleor](https://saleor.io/)|Headless e-commerce platform|<a href=https://github.com/saleor/saleor><img src=\"https://img.shields.io/github/stars/saleor/saleor?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Shuup](https://shuup.com)|Headless e-commerce platform|<a href=https://github.com/shuup/shuup><img src=\"https://img.shields.io/github/stars/shuup/shuup?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Sylius](https://sylius.com/)|Headless e-commerce platform|<a href=https://github.com/sylius/sylius><img src=\"https://img.shields.io/github/stars/sylius/sylius?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vendure](https://www.vendure.io/)|Headless e-commerce platform|<a href=https://github.com/vendure-ecommerce/vendure><img src=\"https://img.shields.io/github/stars/vendure-ecommerce/vendure?style=social\" width=150/></a>|[Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\nE-commerce|[Vue Storefront](https://www.vuestorefront.io/)|Frontend for e-commerce platform|<a href=https://github.com/vuestorefront/vue-storefront><img src=\"https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social\" width=150/></a>|[Shogun](https://getshogun.com/)\nELT / ETL|[Airbyte](https://airbyte.io/)|Data integration platform|<a href=https://github.com/airbytehq/airbyte><img src=\"https://img.shields.io/github/stars/airbytehq/airbyte?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Benthos](https://benthos.dev/)|Data streaming processor with yaml-driven pipeline configuration|<a href=https://github.com/benthosdev/benthos><img src=\"https://img.shields.io/github/stars/benthosdev/benthos?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Dagster](https://dagster.io/)|Orchestration platform for data assets|<a href=https://github.com/dagster-io/dagster><img src=\"https://img.shields.io/github/stars/dagster-io/dagster?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Kestra](https://kestra.io/)|orchestration and scheduling platform|<a href=https://github.com/kestra-io/kestra><img src=\"https://img.shields.io/github/stars/kestra-io/kestra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Orchest](https://www.orchest.io/)|No-code data pipelines builder|<a href=https://github.com/orchest/orchest><img src=\"https://img.shields.io/github/stars/orchest/orchest?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Prefect](https://www.prefect.io/)|Data orchestration platform for a modern data stack|<a href=https://github.com/prefecthq/prefect><img src=\"https://img.shields.io/github/stars/prefecthq/prefect?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nELT / ETL|[Selefra](https://www.selefra.io/)|An open-source policy-as-code software that provides analytics for multi-cloud and SaaS.|<a href=https://github.com/selefra/selefra><img src=\"https://img.shields.io/github/stars/selefra/selefra?style=social\" width=150/></a>|[Fivetran](https://fivetran.com/)\nERP|[DoliCloud](https://dolicloud.com) | Business management suite (ERP and CRM)|<a href=https://github.com/Dolibarr/dolibarr><img src=\"https://img.shields.io/github/stars/Dolibarr/dolibarr?style=social\" width=150/></a>|[Oracle Fusion ERP Cloud](https://www.oracle.com/erp),[Odoo](https://odoo.com/),[Microsoft Dynamics](https://dynamics.microsoft.com/)\nERP|[ERPNext](https://erpnext.com) | Agile, modern, module based Business management suite|<a href=https://github.com/frappe/erpnext><img src=\"https://img.shields.io/github/stars/frappe/erpnext?style=social\" width=150/>|[SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\nEmail marketing|[Keila](https://www.keila.io/)|Email newsletter tool|<a href=https://github.com/pentacent/keila><img src=\"https://img.shields.io/github/stars/pentacent/keila?style=social\" width=150/></a>|[Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)|\nEnterprise Search|[AppBase](https://www.appbase.io/)|Search UI components for React and Vue|<a href=https://github.com/appbaseio/reactivesearch><img src=\"https://img.shields.io/github/stars/appbaseio/reactivesearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Jina.ai](https://jina.ai/)|Neural search framework for 𝙖𝙣𝙮 kind of data (including images)|<a href=https://github.com/jina-ai/jina><img src=\"https://img.shields.io/github/stars/jina-ai/jina?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Manticore Search](https://manticoresearch.com/)|Easy to use open source fast database for search|<a href=https://github.com/manticoresoftware/manticoresearch/><img src=\"https://img.shields.io/github/stars/manticoresoftware/manticoresearch?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nEnterprise Search|[Meilisearch](https://www.meilisearch.com/)|Typo tolerant search engine|<a href=https://github.com/meilisearch/meilisearch><img src=\"https://img.shields.io/github/stars/meilisearch/MeiliSearch?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Qdrant](https://qdrant.tech/)|Vector similarity search engine with extended filtering support|<a href=https://github.com/qdrant/qdrant><img src=\"https://img.shields.io/github/stars/qdrant/qdrant?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)|\nEnterprise Search|[SeMI](https://www.semi.technology/)'s [Weaviate](https://github.com/semi-technologies/weaviate)|Real-time vector search engine|<a href=https://github.com/semi-technologies/weaviate><img src=\"https://img.shields.io/github/stars/semi-technologies/weaviate?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\nEnterprise Search|[TypeSense](https://typesense.org/)|Typo tolerant fuzzy search engine|<a href=https://github.com/typesense/typesense><img src=\"https://img.shields.io/github/stars/typesense/typesense?style=social\" width=150/></a>|[Algolia](https://www.algolia.com/)\nEnterprise Search|[Zilliz](https://zilliz.com)'s [Milvus](https://milvus.io)|Vector database for AI applications|<a href=https://github.com/milvus-io/milvus><img src=\"https://img.shields.io/github/stars/milvus-io/milvus?style=social\" width=150/></a>|[Google Vertex AI](https://cloud.google.com/vertex-ai)\nEnterprise Search|[Zinc Labs](https://www.zinclabs.io)'s [Zinc](https://github.com/prabhatsharma/zinc)|Cloud native full text search|<a href=https://github.com/prabhatsharma/zinc><img src=\"https://img.shields.io/github/stars/prabhatsharma/zinc?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nEnterprise Search|[deepset](https://www.deepset.ai/)|NLP platform to build enterprise-grade semantic search|<a href=https://github.com/deepset-ai/haystack><img src=\"https://img.shields.io/github/stars/deepset-ai/haystack?style=social\" width=150/></a>|[AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)|\nFeature flag and toggle management|[FlagSmith](https://flagsmith.com/)|Feature Flag & Remote Config Service|<a href=https://github.com/Flagsmith/flagsmith><img src=\"https://img.shields.io/github/stars/Flagsmith/flagsmith?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[GrowthBook](https://www.growthbook.io/)|Feature flags and A/B testing|<a href=https://github.com/growthbook/growthbook><img src=\"https://img.shields.io/github/stars/growthbook/growthbook?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFeature flag and toggle management|[Unleash](https://www.getunleash.io/)|Feature flags platform|<a href=https://github.com/Unleash/unleash><img src=\"https://img.shields.io/github/stars/Unleash/unleash?style=social\" width=150/></a>|[LaunchDarkly](https://launchdarkly.com/)\nFile Hosting|[Filestash](https://www.filestash.app/)|A file manager that let you manage your data anywhere it is located|<a href=https://github.com/mickael-kerjean/filestash><img src=\"https://img.shields.io/github/stars/mickael-kerjean/filestash?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Nextcloud](https://nextcloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/nextcloud/server><img src=\"https://img.shields.io/github/stars/nextcloud/server?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFile Hosting|[Owncloud](https://owncloud.com/)|A personal cloud which runs on your own server|<a href=https://github.com/owncloud/core><img src=\"https://img.shields.io/github/stars/owncloud/core?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\nFile Hosting|[Spacedrive](https://spacedrive.com/)|Cross-platform file manager, powered by a virtual distributed filesystem (VDFS) written in Rust|<a href=https://github.com/spacedriveapp/spacedrive><img src=\"https://img.shields.io/github/stars/spacedriveapp/spacedrive?style=social\" width=150/></a>|[Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)|\nFinancial Service|[Lago](https://www.getlago.com/)|Open Source Billing API|<a href=https://github.com/getlago/lago><img src=\"https://img.shields.io/github/stars/getlago/lago?style=social\" width=150/></a>|[Stripe Billing](https://stripe.com/billing), [Chargebee](https://www.chargebee.com/)|\nFinancial Service|[OpenBB Terminal](https://github.com/openbb-finance/OpenBBTerminal)|Investment research for everyone|<a href=https://github.com/GamestonkTerminal/GamestonkTerminal><img src=\"https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal?style=social\" width=150/></a>|[Bloomberg](https://www.bloomberg.com/)\nForm Building|[FormKit](https://formkit.com/)| A software to help build attractive forms|<a href=https://github.com/formkit/formkit><img                               src=\"https://img.shields.io/github/stars/formkit/formkit?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForm Building|[Formbricks](https://formbricks.com/)| Build forms and receive & manage submission data in one platform |<a href=https://github.com/formbricks/formbricks><img src=\"https://img.shields.io/github/stars/formbricks/formbricks?style=social\" width=150></a>|[Typeform](https://www.typeform.com/), [Google Forms](https://forms.google.com), [React Hook Form](https://react-hook-form.com/)\nForm Building|[Formio](https://form.io/)| A Form and Data Management Platform for Progressive Web Applications|<a href=https://github.com/formio/formio><img src=\"https://img.shields.io/github/stars/formio/formio?style=social\" width=150></a>|[Vueform](https://vueform.com/),[Typeform](https://www.typeform.com/)\nForum Software|[Discourse](https://www.discourse.org/)|A platform for community discussion|<a href=https://github.com/discourse/discourse><img src=\"https://img.shields.io/github/stars/discourse/discourse?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)\nForum Software|[Vanilla](https://vanillaforums.com/)|A platform for community discussion|<a href=https://github.com/vanilla/vanilla><img src=\"https://img.shields.io/github/stars/vanilla/vanilla?style=social\" width=150/></a>|[Tribe](https://tribe.so/), [Circle](https://circle.so/)|\nGraph database|[ArangoDB](https://www.arangodb.com/)|Graph database and document store|<a href=https://github.com/arangodb/arangodb><img src=\"https://img.shields.io/github/stars/arangodb/arangodb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Memgraph](https://memgraph.com/)|In-memory graph database|<a href=https://github.com/memgraph/memgraph><img src=\"https://img.shields.io/github/stars/memgraph/memgraph?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[Neo4j](http://neo4j.com/)|Graph database platform|<a href=https://github.com/neo4j/neo4j><img src=\"https://img.shields.io/github/stars/neo4j/neo4j?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nGraph database|[TerminusDB](https://terminusdb.com/)|Knowledge graph and document store|<a href=https://github.com/terminusdb/terminusdb><img src=\"https://img.shields.io/github/stars/terminusdb/terminusdb?style=social\" width=150/></a>|[TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\nHelpdesk Solution|[Peppermint](https://peppermint.sh)|Ticket Management & Helpdesk system|<a href=https://github.com/Peppermint-Lab/peppermint><img src=\"https://img.shields.io/github/stars/Peppermint-Lab/peppermint?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nHelpdesk Solution|[UVDesk](https://www.uvdesk.com/en/)|Ticket Management & Helpdesk system|<a href=https://github.com/uvdesk/community-skeleton><img src=\"https://img.shields.io/github/stars/uvdesk/community-skeleton?style=social\" width=150/></a>|[Zendesk](https://www.zendesk.co.uk/)\nInternal Tools|[AppSmith](https://www.appsmith.com/)|Low-code platform for internal tools|<a href=https://github.com/appsmithorg/appsmith><img src=\"https://img.shields.io/github/stars/appsmithorg/appsmith?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Budibase](https://budibase.com/)|Low-code platform for internal tools|<a href=https://github.com/Budibase/budibase><img src=\"https://img.shields.io/github/stars/Budibase/budibase?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[ILLA Cloud](https://www.illacloud.com/)|Low-code platform for developers to build internal tools in minutes.|<a href=https://github.com/illacloud/illa-builder><img src=\"https://img.shields.io/github/stars/illacloud/illa-builder?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Lowdefy](https://lowdefy.com/)|YAML-based low-code platform for internal tools|<a href=https://github.com/lowdefy/lowdefy><img src=\"https://img.shields.io/github/stars/lowdefy/lowdefy?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Tooljet](https://tooljet.io/)|Low-code framework for internal tools|<a href=https://github.com/tooljet/tooljet><img src=\"https://img.shields.io/github/stars/tooljet/tooljet?style=social\" width=150/></a>|[Retool](https://retool.com/)\nInternal Tools|[Windmill](https://windmill.dev/)|Company-wide apps and automations from minimal python or typescript scripts|<a href=https://github.com/windmill-labs/windmill><img src=\"https://img.shields.io/github/stars/windmill-labs/windmill?style=social\" width=150/></a>|[Retool](https://retool.com/)|\nLocalization (i18n)|[Tolgee](https://tolgee.io)|Developer & translator friendly web-based localization platform|<a href=https://github.com/tolgee/tolgee-platform><img src=\"https://img.shields.io/github/stars/tolgee/tolgee-platform?style=social\" width=150/></a>|[Lokalise](https://www.lokalise.com/), [Transifex](https://www.transifex.com/), [Crowdin](https://crowdin.com/), [POEditor](https://poeditor.com/)\nLocalization (i18n)|[inlang](https://www.inlang.com/)|Developer-first localization infrastructure built on git|<a href=https://github.com/inlang/inlang><img src=\"https://img.shields.io/github/stars/inlang/inlang?style=social\" width=150/></a>|[Lokalise](https://www.lokalise.com/), [Transifex](https://www.transifex.com/), [Crowdin](https://crowdin.com/), [POEditor](https://poeditor.com/)\nLog Management|[Graylog](https://www.graylog.org/)|Log management platform|<a href=https://github.com/Graylog2/graylog2-server><img src=\"https://img.shields.io/github/stars/Graylog2/graylog2-server?style=social\" width=150/></a>|[Splunk](https://www.splunk.com/)\nLog Management|[Quickwit](https://quickwit.io/)|Cloud-native log management & analytics|<a href=https://github.com/quickwit-oss/quickwit><img src=\"https://img.shields.io/github/stars/quickwit-oss/quickwit?style=social\" width=150/></a>|[Elastic Cloud](https://www.elastic.co/elastic-stack/)\nML Ops|[Cortex](https://www.cortex.dev/)|Production infrastructure for machine learning|<a href=https://github.com/cortexlabs/cortex><img src=\"https://img.shields.io/github/stars/cortexlabs/cortex?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)\nML Ops|[Metarank](https://metarank.ai)|AutoML style personalized ranking|<a href=https://github.com/metarank/metarank><img src=\"https://img.shields.io/github/stars/metarank/metarank?style=social\" width=150/></a>|[AWS Personalize](https://aws.amazon.com/personalize/), [Tecton](https://www.tecton.ai/)|\nML Ops|[MindsDB](https://mindsdb.com/)|In-database machine learning platform|<a href=https://github.com/mindsdb/mindsdb><img src=\"https://img.shields.io/github/stars/mindsdb/mindsdb?style=social\" width=150/></a>|[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)|\nML Ops|[Ploomber](https://ploomber.io/)|YAML-based pipeline builder for ML models|<a href=https://github.com/ploomber/ploomber><img src=\"https://img.shields.io/github/stars/ploomber/ploomber?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/)|\nML Ops|[Seldon](https://seldon.io/)|Deployment & monitoring for machine learning at scale|<a href=https://github.com/SeldonIO/seldon-core><img src=\"https://img.shields.io/github/stars/SeldonIO/seldon-core?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)|\nML Ops|[Zilliz](https://zilliz.com)'s [Towhee](https://towhee.io)|Platform for generating embedding vectors|<a href=https://github.com/towhee-io/towhee><img src=\"https://img.shields.io/github/stars/towhee-io/towhee?style=social\" width=150/></a>|[AWS SageMaker](https://aws.amazon.com/sagemaker)|\nMarketing SaaS|[Dub](https://dub.sh/)|Open-source Bitly Alternative with built-in analytics|<a href=https://github.com/steven-tey/dub><img src=\"https://img.shields.io/github/stars/steven-tey/dub?style=social\" width=150/></a>|[Bitly](https://bitly.com/)\nMessaging|[Element](https://element.io/)|Enterprise communication platform|<a href=https://github.com/vector-im/element-web><img src=\"https://img.shields.io/github/stars/vector-im/element-web?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Mattermost](https://mattermost.com/)|Enterprise communication platform for developers|<a href=https://github.com/mattermost/mattermost-server><img src=\"https://img.shields.io/github/stars/mattermost/mattermost-server?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Rocket.chat](https://rocket.chat/)|Enterprise communication platform|<a href=https://github.com/RocketChat/Rocket.Chat><img src=\"https://img.shields.io/github/stars/RocketChat/Rocket.Chat?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMessaging|[Tinode](https://tinode.co/)|General instant messaging|<a href=https://github.com/tinode/chat><img src=\"https://img.shields.io/github/stars/tinode/chat?style=social\" width=150/></a>|[WhatsApp](https://www.whatsapp.com/), [Telegram](https://www.telegram.org/)|\nMessaging|[Zulip](https://zulip.com/)|Team chat|<a href=https://github.com/zulip/zulip><img src=\"https://img.shields.io/github/stars/zulip/zulip?style=social\" width=150/></a>|[Slack](https://slack.com/)|\nMetrics store|[Cube.js](https://cube.dev/)|Headless business intelligence suite|<a href=https://github.com/cube-js/cube.js><img src=\"https://img.shields.io/github/stars/cube-js/cube.js?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[Evidence](https://evidence.dev/)|Lightweight BI using SQL and markdown|<a href=https://github.com/evidence-dev/evidence><img src=\"https://img.shields.io/github/stars/evidence-dev/evidence?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[LightDash](https://www.lightdash.com/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/lightdash/lightdash><img src=\"https://img.shields.io/github/stars/lightdash/lightdash?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MLCraft](http://mlcraft.io/)|Low-code metrics layer, alternative to Looker|<a href=https://github.com/mlcraft-io/mlcraft><img src=\"https://img.shields.io/github/stars/mlcraft-io/mlcraft?style=social\" width=150/></a>|[Looker](https://looker.com/)\nMetrics store|[MetriQL](https://metriql.com/)|Headless business intelligence suite|<a href=https://github.com/metriql/metriql><img src=\"https://img.shields.io/github/stars/metriql/metriql?style=social\" width=150/></a>|[Looker](https://looker.com/)\nNo-code database|[Baserow](https://baserow.io/)|No-code database and Airtable alternative|<a href=https://gitlab.com/bramw/baserow><img src=\"https://about.gitlab.com/images/press/logo/png/gitlab-logo-gray-rgb.png\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[NocoDB](https://www.nocodb.com/)|No-code database and Airtable alternative|<a href=https://github.com/nocodb/nocodb><img src=\"https://img.shields.io/github/stars/nocodb/nocodb?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)\nNo-code database|[Rowy](https://www.rowy.io/)|Extendable Airtable-like spreadsheet UI for databases|<a href=https://github.com/rowyio/rowy><img src=\"https://img.shields.io/github/stars/rowyio/rowy?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNo-code database|[Totum](https://totum.online/)|Business database for non-programmers|<a href=https://github.com/totumonline/totum-mit><img src=\"https://img.shields.io/github/stars/totumonline/totum-mit?style=social\" width=150/></a>|[AirTable](https://www.airtable.com/)|\nNotetaking|[AppFlowy](https://www.appflowy.io/)|Open-source alternative to Notion|<a href=https://github.com/AppFlowy-IO/appflowy><img src=\"https://img.shields.io/github/stars/AppFlowy-IO/appflowy?style=social\" width=150/></a>|[Notion](https://www.notion.so/)\nNotetaking|[Athens Research](https://www.athensresearch.org/)|Knowledge graph for research and notetaking|<a href=https://github.com/athensresearch/athens><img src=\"https://img.shields.io/github/stars/athensresearch/athens?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Bangle.io](https://bangle.io/)|A rich note note taking web app that works on top of your locally saved Markdown files|<a href=https://github.com/bangle-io/bangle-io><img src=\"https://img.shields.io/github/stars/bangle-io/bangle-io?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Boost Note](https://boostnote.io/)|Collaborative workspace for developer teams|<a href=https://github.com/BoostIO/BoostNote-App><img src=\"https://img.shields.io/github/stars/BoostIO/BoostNote-App?style=social\" width=150/></a>|[Notion](https://www.notion.so/)|\nNotetaking|[Dendron](https://www.dendron.so/)|Knowledge base plugin for VS Code|<a href=https://github.com/dendronhq/dendron><img src=\"https://img.shields.io/github/stars/dendronhq/dendron?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Joplin](https://joplinapp.org/)|Secure, Cross-platform, Open-Source  Markdown Note Taking App|<a href=https://github.com/laurent22/joplin><img src=\"https://img.shields.io/github/stars/laurent22/joplin?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Logseq](https://logseq.com/)|Knowledge base manager|<a href=https://github.com/logseq/logseq><img src=\"https://img.shields.io/github/stars/logseq/logseq?style=social\" width=150/></a>|[Roam Research](https://roamresearch.com/)|\nNotetaking|[Notabase](https://notabase.io)|Powerful and easy-to-use note-taking app for networked thinking|<a href=https://github.com/churichard/notabase><img src=\"https://img.shields.io/github/stars/churichard/notabase?style=social\" width=150/></a>|[Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)|\nNotetaking|[Notesnook](https://notesnook.com/)|A fully open source & end-to-end encrypted note taking alternative to Evernote.|<a href=https://github.com/streetwriters/notesnook><img src=\"https://img.shields.io/github/stars/streetwriters/notesnook?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [OneNote](https://www.onenote.com/n)|\nNotetaking|[Outline](https://www.getoutline.com/)|Wiki and knowledge base|<a href=https://github.com/outline/outline><img src=\"https://img.shields.io/github/stars/outline/outline?style=social\" width=150/></a>|[Notion](https://notion.so)|\nNotetaking|[Trilium.cc](https://trilium.cc/)|Personal knowledge base|<a href=https://github.com/zadam/trilium><img src=\"https://img.shields.io/github/stars/zadam/trilium?style=social\" width=150/></a>|[Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\nObservability and monitoring|[Chaos Genius](https://www.chaosgenius.io/)|ML powered analytics engine for outlier/anomaly detection and root cause analysis|<a href=https://github.com/chaos-genius/chaos_genius><img src=\"https://img.shields.io/github/stars/chaos-genius/chaos_genius?style=social\" width=150/></a>|[AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\nObservability and monitoring|[Grafana](https://grafana.com/)|Observability and data visualization platform|<a href=https://github.com/grafana/grafana><img src=\"https://img.shields.io/github/stars/grafana/grafana?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Netdata](https://www.netdata.cloud)|Application monitoring and observability platform|<a href=https://github.com/netdata/netdata><img src=\"https://img.shields.io/github/stars/netdata/netdata?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[OpenStatus](https://openstatus.dev/)|Synthetic monitoring platform|<a href=https://github.com/openstatusHQ/openstatus><img src=\"https://img.shields.io/github/stars/openstatusHQ/openstatus?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Sentry](https://sentry.io/)|Application monitoring with a focus on error reporting|<a href=https://github.com/getsentry/sentry><img src=\"https://img.shields.io/github/stars/getsentry/sentry?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Signoz](https://signoz.io/)|Application monitoring and observability platform|<a href=https://github.com/signoz/signoz><img src=\"https://img.shields.io/github/stars/signoz/signoz?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[Uptrace](https://uptrace.dev/)|Application monitoring and observability platform|<a href=https://github.com/uptrace/uptrace><img src=\"https://img.shields.io/github/stars/uptrace/uptrace?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nObservability and monitoring|[VictoriaMetrics](https://victoriametrics.com/)|Application monitoring and observability platform|<a href=https://github.com/VictoriaMetrics/VictoriaMetrics><img src=\"https://img.shields.io/github/stars/victoriametrics/victoriametrics?style=social\" width=150/></a>|[DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\nPassword manager|[BitWarden](https://bitwarden.com/)|Password manager for teams and individuals|<a href=https://github.com/bitwarden/server><img src=\"https://img.shields.io/github/stars/bitwarden/server?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPassword manager|[Padloc](https://padloc.app/)|Password manager for teams and individuals|<a href=https://github.com/padloc/padloc><img src=\"https://img.shields.io/github/stars/padloc/padloc?style=social\" width=150/></a>|[1Password](https://1password.com/)|\nPassword manager|[Passbolt](https://www.passbolt.com/)|Password manager for teams and individuals|<a href=https://github.com/passbolt/passbolt_api><img src=\"https://img.shields.io/github/stars/passbolt/passbolt_api?style=social\" width=150/></a>|[1Password](https://1password.com/)\nPlatform as a service|[Coolify](https://coolify.io/)|Self-hostable Heroku alternative|<a href=https://github.com/coollabsio/coolify><img src=\"https://img.shields.io/github/stars/coollabsio/coolify?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a service|[Dokku](https://dokku.com/)|An open source PAAS alternative to Heroku|<a href=https://github.com/dokku/dokku><img src=\"https://img.shields.io/github/stars/dokku/dokku?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a service|[Otomi](https://otomi.io)|Self-hosted PaaS for Kubernetes|<a href=https://github.com/redkubes/otomi-core><img src=\"https://img.shields.io/github/stars/redkubes/otomi-core?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Porter](https://porter.run/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/porter-dev/porter><img src=\"https://img.shields.io/github/stars/porter-dev/porter?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Pulumi](https://www.pulumi.com/)|Universal Infrastructure as Code|<a href=https://github.com/pulumi/pulumi><img src=\"https://img.shields.io/github/stars/pulumi/pulumi?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a service|[Qovery](https://www.qovery.com/)|Kubernetes powered PaaS that runs in your own cloud|<a href=https://github.com/Qovery/engine><img src=\"https://img.shields.io/github/stars/Qovery/engine?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)\nPlatform as a service|[Space Cloud](https://space-cloud.io/)|Serverless cloud deployment platform|<a href=https://github.com/spacecloud-io/space-cloud><img src=\"https://img.shields.io/github/stars/spacecloud-io/space-cloud?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nPlatform as a service|[dyrector.io](https://dyrector.io)|Simplify container delivery without vendor lock|<a href=https://github.com/dyrector-io/dyrectorio><img src=\"https://img.shields.io/github/stars/dyrector-io/dyrectorio?style=social\" width=150/></a>|[Heroku](https://www.heroku.com/)|\nProduct Analytics|[Objectiv](https://objectiv.io/)|Product analytics infrastructure|<a href=https://github.com/objectiv/objectiv-analytics><img src=\"https://img.shields.io/github/stars/objectiv/objectiv-analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/analytics/web/), [Amplitude](https://amplitude.com/), [Mixpanel](https://mixpanel.com/)|\nProduct Analytics|[PostHog](https://posthog.com/)|Product analytics platform|<a href=https://github.com/PostHog/posthog><img src=\"https://img.shields.io/github/stars/PostHog/posthog?style=social\" width=150/></a>|[Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\nProduct Analytics|[Trench](https://trench.dev)|Open source analytics infrastructure|<a href=https://github.com/FrigadeHQ/trench><img src=\"https://img.shields.io/github/stars/FrigadeHQ/trench?style=social\" width=150/></a>|[Segment](https://segment.io), [Google Analytics](https://analytics.google.com), [Amplitude](https://amplitude.com)|\nProject Management|[Focalboard](https://www.focalboard.com/)|Alternative to Trello, Notion, and Asana|<a href=https://github.com/mattermost/focalboard><img src=\"https://img.shields.io/github/stars/mattermost/focalboard?style=social\" width=150/></a>|[Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)|\nProject Management|[OpenProject](https://www.openproject.org/)|Project management software|<a href=https://github.com/opf/openproject><img src=\"https://img.shields.io/github/stars/opf/openproject?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/)|\nProject Management|[Plane](https://plane.so/)|Alternative to Linear, JIRA, Trello and Height|<a href=https://github.com/makeplane/plane><img src=\"https://img.shields.io/github/stars/makeplane/plane?style=social\" width=150/></a>|[Linear](https://linear.app/), [JIRA](https://www.atlassian.com/software/jira), [Trello](https://trello.com/), [Height](https://height.app/)|\nProject Management|[Taiga](https://www.taiga.io/)|Project management software|<a href=https://github.com/kaleidos-ventures/taiga-docker><img src=\"https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker?style=social\" width=150/></a>|[Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)|\nProject Management|[Vikunja](https://vikunja.io/)|The to-do app to organize your next project.|<a href=https://github.com/go-vikunja/api><img src=\"https://img.shields.io/github/stars/go-vikunja/api?style=social\" width=150/></a>|[Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)|\nRelational database|[PingCAP](https://en.pingcap.com/)|NewSQL database that supports HTAP workloads|<a href=https://github.com/pingcap/tidb><img src=\"https://img.shields.io/github/stars/pingcap/tidb?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nRelational database|[Yugabyte](https://www.yugabyte.com/)|High-performance distributed SQL database|<a href=https://github.com/yugabyte/yugabyte-db><img src=\"https://img.shields.io/github/stars/yugabyte/yugabyte-db?style=social\" width=150/></a>|[Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)|\nRemote Desktop Application|[RustDesk](https://rustdesk.com/)|Open source virtual / remote desktop infrastructure for everyone|<a href=https://github.com/rustdesk/rustdesk><img src=\"https://img.shields.io/github/stars/rustdesk/rustdesk?style=social\" width=150/></a>|[TeamViewer](https://teamviewer.com)|\nReverse ETL|[Castled](https://castled.io/)|Data synchronization framework focused on external apps|<a href=https://github.com/castledio/castled><img src=\"https://img.shields.io/github/stars/castledio/castled?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\nReverse ETL|[Grouparoo](https://www.grouparoo.com/)|Data synchronization framework|<a href=https://github.com/grouparoo/grouparoo><img src=\"https://img.shields.io/github/stars/grouparoo/grouparoo?style=social\" width=150/></a>|[Hightouch](https://www.hightouch.io/)\nRobotic Process Automation (RPA)|[RoboCorp](https://robocorp.com/)|Set of tooling that allows to create automation packages|<a href=https://github.com/robocorp/rcc><img src=\"https://img.shields.io/github/stars/robocorp/rcc?style=social\" width=150/></a>|[UiPath](https://www.uipath.com/)\nScheduling|[Cal.com](https://cal.com/)|Scheduling infrastructure, alternative to Calendly|<a href=https://github.com/calendso/calendso><img src=\"https://img.shields.io/github/stars/calendso/calendso?style=social\" width=150/></a>|[Calendly](https://calendly.com/)\nSession replay software|[OpenReplay](https://openreplay.com/)|Session replay stack for developers|<a href=https://github.com/openreplay/openreplay><img src=\"https://img.shields.io/github/stars/openreplay/openreplay?style=social\" width=150/></a>|[LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\nSocial Media|[Postiz](https://postiz.com)|Self-hosted social media scheduling tool|<a href=https://github.com/gitroomhq/postiz-app><img src=\"https://img.shields.io/github/stars/gitroomhq/postiz-app?style=social\" width=150/></a>|[Buffer](https://buffer.com/), [Hootsuite](https://hootsuite.com/)\nStreaming|[Glimesh](https://glimesh.tv/)|Live streaming platform|<a href=https://github.com/glimesh/glimesh.tv><img src=\"https://img.shields.io/github/stars/glimesh/glimesh.tv?style=social\" width=150/></a>|[Twitch](https://www.twitch.tv/)\nSurveys|[LimeSurvey](https://www.limesurvey.org/)|Online survey platform|<a href=https://github.com/LimeSurvey/LimeSurvey><img src=\"https://img.shields.io/github/stars/LimeSurvey/LimeSurvey?style=social\" width=150/></a>|[SurveyMonkey](https://www.surveymonkey.com/), [Qualtrics](https://www.qualtrics.com/)\nTimeseries database|[CrateDB](https://crate.io/)|Distributed SQL database for real-time analytics of time series data|<a href=\"https://github.com/crate/crate\"><img src=\"https://img.shields.io/github/stars/crate/crate?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[InfluxDB](https://www.influxdata.com/)|Database designed to process time series data|<a href=https://github.com/influxdata/influxdb><img src=\"https://img.shields.io/github/stars/influxdata/influxdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[QuestDB](https://questdb.io/)|Database designed to process time series data|<a href=https://github.com/questdb/questdb><img src=\"https://img.shields.io/github/stars/questdb/questdb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TDengine](https://tdengine.com/?en)|Database designed to process time series data|<a href=https://github.com/taosdata/TDengine><img src=\"https://img.shields.io/github/stars/taosdata/TDengine?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTimeseries database|[TimescaleDB](https://www.timescale.com/)|Database designed to process time series data|<a href=https://github.com/timescale/timescaledb><img src=\"https://img.shields.io/github/stars/timescale/timescaledb?style=social\" width=150/></a>|[Kdb+](https://kx.com/developers/)\nTunnelling|[Tunnelmole](https://tunnelmole.com/)|Get a Public URL for your local development enviornment |<a href=https://github.com/robbie-cahill/tunnelmole-client><img src=\"https://img.shields.io/github/stars/robbie-cahill/tunnelmole-client?style=social\" width=150/>|</a>[Ngrok](https://ngrok.com)\nVPN as a Service|[OmniEdge](https://omniedge.io/)|No-code P2P layer-2 mesh VPN for enterprise with zero config |<a href=https://github.com/omniedgeio/omniedge><img src=\"https://img.shields.io/github/stars/omniedgeio/omniedge?style=social\" width=150/></a>|[OpenVPN](https://openvpn.net), [Ngrok](https://ngrok.com), [Oray](https://www.oray.com), [AWS VPC](https://aws.amazon.com/vpc/)|\nVideo Conferencing|[Jitsi](https://jitsi.org/meet)|Video conferences platform and SDK|<a href=https://github.com/jitsi/jitsi-meet><img src=\"https://img.shields.io/github/stars/jitsi/jitsi-meet?style=social\" width=150/></a>|[Zoom](https://zoom.us/)|\nVideo Conferencing|[LiveKit](https://livekit.io/)|SFU and SDKs for high-performance, scalable WebRTC|<a href=https://github.com/livekit/livekit-server><img src=\"https://img.shields.io/github/stars/livekit/livekit-server?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/), [Agora](https://agora.io/)|\nVideo Conferencing|[OpenVidu](https://openvidu.io/)|Platform and SDKs to build on-premises WebRTC video conferences|<a href=https://github.com/OpenVidu/openvidu><img src=\"https://img.shields.io/github/stars/OpenVidu/openvidu?style=social\" width=150/></a>|[Twilio](https://www.twilio.com/)|\nWebhooks|[Svix](https://www.svix.com/)|Webhooks as a Service|<a href=https://github.com/svix/svix-webhooks><img src=\"https://img.shields.io/github/stars/Svix/svix-webhooks?style=social\" width=150/></a>|[Pusher](https://pusher.com/)|\nWebsite analytics|[GoatCounter](https://www.goatcounter.com/)|Google Analytics alternative|<a href=https://github.com/arp242/goatcounter><img src=\"https://img.shields.io/github/stars/arp242/goatcounter?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Matomo](https://matomo.org/)|Google Analytics alternative|<a href=https://github.com/matomo-org/matomo><img src=\"https://img.shields.io/github/stars/matomo-org/matomo?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Plausible](https://plausible.io/)|Google Analytics alternative|<a href=https://github.com/plausible/analytics><img src=\"https://img.shields.io/github/stars/plausible/analytics?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWebsite analytics|[Swetrix](https://swetrix.com)|Google Analytics alternative|<a href=https://github.com/swetrix/swetrix-js><img src=\"https://img.shields.io/github/stars/swetrix/swetrix-js?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)|\nWebsite analytics|[Umami](https://umami.is)|Google Analytics alternative|<a href=https://github.com/mikecao/umami><img src=\"https://img.shields.io/github/stars/mikecao/umami?style=social\" width=150/></a>|[Google Analytics](https://analytics.google.com/)\nWorkflow automation| [Activepieces](https://www.activepieces.com) | No-code business automation tool |<a href=https://github.com/activepieces/activepieces><img src=\"https://img.shields.io/github/stars/activepieces/activepieces?style=social\" width=150/></a> |[Zapier](https://www.zapier.com/), [Tray](https://tray.io/)\nWorkflow automation|[N8N](https://n8n.io/)|Node-based workflow automation tool for developers|<a href=https://github.com/n8n-io/n8n><img src=\"https://img.shields.io/github/stars/n8n-io/n8n?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\nWorkflow automation|[Pipedream](https://pipedream.com/)|Workflow automation and API integration platform|<a href=https://github.com/PipedreamHQ/pipedream><img src=\"https://img.shields.io/github/stars/PipedreamHQ/pipedream?style=social\" width=150/></a>|[Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)|\nWorkflow automation|[Temporal](https://temporal.io/)|Workflows as code platform|<a href=https://github.com/temporalio/temporal><img src=\"https://img.shields.io/github/stars/temporalio/temporal?style=social\" width=150/></a>|[Zapier](https://zapier.com/)\n\n<!-- END STARTUP LIST -->\n\n## Useful Links\n- Great [article](https://rajko-rad.medium.com/the-rise-of-open-source-challengers-4a3d93932425) on open-source challengers by Rajko Radovanovic\n"
  },
  {
    "path": "add_company.py",
    "content": "\"\"\"\nThis script adds company directly to the list\n\"\"\"\n# import yaml\n\n\ndef get_repo_from_url(url):\n    \"\"\"\n    Given a url, return the repository name.\n\n    :param url: the url of the repo\n    :return: The repo name.\n    \"\"\"\n    idx = url.find(\".com/\")\n    return url[idx + len(\".com/\") :].strip(\"/\")\n\n\ndef create_alternatives_md(names, links):\n    \"\"\"\n    Create a markdown string of the form:\n\n    [name1](link1), [name2](link2), ...\n\n    :param names: A list of alternative names for the image\n    :param links: A list of links to the alternative versions of the file\n    :return: A string of the form:\n    \"\"\"\n    return \", \".join(\n        (f\"\"\"[{name.strip()}]({link.strip()})\"\"\" for name, link in zip(names, links))\n    )\n\n\ndef create_shield_link(gh_link):\n    return \"https://img.shields.io/github/stars/{repo}?style=social\".format(\n        repo=get_repo_from_url(gh_link)\n    ).strip()\n\n\ndef create_new_line(\n    category, company_name, description, link, gh_link, alts_names, alts_links\n):\n\n    return \"{}|{}|{}|{}|{}|\\n\".format(\n        category.strip(),\n        f\"[{company_name.strip()}]({link.strip()})\",\n        description.strip(),\n        f'<a href={gh_link.strip()}><img src=\"{create_shield_link(gh_link)}\" width=150/></a>',\n        create_alternatives_md(alts_names, alts_links),\n    )\n\n\ndef add_new_company(\n    category, company_name, description, link, gh_link, alts_names, alts_links\n):\n\n    with open(\"README.md\", \"r\", encoding=\"utf-8\") as f:\n        all = f.readlines()\n\n    table_start = \"|Category|Company|Description|GitHub Stars|Alternative to|\\n\"\n    table_end = \"<!-- END STARTUP LIST -->\\n\"\n\n    idx = all.index(table_start)\n    idx_end = all.index(table_end)\n\n    find_name = lambda x: x[x.index(\"[\") + 1 : x.index(\"]\")].strip()\n    find_cat = lambda x: x[: x.index(\"|\")].strip()\n\n    categories = [(find_cat(x), find_name(x)) for x in all[idx + 2 : idx_end - 1]]\n\n    search_tup = (category.strip(), company_name.strip())\n\n    insert_idx = -1\n\n    for i, tup in enumerate(reversed(categories)):\n        if search_tup == tup:\n            return \"This entry already exists\"\n        elif search_tup > tup:\n            print(search_tup, tup)\n            insert_idx = len(categories) - i\n            break\n\n    all.insert(\n        insert_idx + idx + 2,\n        create_new_line(\n            category, company_name, description, link, gh_link, alts_names, alts_links\n        ),\n    )\n\n    # file_name = \"_\".join(company_name.split(\" \"))\n    # with open(f\"submissions/{file_name}.yaml\", \"w\") as file:\n    #     yaml.dump(\n    #         dict(\n    #             category=category,\n    #             company_name=company_name,\n    #             description=description,\n    #             link=link,\n    #             gh_link=gh_link,\n    #             alts_names=alts_names,\n    #             alts_links=alts_links,\n    #         ),\n    #         file,\n    #         default_flow_style=False,\n    #     )\n\n    with open(\"README.md\", \"w\", encoding=\"utf-8\") as f:\n        f.writelines(all)\n\n    return \"ok, added!\"\n\n\ndef add_company_from_command_line():\n    count = 0\n    args = dict()\n\n    while True:\n        if count == 0:\n            args[\"company_name\"] = input(\"Enter the company name.\\n(e.g Metabase)\\n: \")\n            print(\"-\" * 100)\n            count += 1\n        elif count == 1:\n            args[\"category\"] = input(\n                \"Enter category of the company. May be an existing or a new one.\\n(e.g Business Intelligence)\\n: \"\n            )\n            print(\"-\" * 100)\n            count += 1\n        elif count == 2:\n            args[\"description\"] = input(\n                \"Description of the company.\\nKeep it short and simple (use one line)\\n: \"\n            )\n            print(\"-\" * 100)\n            count += 1\n        elif count == 3:\n            args[\"link\"] = input(\n                \"\"\"Url to the company's website.\\n(e.g https://www.metabase.com/)\\n: \"\"\"\n            )\n            print(\"-\" * 100)\n            count += 1\n        elif count == 4:\n            args[\"gh_link\"] = input(\n                \"\"\"\"Url of the product's github repo.\\n(e.g https://github.com/metabase/metabase)\\n: \"\"\"\n            )\n            print(\"-\" * 100)\n            count += 1\n        elif count == 5:\n            args[\"alts_names\"] = input(\n                \"\"\"Names of the company's well-known SaaS competitors.\\n(e.g for Metabase: PowerBI, DataStudio, Tableau)\\n: \"\"\"\n            ).split(\",\")\n            print(\"-\" * 100)\n            count += 1\n        elif count == 6:\n            args[\"alts_links\"] = input(\n                \"Links to the corresponding SaaS competitors.\\n(e.g for Metabase: https://powerbi.microsoft.com/, https://datastudio.google.com/, https://www.tableau.com/)\\n: \"\n            ).split(\",\")\n            print(\"-\" * 100)\n            count += 1\n        else:\n            result = add_new_company(**args)\n            print(result)\n            break\n\n\nif __name__ == \"__main__\":\n    add_company_from_command_line()\n"
  },
  {
    "path": "build_readme.py",
    "content": "\"\"\"\nThis file builds README from YAML\n\"\"\"\nimport yaml\nimport os\nfrom add_company import add_new_company\n\n\ndef parse_all_yamls():\n    arr = []\n    for filename in os.listdir(\"submissions\"):\n        if filename.endswith(\".yaml\"):\n            with open(f\"submissions/{filename}\", \"r\") as file:\n                obj = yaml.load(file, yaml.Loader)\n            arr.append(obj)\n    return arr\n\n\ndef build_list():\n    arr = parse_all_yamls()\n    for obj in arr:\n        add_new_company(**obj)\n\n\nif __name__ == \"__main__\":\n    build_list()\n"
  },
  {
    "path": "build_website.py",
    "content": "import yaml\nimport os\n\n\ndef remove_github_com(s: str):\n    return s.replace(\"https://github.com/\", \"\")\n\n\ndef remove_https(s: str):\n    s = s.replace(\"https://\", \"\")\n    s = s.replace(\"http://\", \"\")\n    return s.strip(\"/\")\n\n\nmarkdown_template = \"\"\"\n# {company_name} \n\n<a href=\"{link}\"><img src=\"https://icons.duckduckgo.com/ip3/{clean_link}.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/{clean_gh_link}.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/{clean_gh_link}/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/{clean_gh_link}.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/{clean_gh_link}/network/) [![GitHub issues](https://img.shields.io/github/issues/{clean_gh_link}.svg)](https://GitHub.com/N{clean_gh_link}/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/{clean_gh_link}.svg)](https://github.com/{clean_gh_link}/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/{clean_gh_link}.svg)](https://GitHub.com/{clean_gh_link}/graphs/contributors/) \n\n**Category**: {category}\n\n**Github**: [{clean_gh_link}]({gh_link})\n\n**Website**: [{clean_link}]({link})\n\n**Description**:\n{description}\n\n**Alternative to**: {alts}\n\"\"\"\n\nSPECIAL_MAPPING = {\n    \"ELT / ETL\": \"ETL\",\n    \"Robotic Process Automation (RPA)\": \"Robotic Process Automation\",\n    \"OPAL (Permit.io)\": \"OPAL\",\n}\n\n\nappl = lambda x: SPECIAL_MAPPING[x] if x in SPECIAL_MAPPING else x\n\n\ndef get_all_companies():\n    arr = []\n    for filename in os.listdir(\"submissions\"):\n        if filename.endswith(\".yaml\"):\n            with open(f\"submissions/{filename}\", \"r\", encoding=\"utf-8\") as file:\n                obj = yaml.load(file, yaml.Loader)\n            obj[\"category\"] = appl(obj[\"category\"])\n            obj[\"company_name\"] = appl(obj[\"company_name\"])\n            arr.append(obj)\n    return arr\n\n\ndef get_all_categories(arr):\n    categories = set()\n    for obj in arr:\n        categories.add(obj[\"category\"])\n    return categories\n\n\ndef create_website_directories(categories):\n    for category in categories:\n        if not os.path.exists(f\"website/docs/{category}\"):\n            os.mkdir(f\"website/docs/{category}\")\n\n\ndef generate_alternative_md(alts_names, alts_links):\n    alt_md = \"\"\n    for alt_link, alt_name in zip(alts_links, alts_names):\n        alt_md += f\"[{alt_name}]({alt_link}), \"\n    return alt_md.strip(\", \")\n\n\ndef create_markdown_for_companies(companies):\n    for company in companies:\n        file_name = \"-\".join(company[\"company_name\"].split(\" \"))\n        with open(\n            f\"website/docs/{company['category']}/{file_name}.md\", \"w\", encoding=\"utf-8\"\n        ) as file:\n            file.write(\n                markdown_template.format(\n                    company_name=company[\"company_name\"],\n                    category=company[\"category\"],\n                    gh_link=company[\"gh_link\"],\n                    clean_gh_link=remove_github_com(company[\"gh_link\"]),\n                    link=company[\"link\"],\n                    clean_link=remove_https(company[\"link\"]),\n                    description=company[\"description\"],\n                    alts=generate_alternative_md(\n                        company[\"alts_names\"], company[\"alts_links\"]\n                    ),\n                )\n            )\n\n\nif __name__ == \"__main__\":\n    companies = get_all_companies()\n    categories = get_all_categories(companies)\n    # creating categories for the website in the docs folder\n    create_website_directories(categories)\n    # creating markdown files for the companies\n    create_markdown_for_companies(companies)\n"
  },
  {
    "path": "count.py",
    "content": "def count_companies_in_readme():\n\n    with open('README.md', 'r', encoding='utf-8') as f:\n        all = f.readlines()\n\n    table_start = '|Category|Company|Description|GitHub Stars|Alternative to|\\n'\n    idx = all.index(table_start)\n\n    return len(all[idx + 2: -1])\n\n\n\nif __name__ == \"__main__\":\n    print(\n        f\"Found companies in README: {count_companies_in_readme()}\"\n    )"
  },
  {
    "path": "create_yamls.py",
    "content": "\"\"\"\nThis script create yamls from README\n\"\"\"\n\nimport yaml\n\n\ndef read_readme():\n    with open(\"README.md\", \"r\", encoding=\"utf-8\") as f:\n        all = f.readlines()\n\n        table_start = \"|Category|Company|Description|GitHub Stars|Alternative to|\\n\"\n        table_end = \"<!-- END STARTUP LIST -->\\n\"\n\n        idx = all.index(table_start)\n        idx_end = all.index(table_end)\n    return all[idx + 2 : idx_end - 1]\n\n\ndef parse_line(line: str):\n    arr = line.split(\"|\")\n    category = arr[0]\n    name = arr[1].split(\"]\")[0][1:]\n    website = arr[1].split(\"]\")[1][1:-1]\n    description = arr[2]\n    github = arr[3].split(\">\")[0].split(\"href=\")[1]\n    alts = list(map(lambda x: x.strip().split(\"]\")[0][1:], arr[4].split(\",\")))\n    alts_links = list(map(lambda x: x.strip().split(\"](\")[1][:-1], arr[4].split(\",\")))\n    return dict(\n        category=category,\n        company_name=name,\n        link=website,\n        description=description,\n        gh_link=github,\n        alts_names=alts,\n        alts_links=alts_links,\n    )\n\n\nif __name__ == \"__main__\":\n    arr = read_readme()\n    for line in arr:\n        obj = parse_line(line)\n        file_name = \"_\".join(obj[\"company_name\"].split(\" \"))\n        with open(f\"submissions/{file_name}.yaml\", \"w\") as file:\n            yaml.dump(obj, file, default_flow_style=False)\n"
  },
  {
    "path": "sort.py",
    "content": "def sort_readme():\n\n    with open(\"README.md\", \"r\", encoding=\"utf-8\") as f:\n        all = f.readlines()\n\n    table_start = \"|Category|Company|Description|GitHub Stars|Alternative to|\\n\"\n    table_end = \"<!-- END STARTUP LIST -->\\n\"\n\n    idx = all.index(table_start)\n    idx_end = all.index(table_end)\n\n    find_name = lambda x: x[x.index(\"[\") + 1 : x.index(\"]\")].strip()\n    find_cat = lambda x: x[: x.index(\"|\")].strip()\n\n    pairs = [(find_cat(x), find_name(x)) for x in all[idx + 2 : idx_end - 1]]\n\n    sorted_pairs = sorted(pairs)\n\n    right_elements = [all[idx + 2 : -1][pairs.index(i)] for i in sorted_pairs]\n\n    all[idx + 2 : idx_end - 1] = right_elements\n\n    with open(\"README.md\", \"w\", encoding=\"utf-8\") as f:\n        f.writelines(all)\n\n\nif __name__ == \"__main__\":\n    sort_readme()\n"
  },
  {
    "path": "submissions/21st.dev.yaml",
    "content": "alts_links:\n- https://www.landingfolio.com/\nalts_names:\n- Landingfolio\ncategory: Design\ncompany_name: 21st.dev\ndescription: The NPM for Design Engineers\ngh_link: https://github.com/rorkai/21st\nlink: https://21st.dev/\n"
  },
  {
    "path": "submissions/AceBase.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: AceBase\ndescription: Backend server with REST APIs to manage core backend needs\ngh_link: https://github.com/appy-one/acebase\nlink: https://acebase.io/\n"
  },
  {
    "path": "submissions/Airbyte.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Airbyte\ndescription: Data integration platform\ngh_link: https://github.com/airbytehq/airbyte\nlink: https://airbyte.io/\n"
  },
  {
    "path": "submissions/Amplication.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Amplication\ndescription: Backend server with REST and GraphQL APIs to manage core backend needs\ngh_link: https://github.com/amplication/amplication\nlink: https://amplication.com/\n"
  },
  {
    "path": "submissions/Apache_APISIX.yaml",
    "content": "alts_links:\n- https://cloud.google.com/apigee\nalts_names:\n- apigee\ncategory: API Gateway\ncompany_name: Apache APISIX\ndescription: Cloud Native API Gateway under the Apache Software Foundation\ngh_link: https://github.com/apache/apisix\nlink: https://github.com/apache/apisix\n"
  },
  {
    "path": "submissions/AppBase.yaml",
    "content": "alts_links:\n- https://www.algolia.com/\nalts_names:\n- Algolia\ncategory: Enterprise Search\ncompany_name: AppBase\ndescription: Search UI components for React and Vue\ngh_link: https://github.com/appbaseio/reactivesearch\nlink: https://www.appbase.io/\n"
  },
  {
    "path": "submissions/AppFlowy.yaml",
    "content": "alts_links:\n- https://www.notion.so/\nalts_names:\n- Notion\ncategory: Notetaking\ncompany_name: AppFlowy\ndescription: Open-source alternative to Notion\ngh_link: https://github.com/AppFlowy-IO/appflowy\nlink: https://www.appflowy.io/\n"
  },
  {
    "path": "submissions/AppSmith.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: AppSmith\ndescription: Low-code platform for internal tools\ngh_link: https://github.com/appsmithorg/appsmith\nlink: https://www.appsmith.com/\n"
  },
  {
    "path": "submissions/Appwrite.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Appwrite\ndescription: Backend server with REST APIs to manage core backend needs\ngh_link: https://github.com/appwrite/appwrite\nlink: https://appwrite.io/\n"
  },
  {
    "path": "submissions/ArangoDB.yaml",
    "content": "alts_links:\n- https://www.tigergraph.com/\n- https://aws.amazon.com/neptune/\nalts_names:\n- TigerGraph\n- Amazon Neptune\ncategory: Graph database\ncompany_name: ArangoDB\ndescription: Graph database and document store\ngh_link: https://github.com/arangodb/arangodb\nlink: https://www.arangodb.com/\n"
  },
  {
    "path": "submissions/Athens_Research.yaml",
    "content": "alts_links:\n- https://roamresearch.com/\nalts_names:\n- Roam Research\ncategory: Notetaking\ncompany_name: Athens Research\ndescription: Knowledge graph for research and notetaking\ngh_link: https://github.com/athensresearch/athens\nlink: https://www.athensresearch.org/\n"
  },
  {
    "path": "submissions/Bagisto.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Bagisto\ndescription: Headless e-commerce platform\ngh_link: https://github.com/bagisto/bagisto\nlink: https://bagisto.com/en/\n"
  },
  {
    "path": "submissions/Bangle.io.yaml",
    "content": "alts_links:\n- https://www.notion.so/\nalts_names:\n- Notion\ncategory: Notetaking\ncompany_name: Bangle.io\ndescription: A rich note note taking web app that works on top of your locally saved\n  Markdown files\ngh_link: https://github.com/bangle-io/bangle-io\nlink: https://bangle.io/\n"
  },
  {
    "path": "submissions/Baserow.yaml",
    "content": "alts_links:\n- https://www.airtable.com/\nalts_names:\n- AirTable\ncategory: No-code database\ncompany_name: Baserow\ndescription: No-code database and Airtable alternative\ngh_link: https://gitlab.com/bramw/baserow\nlink: https://baserow.io/\n"
  },
  {
    "path": "submissions/Benthos.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Benthos\ndescription: Data streaming processor with yaml-driven pipeline configuration\ngh_link: https://github.com/benthosdev/benthos\nlink: https://benthos.dev/\n"
  },
  {
    "path": "submissions/BitWarden.yaml",
    "content": "alts_links:\n- https://1password.com/\nalts_names:\n- 1Password\ncategory: Password manager\ncompany_name: BitWarden\ndescription: Password manager for teams and individuals\ngh_link: https://github.com/bitwarden/server\nlink: https://bitwarden.com/\n"
  },
  {
    "path": "submissions/Boost_Note.yaml",
    "content": "alts_links:\n- https://www.notion.so/\nalts_names:\n- Notion\ncategory: Notetaking\ncompany_name: Boost Note\ndescription: Collaborative workspace for developer teams\ngh_link: https://github.com/BoostIO/BoostNote-App\nlink: https://boostnote.io/\n"
  },
  {
    "path": "submissions/BoxyHQ.yaml",
    "content": "alts_links:\n- https://auth0.com/\nalts_names:\n- Auth0\ncategory: Auth & SSO\ncompany_name: BoxyHQ\ndescription: Enterprise Readiness made simple\ngh_link: https://github.com/boxyhq/jackson\nlink: https://boxyhq.com\n"
  },
  {
    "path": "submissions/Budibase.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: Budibase\ndescription: Low-code platform for internal tools\ngh_link: https://github.com/Budibase/budibase\nlink: https://budibase.com/\n"
  },
  {
    "path": "submissions/Builder.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Builder\ndescription: Drag and drop page builder and CMS\ngh_link: https://github.com/builderio/builder\nlink: https://builder.io/\n"
  },
  {
    "path": "submissions/CASE.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: CASE\ndescription: Lightweight Backend-as-a-Service with essential features\ngh_link: https://github.com/casejs/case\nlink: https://case.app\n"
  },
  {
    "path": "submissions/Cal.com.yaml",
    "content": "alts_links:\n- https://calendly.com/\nalts_names:\n- Calendly\ncategory: Scheduling\ncompany_name: Cal.com\ndescription: Scheduling infrastructure, alternative to Calendly\ngh_link: https://github.com/calendso/calendso\nlink: https://cal.com/\n"
  },
  {
    "path": "submissions/Castled.yaml",
    "content": "alts_links:\n- https://www.hightouch.io/\n- https://newrelic.com/\nalts_names:\n- Hightouch\n- NewRelic\ncategory: Reverse ETL\ncompany_name: Castled\ndescription: Data synchronization framework focused on external apps\ngh_link: https://github.com/castledio/castled\nlink: https://castled.io/\n"
  },
  {
    "path": "submissions/Cerbos.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Cerbos\ndescription: Granular access control\ngh_link: https://github.com/cerbos/cerbos\nlink: https://cerbos.dev/\n"
  },
  {
    "path": "submissions/Chaos_Genius.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/lookout-for-metrics/\n- https://www.anodot.com/\n- https://sisudata.com/\n- https://outlier.ai/\nalts_names:\n- AWS Lookout\n- Anodot\n- Sisu Data\n- Outlier\ncategory: Observability and monitoring\ncompany_name: Chaos Genius\ndescription: ML powered analytics engine for outlier/anomaly detection and root cause\n  analysis\ngh_link: https://github.com/chaos-genius/chaos_genius\nlink: https://www.chaosgenius.io/\n"
  },
  {
    "path": "submissions/Chaskiq.yaml",
    "content": "alts_links:\n- https://www.intercom.com/\n- https://www.zendesk.com/\nalts_names:\n- Intercom\n- Zendesk\ncategory: Customer Engagement\ncompany_name: Chaskiq\ndescription: Live chat widget\ngh_link: https://github.com/chaskiq/chaskiq\nlink: https://chaskiq.io/\n"
  },
  {
    "path": "submissions/Chatwoot.yaml",
    "content": "alts_links:\n- https://www.intercom.com/\n- https://www.zendesk.com/\nalts_names:\n- Intercom\n- Zendesk\ncategory: Customer Engagement\ncompany_name: Chatwoot\ndescription: Live chat widget\ngh_link: https://github.com/chatwoot/chatwoot\nlink: https://www.chatwoot.com/\n"
  },
  {
    "path": "submissions/CloudQuery.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/config/\n- https://cloud.google.com/asset-inventory\n- https://aws.amazon.com/guardduty/\nalts_names:\n- AWS Config\n- GCP Cloud Asset Inventory\n- AWS GuardDuty\ncategory: Cybersecurity\ncompany_name: CloudQuery\ndescription: Assess, audit, and evaluate the configurations of your cloud assets.\ngh_link: https://github.com/cloudquery/cloudquery\nlink: https://cloudquery.io/\n"
  },
  {
    "path": "submissions/Concrete.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Concrete\ndescription: CMS for teams\ngh_link: https://github.com/concrete5/concrete5\nlink: https://www.concretecms.com/\n"
  },
  {
    "path": "submissions/Coolify.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Coolify\ndescription: Self-hostable Heroku alternative\ngh_link: https://github.com/coollabsio/coolify\nlink: https://coolify.io/\n"
  },
  {
    "path": "submissions/Cortex.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/sagemaker/\nalts_names:\n- AWS SageMaker\ncategory: ML Ops\ncompany_name: Cortex\ndescription: Production infrastructure for machine learning\ngh_link: https://github.com/cortexlabs/cortex\nlink: https://www.cortex.dev/\n"
  },
  {
    "path": "submissions/CrateDB.yaml",
    "content": "alts_links:\n- https://kx.com/developers/\nalts_names:\n- Kdb+\ncategory: Timeseries database\ncompany_name: CrateDB\ndescription: Distributed SQL database for real-time analytics of time series data\ngh_link: '\"https://github.com/crate/crate\"'\nlink: https://crate.io/\n"
  },
  {
    "path": "submissions/CrowdSec.yaml",
    "content": "alts_links:\n- https://www.greynoise.io/\nalts_names:\n- GreyNoise\ncategory: Cybersecurity\ncompany_name: CrowdSec\ndescription: Collaborative IPS able to analyze visitor behavior and to provide an\n  adapted response to all kinds of attacks.\ngh_link: https://github.com/crowdsecurity/crowdsec\nlink: http://crowdsec.net/\n"
  },
  {
    "path": "submissions/Cube.js.yaml",
    "content": "alts_links:\n- https://looker.com/\nalts_names:\n- Looker\ncategory: Metrics store\ncompany_name: Cube.js\ndescription: Headless business intelligence suite\ngh_link: https://github.com/cube-js/cube.js\nlink: https://cube.dev/\n"
  },
  {
    "path": "submissions/Dagster.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Dagster\ndescription: Orchestration platform for data assets\ngh_link: https://github.com/dagster-io/dagster\nlink: https://dagster.io/\n"
  },
  {
    "path": "submissions/Databend.yaml",
    "content": "alts_links:\n- https://www.snowflake.com\nalts_names:\n- Snowflake\ncategory: Cloud Data Warehouse\ncompany_name: Databend\ndescription: Elastic and Workload-Aware Modern Cloud Data Warehouse\ngh_link: https://github.com/datafuselabs/databend\nlink: https://databend.rs\n"
  },
  {
    "path": "submissions/Decap_CMS.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Decap CMS\ndescription: Git-based CMS for static site generators\ngh_link: https://github.com/decaporg/decap-cms\nlink: https://www.decapcms.org/\n"
  },
  {
    "path": "submissions/Deepfence_ThreatMapper.yaml",
    "content": "alts_links:\n- https://www.paloaltonetworks.com/prisma/cloud\nalts_names:\n- Palo Alto Prisma\ncategory: Cloud-Native Application Protection Platform\ncompany_name: Deepfence ThreatMapper\ndescription: Apache v2, powerful runtime vulnerability and compliance scanner for\n  kubernetes, virtual machines, cloud and serverless.\ngh_link: https://github.com/deepfence/ThreatMapper\nlink: https://github.com/deepfence/ThreatMapper\n"
  },
  {
    "path": "submissions/Dendron.yaml",
    "content": "alts_links:\n- https://roamresearch.com/\nalts_names:\n- Roam Research\ncategory: Notetaking\ncompany_name: Dendron\ndescription: Knowledge base plugin for VS Code\ngh_link: https://github.com/dendronhq/dendron\nlink: https://www.dendron.so/\n"
  },
  {
    "path": "submissions/Directus.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Directus\ndescription: Data platform which wraps any database with an intuitive app\ngh_link: https://github.com/directus/directus\nlink: https://directus.io/\n"
  },
  {
    "path": "submissions/Discourse.yaml",
    "content": "alts_links:\n- https://tribe.so/\n- https://circle.so/\nalts_names:\n- Tribe\n- Circle\ncategory: Forum Software\ncompany_name: Discourse\ndescription: A platform for community discussion\ngh_link: https://github.com/discourse/discourse\nlink: https://www.discourse.org/\n"
  },
  {
    "path": "submissions/DocuSeal.yaml",
    "content": "alts_links:\n- https://www.docusign.com/\nalts_names:\n- DocuSign\ncategory: Digital Signature\ncompany_name: DocuSeal\ndescription: Digital Signing Infrastructure\ngh_link: https://github.com/docusealco/docuseal\nlink: https://docuseal.co\n"
  },
  {
    "path": "submissions/Documenso.yaml",
    "content": "alts_links:\n- https://www.docusign.com/\nalts_names:\n- DocuSign\ncategory: Digital Signature\ncompany_name: Documenso\ndescription: Digital Signing Infrastructure\ngh_link: https://github.com/documenso/documenso\nlink: https://documenso.com\n"
  },
  {
    "path": "submissions/Dokku.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Dokku\ndescription: An open source PAAS alternative to Heroku\ngh_link: https://github.com/dokku/dokku\nlink: https://dokku.com/\n"
  },
  {
    "path": "submissions/DoliCloud.yaml",
    "content": "alts_links:\n- https://www.oracle.com/erp\n- https://odoo.com/\n- https://dynamics.microsoft.com/\nalts_names:\n- Oracle Fusion ERP Cloud\n- Odoo\n- Microsoft Dynamics\ncategory: ERP\ncompany_name: DoliCloud\ndescription: ' Business management suite (ERP and CRM)'\ngh_link: https://github.com/Dolibarr/dolibarr\nlink: https://dolicloud.com)\n"
  },
  {
    "path": "submissions/Dub.yaml",
    "content": "alts_links:\n- https://bitly.com/\nalts_names:\n- Bitly\ncategory: Marketing SaaS\ncompany_name: Dub\ndescription: Open-source Bitly Alternative with built-in analytics\ngh_link: https://github.com/steven-tey/dub\nlink: https://dub.sh/\n"
  },
  {
    "path": "submissions/ERPNext.yaml",
    "content": "alts_links:\n- https://www.sap.com/products/business-one.html\n- https://odoo.com/\nalts_names:\n- SAP Business One\n- Odoo\ncategory: ERP\ncompany_name: ERPNext\ndescription: ' Agile, modern, module based Business management suite'\ngh_link: https://github.com/frappe/erpnext\nlink: https://erpnext.com)\n"
  },
  {
    "path": "submissions/Element.yaml",
    "content": "alts_links:\n- https://slack.com/\nalts_names:\n- Slack\ncategory: Messaging\ncompany_name: Element\ndescription: Enterprise communication platform\ngh_link: https://github.com/vector-im/element-web\nlink: https://element.io/\n"
  },
  {
    "path": "submissions/Encore.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Encore\ndescription: Backend Development Engine for cloud-based apps, APIs, and distributed\n  systems\ngh_link: https://github.com/encoredev/encore\nlink: https://encore.dev/\n"
  },
  {
    "path": "submissions/Evidence.yaml",
    "content": "alts_links:\n- https://looker.com/\nalts_names:\n- Looker\ncategory: Metrics store\ncompany_name: Evidence\ndescription: Lightweight BI using SQL and markdown\ngh_link: https://github.com/evidence-dev/evidence\nlink: https://evidence.dev/\n"
  },
  {
    "path": "submissions/Faraday.yaml",
    "content": "alts_links:\n- https://plextrac.com//\n- https://vulcan.io/\nalts_names:\n- Plextrac\n- Vulcan\ncategory: Cybersecurity\ncompany_name: Faraday\ndescription: Open Source Vulnerability Management and Orchestration Platform\ngh_link: https://github.com/infobyte/faraday\nlink: https://faradaysec.com\n"
  },
  {
    "path": "submissions/Filestash.yaml",
    "content": "alts_links:\n- https://www.dropbox.com/\n- https://drive.google.com/\nalts_names:\n- Dropbox\n- Google Drive\ncategory: File Hosting\ncompany_name: Filestash\ndescription: A file manager that let you manage your data anywhere it is located\ngh_link: https://github.com/mickael-kerjean/filestash\nlink: https://www.filestash.app/\n"
  },
  {
    "path": "submissions/Firecamp.yaml",
    "content": "alts_links:\n- https://www.postman.com/\nalts_names:\n- Postman\ncategory: API Platform\ncompany_name: Firecamp\ndescription: DX first open-source API devtool\ngh_link: https://github.com/firecamp-dev/firecamp\nlink: https://firecamp.dev/\n"
  },
  {
    "path": "submissions/Firezone.yaml",
    "content": "alts_links:\n- https://openvpn.net/access-server/\nalts_names:\n- OpenVPN Access Server\ncategory: Cybersecurity\ncompany_name: Firezone\ndescription: VPN Server & Firewall for teams\ngh_link: https://github.com/firezone/firezone\nlink: https://www.firez.one/\n"
  },
  {
    "path": "submissions/FlagSmith.yaml",
    "content": "alts_links:\n- https://launchdarkly.com/\nalts_names:\n- LaunchDarkly\ncategory: Feature flag and toggle management\ncompany_name: FlagSmith\ndescription: Feature Flag & Remote Config Service\ngh_link: https://github.com/Flagsmith/flagsmith\nlink: https://flagsmith.com/\n"
  },
  {
    "path": "submissions/Focalboard.yaml",
    "content": "alts_links:\n- https://trello.com/\n- https://www.notion.so/\n- https://asana.com/\nalts_names:\n- Trello\n- Notion\n- Asana\ncategory: Project Management\ncompany_name: Focalboard\ndescription: Alternative to Trello, Notion, and Asana\ngh_link: https://github.com/mattermost/focalboard\nlink: https://www.focalboard.com/\n"
  },
  {
    "path": "submissions/Fonoster.yaml",
    "content": "alts_links:\n- https://www.twilio.com/\nalts_names:\n- Twilio\ncategory: Communication\ncompany_name: Fonoster\ndescription: APIs for SMS, voice and video\ngh_link: https://github.com/fonoster/fonoster\nlink: https://fonoster.com/\n"
  },
  {
    "path": "submissions/FormKit.yaml",
    "content": "alts_links:\n- https://vueform.com/\n- https://www.typeform.com/\nalts_names:\n- Vueform\n- Typeform\ncategory: Form Building\ncompany_name: FormKit\ndescription: ' A software to help build attractive forms'\ngh_link: https://github.com/formkit/formkit\nlink: https://formkit.com/\n"
  },
  {
    "path": "submissions/Formbricks.yaml",
    "content": "alts_links:\n- https://www.typeform.com/\n- https://forms.google.com\n- https://react-hook-form.com/\nalts_names:\n- Typeform\n- Google Forms\n- React Hook Form\ncategory: Form Building\ncompany_name: Formbricks\ndescription: ' Build forms and receive & manage submission data in one platform '\ngh_link: https://github.com/formbricks/formbricks\nlink: https://formbricks.com/\n"
  },
  {
    "path": "submissions/Formio.yaml",
    "content": "alts_links:\n- https://vueform.com/\n- https://www.typeform.com/\nalts_names:\n- Vueform\n- Typeform\ncategory: Form Building\ncompany_name: Formio\ndescription: ' A Form and Data Management Platform for Progressive Web Applications'\ngh_link: https://github.com/formio/formio\nlink: https://form.io/\n"
  },
  {
    "path": "submissions/Fusio.yaml",
    "content": "alts_links:\n- https://www.postman.com/\nalts_names:\n- Postman\ncategory: API Platform\ncompany_name: Fusio\ndescription: API management platform\ngh_link: https://github.com/apioo/fusio\nlink: https://github.com/apioo/fusio\n"
  },
  {
    "path": "submissions/FusionAuth.yaml",
    "content": "alts_links:\n- https://www.okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: FusionAuth\ndescription: User authentication and session management framework\ngh_link: https://github.com/FusionAuth/fusionauth-containers\nlink: https://fusionauth.io/\n"
  },
  {
    "path": "submissions/Ghost.yaml",
    "content": "alts_links:\n- https://www.medium.com/\n- https://substack.com/\nalts_names:\n- Medium\n- Substack\ncategory: CMS\ncompany_name: Ghost\ndescription: Headless Node.js publishing platform\ngh_link: https://github.com/tryghost/ghost\nlink: https://ghost.org/\n"
  },
  {
    "path": "submissions/Gitpod.yaml",
    "content": "alts_links:\n- https://github.com/features/codespaces\nalts_names:\n- Codespaces\ncategory: Cloud Development Environment\ncompany_name: Gitpod\ndescription: Automated provisioning of cloud development environments with multiple\n  git providers & IDEs\ngh_link: https://github.com/gitpod-io/gitpod\nlink: https://gitpod.io\n"
  },
  {
    "path": "submissions/Glimesh.yaml",
    "content": "alts_links:\n- https://www.twitch.tv/\nalts_names:\n- Twitch\ncategory: Streaming\ncompany_name: Glimesh\ndescription: Live streaming platform\ngh_link: https://github.com/glimesh/glimesh.tv\nlink: https://glimesh.tv/\n"
  },
  {
    "path": "submissions/GoatCounter.yaml",
    "content": "alts_links:\n- https://analytics.google.com/\nalts_names:\n- Google Analytics\ncategory: Website analytics\ncompany_name: GoatCounter\ndescription: Google Analytics alternative\ngh_link: https://github.com/arp242/goatcounter\nlink: https://www.goatcounter.com/\n"
  },
  {
    "path": "submissions/Grafana.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: Grafana\ndescription: Observability and data visualization platform\ngh_link: https://github.com/grafana/grafana\nlink: https://grafana.com/\n"
  },
  {
    "path": "submissions/Gravitl.yaml",
    "content": "alts_links:\n- https://tailscale.com/\n- https://openvpn.net/\nalts_names:\n- Tailscale\n- OpenVPN\ncategory: Cybersecurity\ncompany_name: Gravitl\ndescription: WireGuard virtual networking platform (VPN)\ngh_link: https://github.com/gravitl/netmaker\nlink: https://gravitl.com\n"
  },
  {
    "path": "submissions/Graylog.yaml",
    "content": "alts_links:\n- https://www.splunk.com/\nalts_names:\n- Splunk\ncategory: Log Management\ncompany_name: Graylog\ndescription: Log management platform\ngh_link: https://github.com/Graylog2/graylog2-server\nlink: https://www.graylog.org/\n"
  },
  {
    "path": "submissions/Grouparoo.yaml",
    "content": "alts_links:\n- https://www.hightouch.io/\nalts_names:\n- Hightouch\ncategory: Reverse ETL\ncompany_name: Grouparoo\ndescription: Data synchronization framework\ngh_link: https://github.com/grouparoo/grouparoo\nlink: https://www.grouparoo.com/\n"
  },
  {
    "path": "submissions/GrowthBook.yaml",
    "content": "alts_links:\n- https://launchdarkly.com/\nalts_names:\n- LaunchDarkly\ncategory: Feature flag and toggle management\ncompany_name: GrowthBook\ndescription: Feature flags and A/B testing\ngh_link: https://github.com/growthbook/growthbook\nlink: https://www.growthbook.io/\n"
  },
  {
    "path": "submissions/Hanko.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Hanko\ndescription: Passkey-first authentication framework\ngh_link: https://github.com/teamhanko/hanko\nlink: https://www.hanko.io\n"
  },
  {
    "path": "submissions/Hoppscotch.yaml",
    "content": "alts_links:\n- https://www.postman.com/\nalts_names:\n- Postman\ncategory: API Platform\ncompany_name: Hoppscotch\ndescription: API development ecosystem\ngh_link: https://github.com/hoppscotch/hoppscotch\nlink: https://hoppscotch.io/\n"
  },
  {
    "path": "submissions/ILLA_Cloud.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: ILLA Cloud\ndescription: Low-code platform for developers to build internal tools in minutes.\ngh_link: https://github.com/illacloud/illa-builder\nlink: https://www.illacloud.com/\n"
  },
  {
    "path": "submissions/InfluxDB.yaml",
    "content": "alts_links:\n- https://kx.com/developers/\nalts_names:\n- Kdb+\ncategory: Timeseries database\ncompany_name: InfluxDB\ndescription: Database designed to process time series data\ngh_link: https://github.com/influxdata/influxdb\nlink: https://www.influxdata.com/\n"
  },
  {
    "path": "submissions/Jina.ai.yaml",
    "content": "alts_links:\n- https://www.algolia.com/\nalts_names:\n- Algolia\ncategory: Enterprise Search\ncompany_name: Jina.ai\ndescription: \"Neural search framework for \\U0001D656\\U0001D663\\U0001D66E kind of data\\\n  \\ (including images)\"\ngh_link: https://github.com/jina-ai/jina\nlink: https://jina.ai/\n"
  },
  {
    "path": "submissions/Jitsi.yaml",
    "content": "alts_links:\n- https://zoom.us/\nalts_names:\n- Zoom\ncategory: Video Conferencing\ncompany_name: Jitsi\ndescription: Video conferences platform and SDK\ngh_link: https://github.com/jitsi/jitsi-meet\nlink: https://jitsi.org/meet\n"
  },
  {
    "path": "submissions/Jitsu.yaml",
    "content": "alts_links:\n- https://segment.com/\nalts_names:\n- Segment\ncategory: Customer Data Platform\ncompany_name: Jitsu\ndescription: Fully-scriptable data ingestion engine for modern data teams\ngh_link: https://github.com/jitsucom/jitsu\nlink: https://jitsu.com/\n"
  },
  {
    "path": "submissions/Joplin.yaml",
    "content": "alts_links:\n- https://evernote.com/\n- hhttps://www.onenote.com/n\n- https://roamresearch.com/\nalts_names:\n- Evernote\n- Onenote\n- Roam Research\ncategory: Notetaking\ncompany_name: Joplin\ndescription: Secure, Cross-platform, Open-Source  Markdown Note Taking App\ngh_link: https://github.com/laurent22/joplin\nlink: https://joplinapp.org/\n"
  },
  {
    "path": "submissions/Keila.yaml",
    "content": "alts_links:\n- https://mailchimp.com\n- https://www.sendinblue.com\nalts_names:\n- Mailchimp\n- Sendinblue\ncategory: Email marketing\ncompany_name: Keila\ndescription: Email newsletter tool\ngh_link: https://github.com/pentacent/keila\nlink: https://www.keila.io/\n"
  },
  {
    "path": "submissions/Keploy.yaml",
    "content": "alts_links:\n- https://smartbear.com/\n- https://learning.postman.com/docs/running-collections/using-newman-cli/command-line-integration-with-newman/\nalts_names:\n- Smartbear\n- Newman\ncategory: API Platform\ncompany_name: Keploy\ndescription: e2e Testing and Data Mocking\ngh_link: https://github.com/keploy/keploy\nlink: https://keploy.io/\n"
  },
  {
    "path": "submissions/Kestra.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Kestra\ndescription: orchestration and scheduling platform\ngh_link: https://github.com/kestra-io/kestra\nlink: https://kestra.io/\n"
  },
  {
    "path": "submissions/Keycloak.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Keycloak\ndescription: User authentication and session management framework\ngh_link: https://github.com/keycloak/keycloak\nlink: https://www.cloud-iam.com/\n"
  },
  {
    "path": "submissions/Kuzzle.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Kuzzle\ndescription: Backend server with REST APIs to manage core backend needs\ngh_link: https://github.com/kuzzleio/kuzzle\nlink: https://kuzzle.io/kuzzle-backend/\n"
  },
  {
    "path": "submissions/Lago.yaml",
    "content": "alts_links:\n- https://stripe.com/billing\n- https://www.chargebee.com/\nalts_names:\n- Stripe Billing\n- Chargebee\ncategory: Financial Service\ncompany_name: Lago\ndescription: Open Source Billing API\ngh_link: https://github.com/getlago/lago\nlink: https://www.getlago.com/\n"
  },
  {
    "path": "submissions/LibreSign.yaml",
    "content": "alts_links:\n- https://www.docusign.com/\nalts_names:\n- DocuSign\ncategory: Digital Signature\ncompany_name: LibreSign\ndescription: Digital document signer\ngh_link: https://github.com/LibreSign/libresign\nlink: https://libresign.coop/\n"
  },
  {
    "path": "submissions/LightDash.yaml",
    "content": "alts_links:\n- https://looker.com/\nalts_names:\n- Looker\ncategory: Metrics store\ncompany_name: LightDash\ndescription: Low-code metrics layer, alternative to Looker\ngh_link: https://github.com/lightdash/lightdash\nlink: https://www.lightdash.com/\n"
  },
  {
    "path": "submissions/LimeSurvey.yaml",
    "content": "alts_links:\n- https://www.surveymonkey.com/\n- https://www.qualtrics.com/\nalts_names:\n- SurveyMonkey\n- Qualtrics\ncategory: Surveys\ncompany_name: LimeSurvey\ndescription: Online survey platform\ngh_link: https://github.com/LimeSurvey/LimeSurvey\nlink: https://www.limesurvey.org/\n"
  },
  {
    "path": "submissions/LiveKit.yaml",
    "content": "alts_links:\n- https://www.twilio.com/\n- https://agora.io/\nalts_names:\n- Twilio\n- Agora\ncategory: Video Conferencing\ncompany_name: LiveKit\ndescription: SFU and SDKs for high-performance, scalable WebRTC\ngh_link: https://github.com/livekit/livekit-server\nlink: https://livekit.io/\n"
  },
  {
    "path": "submissions/Logseq.yaml",
    "content": "alts_links:\n- https://roamresearch.com/\nalts_names:\n- Roam Research\ncategory: Notetaking\ncompany_name: Logseq\ndescription: Knowledge base manager\ngh_link: https://github.com/logseq/logseq\nlink: https://logseq.com/\n"
  },
  {
    "path": "submissions/Lowdefy.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: Lowdefy\ndescription: YAML-based low-code platform for internal tools\ngh_link: https://github.com/lowdefy/lowdefy\nlink: https://lowdefy.com/\n"
  },
  {
    "path": "submissions/LunaTrace.yaml",
    "content": "alts_links:\n- https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/\n- https://snyk.io/\n- https://www.sonatype.com/products/vulnerability-scanner\nalts_names:\n- GitHub Dependabot\n- Snyk.io\n- SonaType Nexus\ncategory: Cybersecurity\ncompany_name: LunaTrace\ndescription: Dependency Vulnerability Scanner and SBOM Inventory\ngh_link: https://github.com/lunasec-io/lunasec\nlink: https://www.lunasec.io/\n"
  },
  {
    "path": "submissions/MLCraft.yaml",
    "content": "alts_links:\n- https://looker.com/\nalts_names:\n- Looker\ncategory: Metrics store\ncompany_name: MLCraft\ndescription: Low-code metrics layer, alternative to Looker\ngh_link: https://github.com/mlcraft-io/mlcraft\nlink: http://mlcraft.io/\n"
  },
  {
    "path": "submissions/Manticore_Search.yaml",
    "content": "alts_links:\n- https://www.elastic.co/elastic-stack/\nalts_names:\n- Elastic Cloud\ncategory: Enterprise Search\ncompany_name: Manticore Search\ndescription: Easy to use open source fast database for search\ngh_link: https://github.com/manticoresoftware/manticoresearch/\nlink: https://manticoresearch.com/\n"
  },
  {
    "path": "submissions/Matano.yaml",
    "content": "alts_links:\n- https://www.splunk.com/\n- https://www.elastic.co/elastic-stack/\nalts_names:\n- Splunk\n- Elastic Cloud\ncategory: Cybersecurity\ncompany_name: Matano\ndescription: Open source cloud-native security lake platform (SIEM alternative) for\n  threat hunting, detection & response, and cybersecurity analytics at petabyte scale\n  on AWS\ngh_link: https://github.com/matanolabs/matano\nlink: https://www.matano.dev\n"
  },
  {
    "path": "submissions/Matomo.yaml",
    "content": "alts_links:\n- https://analytics.google.com/\nalts_names:\n- Google Analytics\ncategory: Website analytics\ncompany_name: Matomo\ndescription: Google Analytics alternative\ngh_link: https://github.com/matomo-org/matomo\nlink: https://matomo.org/\n"
  },
  {
    "path": "submissions/Mattermost.yaml",
    "content": "alts_links:\n- https://slack.com/\nalts_names:\n- Slack\ncategory: Messaging\ncompany_name: Mattermost\ndescription: Enterprise communication platform for developers\ngh_link: https://github.com/mattermost/mattermost-server\nlink: https://mattermost.com/\n"
  },
  {
    "path": "submissions/Medusa.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Medusa\ndescription: Headless e-commerce platform\ngh_link: https://github.com/medusajs/medusa\nlink: https://www.medusajs.com/\n"
  },
  {
    "path": "submissions/Meilisearch.yaml",
    "content": "alts_links:\n- https://www.algolia.com/\nalts_names:\n- Algolia\ncategory: Enterprise Search\ncompany_name: Meilisearch\ndescription: Typo tolerant search engine\ngh_link: https://github.com/meilisearch/meilisearch\nlink: https://www.meilisearch.com/\n"
  },
  {
    "path": "submissions/Memgraph.yaml",
    "content": "alts_links:\n- https://www.tigergraph.com/\n- https://aws.amazon.com/neptune/\nalts_names:\n- TigerGraph\n- Amazon Neptune\ncategory: Graph database\ncompany_name: Memgraph\ndescription: In-memory graph database\ngh_link: https://github.com/memgraph/memgraph\nlink: https://memgraph.com/\n"
  },
  {
    "path": "submissions/Metabase.yaml",
    "content": "alts_links:\n- https://www.tableau.com/\n- https://powerbi.microsoft.com/\n- https://datastudio.google.com/\nalts_names:\n- Tableau\n- Power BI\n- DataStudio\ncategory: Business Intelligence\ncompany_name: Metabase\ndescription: Business intelligence software\ngh_link: https://github.com/metabase/metabase\nlink: https://www.metabase.com/\n"
  },
  {
    "path": "submissions/Metarank.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/personalize/\n- https://www.tecton.ai/\nalts_names:\n- AWS Personalize\n- Tecton\ncategory: ML Ops\ncompany_name: Metarank\ndescription: AutoML style personalized ranking\ngh_link: https://github.com/metarank/metarank\nlink: https://metarank.ai\n"
  },
  {
    "path": "submissions/MetriQL.yaml",
    "content": "alts_links:\n- https://looker.com/\nalts_names:\n- Looker\ncategory: Metrics store\ncompany_name: MetriQL\ndescription: Headless business intelligence suite\ngh_link: https://github.com/metriql/metriql\nlink: https://metriql.com/\n"
  },
  {
    "path": "submissions/MindsDB.yaml",
    "content": "alts_links:\n- https://cloud.google.com/bigquery-ml/docs\nalts_names:\n- BigQuery ML\ncategory: ML Ops\ncompany_name: MindsDB\ndescription: In-database machine learning platform\ngh_link: https://github.com/mindsdb/mindsdb\nlink: https://mindsdb.com/\n"
  },
  {
    "path": "submissions/Minio.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/s3/\nalts_names:\n- Amazon S3\ncategory: Cloud Storage\ncompany_name: Minio\ndescription: S3 compatible object storage\ngh_link: https://github.com/minio/minio\nlink: https://min.io/\n"
  },
  {
    "path": "submissions/Modulz.yaml",
    "content": "alts_links:\n- https://www.figma.com/\nalts_names:\n- Figma\ncategory: Design\ncompany_name: Modulz\ndescription: Code-based tool for designing and prototyping\ngh_link: https://github.com/radix-ui/primitives\nlink: https://www.modulz.app/\n"
  },
  {
    "path": "submissions/N8N.yaml",
    "content": "alts_links:\n- https://zapier.com/\nalts_names:\n- Zapier\ncategory: Workflow automation\ncompany_name: N8N\ndescription: Node-based workflow automation tool for developers\ngh_link: https://github.com/n8n-io/n8n\nlink: https://n8n.io/\n"
  },
  {
    "path": "submissions/Neo4j.yaml",
    "content": "alts_links:\n- https://www.tigergraph.com/\n- https://aws.amazon.com/neptune/\nalts_names:\n- TigerGraph\n- Amazon Neptune\ncategory: Graph database\ncompany_name: Neo4j\ndescription: Graph database platform\ngh_link: https://github.com/neo4j/neo4j\nlink: http://neo4j.com/\n"
  },
  {
    "path": "submissions/NetBird.yaml",
    "content": "alts_links:\n- https://tailscale.com/\n- https://openvpn.net/\nalts_names:\n- Tailscale\n- OpenVPN\ncategory: Cybersecurity\ncompany_name: NetBird\ndescription: Zero Configuration Mesh VPN for Business\ngh_link: https://github.com/netbirdio/netbird\nlink: https://netbird.io\n"
  },
  {
    "path": "submissions/Netdata.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: Netdata\ndescription: Application monitoring and observability platform\ngh_link: https://github.com/netdata/netdata\nlink: https://www.netdata.cloud\n"
  },
  {
    "path": "submissions/Netlify_CMS.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Netlify CMS\ndescription: Git-based CMS for static site generators\ngh_link: https://github.com/netlify/netlify-cms\nlink: https://www.netlifycms.org/\n"
  },
  {
    "path": "submissions/Nextcloud.yaml",
    "content": "alts_links:\n- https://www.dropbox.com/\n- https://drive.google.com/\nalts_names:\n- Dropbox\n- Google Drive\ncategory: File Hosting\ncompany_name: Nextcloud\ndescription: A personal cloud which runs on your own server\ngh_link: https://github.com/nextcloud/server\nlink: https://nextcloud.com/\n"
  },
  {
    "path": "submissions/Nhost.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Nhost\ndescription: Backend server with GraphQL\ngh_link: https://github.com/nhost/nhost\nlink: https://nhost.io/\n"
  },
  {
    "path": "submissions/NocoDB.yaml",
    "content": "alts_links:\n- https://www.airtable.com/\nalts_names:\n- AirTable\ncategory: No-code database\ncompany_name: NocoDB\ndescription: No-code database and Airtable alternative\ngh_link: https://github.com/nocodb/nocodb\nlink: https://www.nocodb.com/\n"
  },
  {
    "path": "submissions/Notabase.yaml",
    "content": "alts_links:\n- https://www.notion.so/\n- https://roamresearch.com/\nalts_names:\n- Notion\n- Roam Research\ncategory: Notetaking\ncompany_name: Notabase\ndescription: Powerful and easy-to-use note-taking app for networked thinking\ngh_link: https://github.com/churichard/notabase\nlink: https://notabase.io\n"
  },
  {
    "path": "submissions/Notesnook.yaml",
    "content": "alts_links:\n- https://evernote.com/\n- https://www.onenote.com/n\nalts_names:\n- Evernote\n- OneNote\ncategory: Notetaking\ncompany_name: Notesnook\ndescription: A fully open source & end-to-end encrypted note taking alternative to\n  Evernote.\ngh_link: https://github.com/streetwriters/notesnook\nlink: https://notesnook.com/\n"
  },
  {
    "path": "submissions/Novu.yaml",
    "content": "alts_links:\n- https://www.courier.com/\n- https://www.magicbell.com/\n- https://knock.app/\nalts_names:\n- Courier\n- MagicBell\n- Knock\ncategory: Communication\ncompany_name: Novu\ndescription: Components and APIs for email, sms, direct and push\ngh_link: https://github.com/novuhq/novu\nlink: https://novu.co/\n"
  },
  {
    "path": "submissions/Nuclei.yaml",
    "content": "alts_links:\n- https://www.tenable.com/products/nessus\nalts_names:\n- Tenable Nessus\ncategory: Cybersecurity\ncompany_name: Nuclei\ndescription: Vulnerability scanner based on simple YAML based DSL\ngh_link: https://github.com/projectdiscovery/nuclei\nlink: https://nuclei.projectdiscovery.io/\n"
  },
  {
    "path": "submissions/OPAL_(Permit.io).yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: OPAL (Permit.io)\ndescription: Authorization administration framework (Open Policy)\ngh_link: https://github.com/permitio/opal\nlink: https://www.opal.ac/\n"
  },
  {
    "path": "submissions/Objectiv.yaml",
    "content": "alts_links:\n- https://analytics.google.com/analytics/web/\n- https://amplitude.com/\n- https://mixpanel.com/\nalts_names:\n- Google Analytics\n- Amplitude\n- Mixpanel\ncategory: Product Analytics\ncompany_name: Objectiv\ndescription: Product analytics infrastructure\ngh_link: https://github.com/objectiv/objectiv-analytics\nlink: https://objectiv.io/\n"
  },
  {
    "path": "submissions/OmniEdge.yaml",
    "content": "alts_links:\n- https://openvpn.net\n- https://ngrok.com\n- https://www.oray.com\n- https://aws.amazon.com/vpc/\nalts_names:\n- OpenVPN\n- Ngrok\n- Oray\n- AWS VPC\ncategory: VPN as a Service\ncompany_name: OmniEdge\ndescription: 'No-code P2P layer-2 mesh VPN for enterprise with zero config '\ngh_link: https://github.com/omniedgeio/omniedge\nlink: https://omniedge.io/\n"
  },
  {
    "path": "submissions/OpenBB_Terminal.yaml",
    "content": "alts_links:\n- https://www.bloomberg.com/\nalts_names:\n- Bloomberg\ncategory: Financial Service\ncompany_name: OpenBB Terminal\ndescription: Investment research for everyone\ngh_link: https://github.com/GamestonkTerminal/GamestonkTerminal\nlink: https://github.com/openbb-finance/OpenBBTerminal\n"
  },
  {
    "path": "submissions/OpenProject.yaml",
    "content": "alts_links:\n- https://asana.com/\n- https://trello.com/\nalts_names:\n- Asana\n- Trello\ncategory: Project Management\ncompany_name: OpenProject\ndescription: Project management software\ngh_link: https://github.com/opf/openproject\nlink: https://www.openproject.org/\n"
  },
  {
    "path": "submissions/OpenReplay.yaml",
    "content": "alts_links:\n- https://logrocket.com/\n- https://www.fullstory.com/\nalts_names:\n- LogRocket\n- FullStory\ncategory: Session replay software\ncompany_name: OpenReplay\ndescription: Session replay stack for developers\ngh_link: https://github.com/openreplay/openreplay\nlink: https://openreplay.com/\n"
  },
  {
    "path": "submissions/OpenStatus.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: OpenStatus\ndescription: Synthetic monitoring platform\ngh_link: https://github.com/openstatusHQ/openstatus\nlink: https://openstatus.dev/\n"
  },
  {
    "path": "submissions/OpenVidu.yaml",
    "content": "alts_links:\n- https://www.twilio.com/\nalts_names:\n- Twilio\ncategory: Video Conferencing\ncompany_name: OpenVidu\ndescription: Platform and SDKs to build on-premises WebRTC video conferences\ngh_link: https://github.com/OpenVidu/openvidu\nlink: https://openvidu.io/\n"
  },
  {
    "path": "submissions/Orchest.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Orchest\ndescription: No-code data pipelines builder\ngh_link: https://github.com/orchest/orchest\nlink: https://www.orchest.io/\n"
  },
  {
    "path": "submissions/Ory.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Ory\ndescription: Identity platform\ngh_link: https://github.com/ory/kratos\nlink: https://www.ory.sh/\n"
  },
  {
    "path": "submissions/Oso.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Oso\ndescription: Authorization building framework\ngh_link: https://github.com/osohq/oso\nlink: https://www.osohq.com/\n"
  },
  {
    "path": "submissions/Otomi.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Otomi\ndescription: Self-hosted PaaS for Kubernetes\ngh_link: https://github.com/redkubes/otomi-core\nlink: https://otomi.io\n"
  },
  {
    "path": "submissions/Outline.yaml",
    "content": "alts_links:\n- https://notion.so\nalts_names:\n- Notion\ncategory: Notetaking\ncompany_name: Outline\ndescription: Wiki and knowledge base\ngh_link: https://github.com/outline/outline\nlink: https://www.getoutline.com/\n"
  },
  {
    "path": "submissions/Owncloud.yaml",
    "content": "alts_links:\n- https://www.dropbox.com/\n- https://drive.google.com/\nalts_names:\n- Dropbox\n- Google Drive\ncategory: File Hosting\ncompany_name: Owncloud\ndescription: A personal cloud which runs on your own server\ngh_link: https://github.com/owncloud/core\nlink: https://owncloud.com/\n"
  },
  {
    "path": "submissions/Padloc.yaml",
    "content": "alts_links:\n- https://1password.com/\nalts_names:\n- 1Password\ncategory: Password manager\ncompany_name: Padloc\ndescription: Password manager for teams and individuals\ngh_link: https://github.com/padloc/padloc\nlink: https://padloc.app/\n"
  },
  {
    "path": "submissions/Papercups.yaml",
    "content": "alts_links:\n- https://www.intercom.com/\n- https://www.zendesk.com/\nalts_names:\n- Intercom\n- Zendesk\ncategory: Customer Engagement\ncompany_name: Papercups\ndescription: Live chat widget\ngh_link: https://github.com/papercups-io/papercups\nlink: https://papercups.io/\n"
  },
  {
    "path": "submissions/Passbolt.yaml",
    "content": "alts_links:\n- https://1password.com/\nalts_names:\n- 1Password\ncategory: Password manager\ncompany_name: Passbolt\ndescription: Password manager for teams and individuals\ngh_link: https://github.com/passbolt/passbolt_api\nlink: https://www.passbolt.com/\n"
  },
  {
    "path": "submissions/Penpot.yaml",
    "content": "alts_links:\n- https://www.figma.com/\nalts_names:\n- Figma\ncategory: Design\ncompany_name: Penpot\ndescription: Design & prototyping platform\ngh_link: https://github.com/penpot/penpot\nlink: https://penpot.app/\n"
  },
  {
    "path": "submissions/Peppermint.yaml",
    "content": "alts_links:\n- https://www.zendesk.co.uk/\nalts_names:\n- Zendesk\ncategory: Helpdesk Solution\ncompany_name: Peppermint\ndescription: Ticket Management & Helpdesk system\ngh_link: https://github.com/Peppermint-Lab/peppermint\nlink: https://peppermint.sh\n"
  },
  {
    "path": "submissions/PingCAP.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/rds/aurora/\n- https://cloud.google.com/spanner/\nalts_names:\n- Amazon Aurora\n- Google Cloud Spanner\ncategory: Relational database\ncompany_name: PingCAP\ndescription: NewSQL database that supports HTAP workloads\ngh_link: https://github.com/pingcap/tidb\nlink: https://en.pingcap.com/\n"
  },
  {
    "path": "submissions/Pipedream.yaml",
    "content": "alts_links:\n- https://zapier.com/\n- https://www.integromat.com/\nalts_names:\n- Zapier\n- Integromat\ncategory: Workflow automation\ncompany_name: Pipedream\ndescription: Workflow automation and API integration platform\ngh_link: https://github.com/PipedreamHQ/pipedream\nlink: https://pipedream.com/\n"
  },
  {
    "path": "submissions/Plane.yaml",
    "content": "alts_links:\n- https://linear.app/\n- https://www.atlassian.com/software/jira\n- https://trello.com/\n- https://height.app/\nalts_names:\n- Linear\n- JIRA\n- Trello\n- Height\ncategory: Project Management\ncompany_name: Plane\ndescription: Alternative to Linear, JIRA, Trello and Height\ngh_link: https://github.com/makeplane/plane\nlink: https://plane.so/\n"
  },
  {
    "path": "submissions/Plasmic.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Plasmic\ndescription: The headless page builder for singe-page frameworks\ngh_link: https://github.com/plasmicapp/plasmic\nlink: https://plasmic.app/\n"
  },
  {
    "path": "submissions/Plausible.yaml",
    "content": "alts_links:\n- https://analytics.google.com/\nalts_names:\n- Google Analytics\ncategory: Website analytics\ncompany_name: Plausible\ndescription: Google Analytics alternative\ngh_link: https://github.com/plausible/analytics\nlink: https://plausible.io/\n"
  },
  {
    "path": "submissions/Ploomber.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/sagemaker/\nalts_names:\n- AWS SageMaker\ncategory: ML Ops\ncompany_name: Ploomber\ndescription: YAML-based pipeline builder for ML models\ngh_link: https://github.com/ploomber/ploomber\nlink: https://ploomber.io/\n"
  },
  {
    "path": "submissions/PocketBase.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: PocketBase\ndescription: Backend server with REST APIs to manage core backend needs\ngh_link: https://github.com/pocketbase/pocketbase\nlink: https://pocketbase.io/\n"
  },
  {
    "path": "submissions/Porter.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Porter\ndescription: Kubernetes powered PaaS that runs in your own cloud\ngh_link: https://github.com/porter-dev/porter\nlink: https://porter.run/\n"
  },
  {
    "path": "submissions/PostHog.yaml",
    "content": "alts_links:\n- https://amplitude.com/\n- https://mixpanel.com/\nalts_names:\n- Amplitude\n- MixPanel\ncategory: Product Analytics\ncompany_name: PostHog\ndescription: Product analytics platform\ngh_link: https://github.com/PostHog/posthog\nlink: https://posthog.com/\n"
  },
  {
    "path": "submissions/Postiz.yaml",
    "content": "alts_links:\n- https://buffer.com/\n- https://hootsuite.com/\nalts_names:\n- Buffer\n- Hootsuite\ncategory: Social Media\ncompany_name: Postiz\ndescription: Self-hosted social media scheduling tool\ngh_link: https://github.com/gitroomhq/postiz-app\nlink: https://postiz.com\n"
  },
  {
    "path": "submissions/Prefect.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Prefect\ndescription: Data orchestration platform for a modern data stack\ngh_link: https://github.com/prefecthq/prefect\nlink: https://www.prefect.io/\n"
  },
  {
    "path": "submissions/Preset.yaml",
    "content": "alts_links:\n- https://powerbi.microsoft.com/\n- https://www.tableau.com/\n- https://mode.com/\nalts_names:\n- PowerBI\n- Tableau\n- Mode Analytics\ncategory: Business Intelligence\ncompany_name: Preset\ndescription: Modern BI platform powered by Apache Superset\ngh_link: https://github.com/apache/superset\nlink: https://www.preset.io\n"
  },
  {
    "path": "submissions/Pulumi.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Pulumi\ndescription: Universal Infrastructure as Code\ngh_link: https://github.com/pulumi/pulumi\nlink: https://www.pulumi.com/\n"
  },
  {
    "path": "submissions/Qdrant.yaml",
    "content": "alts_links:\n- https://cloud.google.com/vertex-ai\n- https://www.algolia.com/\nalts_names:\n- Google Vertex AI\n- Algolia\ncategory: Enterprise Search\ncompany_name: Qdrant\ndescription: Vector similarity search engine with extended filtering support\ngh_link: https://github.com/qdrant/qdrant\nlink: https://qdrant.tech/\n"
  },
  {
    "path": "submissions/Qovery.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Qovery\ndescription: Kubernetes powered PaaS that runs in your own cloud\ngh_link: https://github.com/Qovery/engine\nlink: https://www.qovery.com/\n"
  },
  {
    "path": "submissions/QuestDB.yaml",
    "content": "alts_links:\n- https://kx.com/developers/\nalts_names:\n- Kdb+\ncategory: Timeseries database\ncompany_name: QuestDB\ndescription: Database designed to process time series data\ngh_link: https://github.com/questdb/questdb\nlink: https://questdb.io/\n"
  },
  {
    "path": "submissions/Quickwit.yaml",
    "content": "alts_links:\n- https://www.elastic.co/elastic-stack/\nalts_names:\n- Elastic Cloud\ncategory: Log Management\ncompany_name: Quickwit\ndescription: Cloud-native log management & analytics\ngh_link: https://github.com/quickwit-oss/quickwit\nlink: https://quickwit.io/\n"
  },
  {
    "path": "submissions/RoboCorp.yaml",
    "content": "alts_links:\n- https://www.uipath.com/\nalts_names:\n- UiPath\ncategory: Robotic Process Automation (RPA)\ncompany_name: RoboCorp\ndescription: Set of tooling that allows to create automation packages\ngh_link: https://github.com/robocorp/rcc\nlink: https://robocorp.com/\n"
  },
  {
    "path": "submissions/Rocket.chat.yaml",
    "content": "alts_links:\n- https://slack.com/\nalts_names:\n- Slack\ncategory: Messaging\ncompany_name: Rocket.chat\ndescription: Enterprise communication platform\ngh_link: https://github.com/RocketChat/Rocket.Chat\nlink: https://rocket.chat/\n"
  },
  {
    "path": "submissions/Rowy.yaml",
    "content": "alts_links:\n- https://www.airtable.com/\nalts_names:\n- AirTable\ncategory: No-code database\ncompany_name: Rowy\ndescription: Extendable Airtable-like spreadsheet UI for databases\ngh_link: https://github.com/rowyio/rowy\nlink: https://www.rowy.io/\n"
  },
  {
    "path": "submissions/Rudderstack.yaml",
    "content": "alts_links:\n- https://segment.com/\nalts_names:\n- Segment\ncategory: Customer Data Platform\ncompany_name: Rudderstack\ndescription: Customer data platform for developers\ngh_link: https://github.com/rudderlabs/rudder-server\nlink: https://rudderstack.com/\n"
  },
  {
    "path": "submissions/RustDesk.yaml",
    "content": "alts_links:\n- https://teamviewer.com\nalts_names:\n- TeamViewer\ncategory: Remote Desktop Application\ncompany_name: RustDesk\ndescription: Open source virtual / remote desktop infrastructure for everyone\ngh_link: https://github.com/rustdesk/rustdesk\nlink: https://rustdesk.com/\n"
  },
  {
    "path": "submissions/Saleor.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Saleor\ndescription: Headless e-commerce platform\ngh_link: https://github.com/saleor/saleor\nlink: https://saleor.io/\n"
  },
  {
    "path": "submissions/SeMI.yaml",
    "content": "alts_links:\n- https://cloud.google.com/vertex-ai\n- https://www.algolia.com/\nalts_names:\n- Google Vertex AI\n- Algolia\ncategory: Enterprise Search\ncompany_name: SeMI\ndescription: Real-time vector search engine\ngh_link: https://github.com/semi-technologies/weaviate\nlink: https://www.semi.technology/)'s [Weaviat\n"
  },
  {
    "path": "submissions/Seldon.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/sagemaker/\n- https://cloud.google.com/vertex-ai\nalts_names:\n- AWS SageMaker\n- Google Vertex AI\ncategory: ML Ops\ncompany_name: Seldon\ndescription: Deployment & monitoring for machine learning at scale\ngh_link: https://github.com/SeldonIO/seldon-core\nlink: https://seldon.io/\n"
  },
  {
    "path": "submissions/Selefra.yaml",
    "content": "alts_links:\n- https://fivetran.com/\nalts_names:\n- Fivetran\ncategory: ELT / ETL\ncompany_name: Selefra\ndescription: An open-source policy-as-code software that provides analytics for multi-cloud\n  and SaaS.\ngh_link: https://github.com/selefra/selefra\nlink: https://www.selefra.io/\n"
  },
  {
    "path": "submissions/Sentry.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: Sentry\ndescription: Application monitoring with a focus on error reporting\ngh_link: https://github.com/getsentry/sentry\nlink: https://sentry.io/\n"
  },
  {
    "path": "submissions/Shuup.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Shuup\ndescription: Headless e-commerce platform\ngh_link: https://github.com/shuup/shuup\nlink: https://shuup.com\n"
  },
  {
    "path": "submissions/Signoz.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: Signoz\ndescription: Application monitoring and observability platform\ngh_link: https://github.com/signoz/signoz\nlink: https://signoz.io/\n"
  },
  {
    "path": "submissions/Space_Cloud.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: Space Cloud\ndescription: Serverless cloud deployment platform\ngh_link: https://github.com/spacecloud-io/space-cloud\nlink: https://space-cloud.io/\n"
  },
  {
    "path": "submissions/Spacedrive.yaml",
    "content": "alts_links:\n- https://www.dropbox.com/\n- https://drive.google.com/\nalts_names:\n- Dropbox\n- Google Drive\ncategory: File Hosting\ncompany_name: Spacedrive\ndescription: Cross-platform file manager, powered by a virtual distributed filesystem\n  (VDFS) written in Rust\ngh_link: https://github.com/spacedriveapp/spacedrive\nlink: https://spacedrive.com/\n"
  },
  {
    "path": "submissions/Step_CI.yaml",
    "content": "alts_links:\n- https://www.checklyhq.com\n- https://www.postman.com/\nalts_names:\n- Checkly\n- Postman\ncategory: API Platform\ncompany_name: Step CI\ndescription: API Testing and Monitoring\ngh_link: https://github.com/stepci/stepci\nlink: https://stepci.com/\n"
  },
  {
    "path": "submissions/Storj.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/s3/\nalts_names:\n- Amazon S3\ncategory: Cloud Storage\ncompany_name: Storj\ndescription: Decentralized cloud storage\ngh_link: https://github.com/storj/storj\nlink: https://www.storj.io/\n"
  },
  {
    "path": "submissions/Strapi.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Strapi\ndescription: Node.js Headless CMS to build customisable APIs\ngh_link: https://github.com/strapi/strapi\nlink: https://strapi.io/\n"
  },
  {
    "path": "submissions/Sulu.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Sulu\ndescription: Modern Symfony based CMS\ngh_link: https://github.com/sulu/sulu\nlink: https://sulu.io/\n"
  },
  {
    "path": "submissions/Supabase.yaml",
    "content": "alts_links:\n- https://firebase.google.com/\nalts_names:\n- Firebase\ncategory: Backend as a service\ncompany_name: Supabase\ndescription: Backend server with REST APIs to manage core backend needs\ngh_link: https://github.com/supabase/supabase\nlink: https://supabase.io/\n"
  },
  {
    "path": "submissions/Supertokens.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Supertokens\ndescription: User authentication and session management framework\ngh_link: https://github.com/supertokens/supertokens-core\nlink: https://supertokens.io/\n"
  },
  {
    "path": "submissions/Svix.yaml",
    "content": "alts_links:\n- https://pusher.com/\nalts_names:\n- Pusher\ncategory: Webhooks\ncompany_name: Svix\ndescription: Webhooks as a Service\ngh_link: https://github.com/svix/svix-webhooks\nlink: https://www.svix.com/\n"
  },
  {
    "path": "submissions/Swetrix.yaml",
    "content": "alts_links:\n- https://analytics.google.com/\nalts_names:\n- Google Analytics\ncategory: Website analytics\ncompany_name: Swetrix\ndescription: Google Analytics alternative\ngh_link: https://github.com/swetrix/swetrix-js\nlink: https://swetrix.com\n"
  },
  {
    "path": "submissions/Sylius.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Sylius\ndescription: Headless e-commerce platform\ngh_link: https://github.com/sylius/sylius\nlink: https://sylius.com/\n"
  },
  {
    "path": "submissions/TDengine.yaml",
    "content": "alts_links:\n- https://kx.com/developers/\nalts_names:\n- Kdb+\ncategory: Timeseries database\ncompany_name: TDengine\ndescription: Database designed to process time series data\ngh_link: https://github.com/taosdata/TDengine\nlink: https://tdengine.com/?en\n"
  },
  {
    "path": "submissions/Taiga.yaml",
    "content": "alts_links:\n- https://asana.com/\n- https://trello.com/\n- https://www.atlassian.com/software/jira\nalts_names:\n- Asana\n- Trello\n- Jira\ncategory: Project Management\ncompany_name: Taiga\ndescription: Project management software\ngh_link: https://github.com/kaleidos-ventures/taiga-docker\nlink: https://www.taiga.io/\n"
  },
  {
    "path": "submissions/Temporal.yaml",
    "content": "alts_links:\n- https://zapier.com/\nalts_names:\n- Zapier\ncategory: Workflow automation\ncompany_name: Temporal\ndescription: Workflows as code platform\ngh_link: https://github.com/temporalio/temporal\nlink: https://temporal.io/\n"
  },
  {
    "path": "submissions/TerminusDB.yaml",
    "content": "alts_links:\n- https://www.tigergraph.com/\n- https://aws.amazon.com/neptune/\nalts_names:\n- TigerGraph\n- Amazon Neptune\ncategory: Graph database\ncompany_name: TerminusDB\ndescription: Knowledge graph and document store\ngh_link: https://github.com/terminusdb/terminusdb\nlink: https://terminusdb.com/\n"
  },
  {
    "path": "submissions/TimescaleDB.yaml",
    "content": "alts_links:\n- https://kx.com/developers/\nalts_names:\n- Kdb+\ncategory: Timeseries database\ncompany_name: TimescaleDB\ndescription: Database designed to process time series data\ngh_link: https://github.com/timescale/timescaledb\nlink: https://www.timescale.com/\n"
  },
  {
    "path": "submissions/Tina.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Tina\ndescription: Visual editor for React websites\ngh_link: https://github.com/tinacms/tinacms\nlink: https://tina.io/\n"
  },
  {
    "path": "submissions/Tinode.yaml",
    "content": "alts_links:\n- https://www.whatsapp.com/\n- https://www.telegram.org/\nalts_names:\n- WhatsApp\n- Telegram\ncategory: Messaging\ncompany_name: Tinode\ndescription: General instant messaging\ngh_link: https://github.com/tinode/chat\nlink: https://tinode.co/\n"
  },
  {
    "path": "submissions/Tolgee.yaml",
    "content": "alts_links:\n- https://www.lokalise.com/\n- https://www.transifex.com/\n- https://crowdin.com/\n- https://poeditor.com/\nalts_names:\n- Lokalise\n- Transifex\n- Crowdin\n- POEditor\ncategory: Localization (i18n)\ncompany_name: Tolgee\ndescription: Developer & translator friendly web-based localization platform\ngh_link: https://github.com/tolgee/tolgee-platform\nlink: https://tolgee.io\n"
  },
  {
    "path": "submissions/Tooljet.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: Tooljet\ndescription: Low-code framework for internal tools\ngh_link: https://github.com/tooljet/tooljet\nlink: https://tooljet.io/\n"
  },
  {
    "path": "submissions/Totum.yaml",
    "content": "alts_links:\n- https://www.airtable.com/\nalts_names:\n- AirTable\ncategory: No-code database\ncompany_name: Totum\ndescription: Business database for non-programmers\ngh_link: https://github.com/totumonline/totum-mit\nlink: https://totum.online/\n"
  },
  {
    "path": "submissions/Tracardi.yaml",
    "content": "alts_links:\n- https://segment.com/\n- https://zapier.com/\nalts_names:\n- Segment\n- Zapier\ncategory: Customer Data Platform\ncompany_name: Tracardi\ndescription: Customer Data Platform with Consumer Journey automation engine\ngh_link: https://github.com/tracardi/tracardi\nlink: http://www.tracardi.com/\n"
  },
  {
    "path": "submissions/Trench.yaml",
    "content": "alts_links:\n- https://segment.io\n- https://analytics.google.com\n- https://amplitude.com\nalts_names:\n- Segment\n- Google Analytics\n- Amplitude\ncategory: Product Analytics\ncompany_name: Trench\ndescription: Open source analytics infrastructure\ngh_link: https://github.com/FrigadeHQ/trench\nlink: https://trench.dev\n"
  },
  {
    "path": "submissions/Trilium.cc.yaml",
    "content": "alts_links:\n- https://evernote.com/\n- https://www.onenote.com/\nalts_names:\n- Evernote\n- Onenote\ncategory: Notetaking\ncompany_name: Trilium.cc\ndescription: Personal knowledge base\ngh_link: https://github.com/zadam/trilium\nlink: https://trilium.cc/\n"
  },
  {
    "path": "submissions/Tunnelmole.yaml",
    "content": "alts_links:\n- https://ngrok.com\nalts_names:\n- /a>[Ngrok\ncategory: Tunnelling\ncompany_name: Tunnelmole\ndescription: 'Get a Public URL for your local development enviornment '\ngh_link: https://github.com/robbie-cahill/tunnelmole-client\nlink: https://tunnelmole.com/\n"
  },
  {
    "path": "submissions/TypeSense.yaml",
    "content": "alts_links:\n- https://www.algolia.com/\nalts_names:\n- Algolia\ncategory: Enterprise Search\ncompany_name: TypeSense\ndescription: Typo tolerant fuzzy search engine\ngh_link: https://github.com/typesense/typesense\nlink: https://typesense.org/\n"
  },
  {
    "path": "submissions/UVDesk.yaml",
    "content": "alts_links:\n- https://www.zendesk.co.uk/\nalts_names:\n- Zendesk\ncategory: Helpdesk Solution\ncompany_name: UVDesk\ndescription: Ticket Management & Helpdesk system\ngh_link: https://github.com/uvdesk/community-skeleton\nlink: https://www.uvdesk.com/en/\n"
  },
  {
    "path": "submissions/Umami.yaml",
    "content": "alts_links:\n- https://analytics.google.com/\nalts_names:\n- Google Analytics\ncategory: Website analytics\ncompany_name: Umami\ndescription: Google Analytics alternative\ngh_link: https://github.com/mikecao/umami\nlink: https://umami.is\n"
  },
  {
    "path": "submissions/Unleash.yaml",
    "content": "alts_links:\n- https://launchdarkly.com/\nalts_names:\n- LaunchDarkly\ncategory: Feature flag and toggle management\ncompany_name: Unleash\ndescription: Feature flags platform\ngh_link: https://github.com/Unleash/unleash\nlink: https://www.getunleash.io/\n"
  },
  {
    "path": "submissions/Uptrace.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: Uptrace\ndescription: Application monitoring and observability platform\ngh_link: https://github.com/uptrace/uptrace\nlink: https://uptrace.dev/\n"
  },
  {
    "path": "submissions/Vanilla.yaml",
    "content": "alts_links:\n- https://tribe.so/\n- https://circle.so/\nalts_names:\n- Tribe\n- Circle\ncategory: Forum Software\ncompany_name: Vanilla\ndescription: A platform for community discussion\ngh_link: https://github.com/vanilla/vanilla\nlink: https://vanillaforums.com/\n"
  },
  {
    "path": "submissions/Vendure.yaml",
    "content": "alts_links:\n- https://www.shopify.com/\n- https://www.ecwid.com/\nalts_names:\n- Shopify\n- Ecwid\ncategory: E-commerce\ncompany_name: Vendure\ndescription: Headless e-commerce platform\ngh_link: https://github.com/vendure-ecommerce/vendure\nlink: https://www.vendure.io/\n"
  },
  {
    "path": "submissions/VictoriaMetrics.yaml",
    "content": "alts_links:\n- https://www.datadoghq.com/\n- https://newrelic.com/\nalts_names:\n- DataDog\n- NewRelic\ncategory: Observability and monitoring\ncompany_name: VictoriaMetrics\ndescription: Application monitoring and observability platform\ngh_link: https://github.com/VictoriaMetrics/VictoriaMetrics\nlink: https://victoriametrics.com/\n"
  },
  {
    "path": "submissions/Vikunja.yaml",
    "content": "alts_links:\n- https://todoist.com\n- https://trello.com\n- https://asana.com\nalts_names:\n- Todoist\n- Trello\n- Asana\ncategory: Project Management\ncompany_name: Vikunja\ndescription: The to-do app to organize your next project.\ngh_link: https://github.com/go-vikunja/api\nlink: https://vikunja.io/\n"
  },
  {
    "path": "submissions/Vue_Storefront.yaml",
    "content": "alts_links:\n- https://getshogun.com/\nalts_names:\n- Shogun\ncategory: E-commerce\ncompany_name: Vue Storefront\ndescription: Frontend for e-commerce platform\ngh_link: https://github.com/vuestorefront/vue-storefront\nlink: https://www.vuestorefront.io/\n"
  },
  {
    "path": "submissions/Warrant.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Warrant\ndescription: Authorization and access control as a service\ngh_link: https://github.com/warrant-dev/warrant\nlink: https://warrant.dev/\n"
  },
  {
    "path": "submissions/Webiny.yaml",
    "content": "alts_links:\n- https://www.contentful.com/\nalts_names:\n- Contentful\ncategory: CMS\ncompany_name: Webiny\ndescription: Enterprise serverless CMS\ngh_link: https://github.com/webiny/webiny-js\nlink: https://www.webiny.com/\n"
  },
  {
    "path": "submissions/Windmill.yaml",
    "content": "alts_links:\n- https://retool.com/\nalts_names:\n- Retool\ncategory: Internal Tools\ncompany_name: Windmill\ndescription: Company-wide apps and automations from minimal python or typescript scripts\ngh_link: https://github.com/windmill-labs/windmill\nlink: https://windmill.dev/\n"
  },
  {
    "path": "submissions/Yugabyte.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/rds/aurora/\n- https://cloud.google.com/spanner/\nalts_names:\n- Amazon Aurora\n- Google Cloud Spanner\ncategory: Relational database\ncompany_name: Yugabyte\ndescription: High-performance distributed SQL database\ngh_link: https://github.com/yugabyte/yugabyte-db\nlink: https://www.yugabyte.com/\n"
  },
  {
    "path": "submissions/Zilliz.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/sagemaker\nalts_names:\n- AWS SageMaker\ncategory: ML Ops\ncompany_name: Zilliz\ndescription: Platform for generating embedding vectors\ngh_link: https://github.com/towhee-io/towhee\nlink: https://zilliz.com)'s [Towhe\n"
  },
  {
    "path": "submissions/Zinc_Labs.yaml",
    "content": "alts_links:\n- https://www.elastic.co/elastic-stack/\nalts_names:\n- Elastic Cloud\ncategory: Enterprise Search\ncompany_name: Zinc Labs\ndescription: Cloud native full text search\ngh_link: https://github.com/prabhatsharma/zinc\nlink: https://www.zinclabs.io)'s [Zin\n"
  },
  {
    "path": "submissions/Zitadel.yaml",
    "content": "alts_links:\n- https://okta.com/\n- https://auth0.com/\nalts_names:\n- Okta\n- Auth0\ncategory: Auth & SSO\ncompany_name: Zitadel\ndescription: User authentication and session management framework\ngh_link: https://github.com/zitadel/zitadel\nlink: https://zitadel.com/\n"
  },
  {
    "path": "submissions/Zulip.yaml",
    "content": "alts_links:\n- https://slack.com/\nalts_names:\n- Slack\ncategory: Messaging\ncompany_name: Zulip\ndescription: Team chat\ngh_link: https://github.com/zulip/zulip\nlink: https://zulip.com/\n"
  },
  {
    "path": "submissions/[Activepieces.yaml",
    "content": "alts_links:\n- https://www.zapier.com/\n- https://tray.io/\nalts_names:\n- Zapier\n- Tray\ncategory: Workflow automation\ncompany_name: '[Activepieces'\ndescription: ' No-code business automation tool '\ngh_link: https://github.com/activepieces/activepieces\nlink: https://www.activepieces.com)\n"
  },
  {
    "path": "submissions/crowd.dev.yaml",
    "content": "alts_links:\n- https://orbit.love/\n- https://www.commonroom.io/\n- https://www.commsor.com/\nalts_names:\n- Orbit\n- Common Room\n- Commsor\ncategory: Community Platform\ncompany_name: crowd.dev\ndescription: Suite of community and data tools built to unlock community-led growth\n  for your organization\ngh_link: https://github.com/CrowdDotDev/crowd.dev\nlink: https://crowd.dev/\n"
  },
  {
    "path": "submissions/deepset.yaml",
    "content": "alts_links:\n- https://aws.amazon.com/kendra/\n- https://www.qnamaker.ai/\nalts_names:\n- AWS Kendra\n- QnA Maker\ncategory: Enterprise Search\ncompany_name: deepset\ndescription: NLP platform to build enterprise-grade semantic search\ngh_link: https://github.com/deepset-ai/haystack\nlink: https://www.deepset.ai/\n"
  },
  {
    "path": "submissions/dyrector.io.yaml",
    "content": "alts_links:\n- https://www.heroku.com/\nalts_names:\n- Heroku\ncategory: Platform as a service\ncompany_name: dyrector.io\ndescription: Simplify container delivery without vendor lock\ngh_link: https://github.com/dyrector-io/dyrectorio\nlink: https://dyrector.io\n"
  },
  {
    "path": "submissions/inlang.yaml",
    "content": "alts_links:\n- https://www.lokalise.com/\n- https://www.transifex.com/\n- https://crowdin.com/\n- https://poeditor.com/\nalts_names:\n- Lokalise\n- Transifex\n- Crowdin\n- POEditor\ncategory: Localization (i18n)\ncompany_name: inlang\ndescription: Developer-first localization infrastructure built on git\ngh_link: https://github.com/inlang/inlang\nlink: https://www.inlang.com/\n"
  },
  {
    "path": "submissions/snoopForms.yaml",
    "content": "alts_links:\n- https://www.typeform.com/\n- https://forms.google.com\n- https://react-hook-form.com/\nalts_names:\n- Typeform\n- Google Forms\n- React Hook Form\ncategory: Form Building\ncompany_name: snoopForms\ndescription: ' Build forms and receive & manage submission data in one platform '\ngh_link: https://github.com/snoopforms/snoophub\nlink: https://snoopforms.com/\n"
  },
  {
    "path": "website/.gitignore",
    "content": "# Dependencies\n/node_modules\n\n# Production\n/build\n\n# Generated files\n.docusaurus\n.cache-loader\n\n# Misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "website/README.md",
    "content": "# Website\n\nThis website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.\n\n### Installation\n\n```\n$ yarn\n```\n\n### Local Development\n\n```\n$ yarn start\n```\n\nThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.\n\n### Build\n\n```\n$ yarn build\n```\n\nThis command generates static content into the `build` directory and can be served using any static contents hosting service.\n\n### Deployment\n\nUsing SSH:\n\n```\n$ USE_SSH=true yarn deploy\n```\n\nNot using SSH:\n\n```\n$ GIT_USER=<Your GitHub username> yarn deploy\n```\n\nIf you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.\n"
  },
  {
    "path": "website/babel.config.js",
    "content": "module.exports = {\n  presets: [require.resolve('@docusaurus/core/lib/babel/preset')],\n};\n"
  },
  {
    "path": "website/blog/2019-05-28-first-blog-post.md",
    "content": "---\nslug: first-blog-post\ntitle: First Blog Post\nauthors:\n  name: Gao Wei\n  title: Docusaurus Core Team\n  url: https://github.com/wgao19\n  image_url: https://github.com/wgao19.png\ntags: [hola, docusaurus]\n---\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n"
  },
  {
    "path": "website/blog/2019-05-29-long-blog-post.md",
    "content": "---\nslug: long-blog-post\ntitle: Long Blog Post\nauthors: endi\ntags: [hello, docusaurus]\n---\n\nThis is the summary of a very long blog post,\n\nUse a `<!--` `truncate` `-->` comment to limit blog post size in the list view.\n\n<!--truncate-->\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet\n"
  },
  {
    "path": "website/blog/2021-08-01-mdx-blog-post.mdx",
    "content": "---\nslug: mdx-blog-post\ntitle: MDX Blog Post\nauthors: [slorber]\ntags: [docusaurus]\n---\n\nBlog posts support [Docusaurus Markdown features](https://docusaurus.io/docs/markdown-features), such as [MDX](https://mdxjs.com/).\n\n:::tip\n\nUse the power of React to create interactive blog posts.\n\n```js\n<button onClick={() => alert('button clicked!')}>Click me!</button>\n```\n\n<button onClick={() => alert('button clicked!')}>Click me!</button>\n\n:::\n"
  },
  {
    "path": "website/blog/2021-08-26-welcome/index.md",
    "content": "---\nslug: welcome\ntitle: Welcome\nauthors: [slorber, yangshun]\ntags: [facebook, hello, docusaurus]\n---\n\n[Docusaurus blogging features](https://docusaurus.io/docs/blog) are powered by the [blog plugin](https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog).\n\nSimply add Markdown files (or folders) to the `blog` directory.\n\nRegular blog authors can be added to `authors.yml`.\n\nThe blog post date can be extracted from filenames, such as:\n\n- `2019-05-30-welcome.md`\n- `2019-05-30-welcome/index.md`\n\nA blog post folder can be convenient to co-locate blog post images:\n\n![Docusaurus Plushie](./docusaurus-plushie-banner.jpeg)\n\nThe blog supports tags as well!\n\n**And if you don't want a blog**: just delete this directory, and use `blog: false` in your Docusaurus config.\n"
  },
  {
    "path": "website/blog/authors.yml",
    "content": "endi:\n  name: Endilie Yacop Sucipto\n  title: Maintainer of Docusaurus\n  url: https://github.com/endiliey\n  image_url: https://github.com/endiliey.png\n\nyangshun:\n  name: Yangshun Tay\n  title: Front End Engineer @ Facebook\n  url: https://github.com/yangshun\n  image_url: https://github.com/yangshun.png\n\nslorber:\n  name: Sébastien Lorber\n  title: Docusaurus maintainer\n  url: https://sebastienlorber.com\n  image_url: https://github.com/slorber.png\n"
  },
  {
    "path": "website/docs/API Gateway/Apache-APISIX.md",
    "content": "\n# Apache APISIX \n\n<a href=\"https://github.com/apache/apisix\"><img src=\"https://icons.duckduckgo.com/ip3/github.com/apache/apisix.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/apache/apisix.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/apache/apisix/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/apache/apisix.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/apache/apisix/network/) [![GitHub issues](https://img.shields.io/github/issues/apache/apisix.svg)](https://GitHub.com/Napache/apisix/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/apache/apisix.svg)](https://github.com/apache/apisix/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/apache/apisix.svg)](https://GitHub.com/apache/apisix/graphs/contributors/) \n\n**Category**: API Gateway\n\n**Github**: [apache/apisix](https://github.com/apache/apisix)\n\n**Website**: [github.com/apache/apisix](https://github.com/apache/apisix)\n\n**Description**:\nCloud Native API Gateway under the Apache Software Foundation\n\n**Alternative to**: [apigee](https://cloud.google.com/apigee)\n"
  },
  {
    "path": "website/docs/API Platform/Fusio.md",
    "content": "\n# Fusio \n\n<a href=\"https://github.com/apioo/fusio\"><img src=\"https://icons.duckduckgo.com/ip3/github.com/apioo/fusio.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/apioo/fusio.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/apioo/fusio/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/apioo/fusio.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/apioo/fusio/network/) [![GitHub issues](https://img.shields.io/github/issues/apioo/fusio.svg)](https://GitHub.com/Napioo/fusio/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/apioo/fusio.svg)](https://github.com/apioo/fusio/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/apioo/fusio.svg)](https://GitHub.com/apioo/fusio/graphs/contributors/) \n\n**Category**: API Platform\n\n**Github**: [apioo/fusio](https://github.com/apioo/fusio)\n\n**Website**: [github.com/apioo/fusio](https://github.com/apioo/fusio)\n\n**Description**:\nAPI management platform\n\n**Alternative to**: [Postman](https://www.postman.com/)\n"
  },
  {
    "path": "website/docs/API Platform/Hoppscotch.md",
    "content": "\n# Hoppscotch \n\n<a href=\"https://hoppscotch.io/\"><img src=\"https://icons.duckduckgo.com/ip3/hoppscotch.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/hoppscotch/hoppscotch.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/hoppscotch/hoppscotch/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/hoppscotch/hoppscotch.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/hoppscotch/hoppscotch/network/) [![GitHub issues](https://img.shields.io/github/issues/hoppscotch/hoppscotch.svg)](https://GitHub.com/Nhoppscotch/hoppscotch/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/hoppscotch/hoppscotch.svg)](https://github.com/hoppscotch/hoppscotch/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/hoppscotch/hoppscotch.svg)](https://GitHub.com/hoppscotch/hoppscotch/graphs/contributors/) \n\n**Category**: API Platform\n\n**Github**: [hoppscotch/hoppscotch](https://github.com/hoppscotch/hoppscotch)\n\n**Website**: [hoppscotch.io](https://hoppscotch.io/)\n\n**Description**:\nAPI development ecosystem\n\n**Alternative to**: [Postman](https://www.postman.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/BoxyHQ.md",
    "content": "\n# BoxyHQ \n\n<a href=\"https://boxyhq.com\"><img src=\"https://icons.duckduckgo.com/ip3/boxyhq.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/boxyhq/jackson.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/boxyhq/jackson/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/boxyhq/jackson.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/boxyhq/jackson/network/) [![GitHub issues](https://img.shields.io/github/issues/boxyhq/jackson.svg)](https://GitHub.com/Nboxyhq/jackson/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/boxyhq/jackson.svg)](https://github.com/boxyhq/jackson/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/boxyhq/jackson.svg)](https://GitHub.com/boxyhq/jackson/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [boxyhq/jackson](https://github.com/boxyhq/jackson)\n\n**Website**: [boxyhq.com](https://boxyhq.com)\n\n**Description**:\nEnterprise Readiness made simple\n\n**Alternative to**: [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Cerbos.md",
    "content": "\n# Cerbos \n\n<a href=\"https://cerbos.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/cerbos.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/cerbos/cerbos.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/cerbos/cerbos/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/cerbos/cerbos.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/cerbos/cerbos/network/) [![GitHub issues](https://img.shields.io/github/issues/cerbos/cerbos.svg)](https://GitHub.com/Ncerbos/cerbos/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/cerbos/cerbos.svg)](https://github.com/cerbos/cerbos/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/cerbos/cerbos.svg)](https://GitHub.com/cerbos/cerbos/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [cerbos/cerbos](https://github.com/cerbos/cerbos)\n\n**Website**: [cerbos.dev](https://cerbos.dev/)\n\n**Description**:\nGranular access control\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/FusionAuth.md",
    "content": "\n# FusionAuth \n\n<a href=\"https://fusionauth.io/\"><img src=\"https://icons.duckduckgo.com/ip3/fusionauth.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/FusionAuth/fusionauth-containers.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/FusionAuth/fusionauth-containers/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/FusionAuth/fusionauth-containers.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/FusionAuth/fusionauth-containers/network/) [![GitHub issues](https://img.shields.io/github/issues/FusionAuth/fusionauth-containers.svg)](https://GitHub.com/NFusionAuth/fusionauth-containers/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/FusionAuth/fusionauth-containers.svg)](https://github.com/FusionAuth/fusionauth-containers/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/FusionAuth/fusionauth-containers.svg)](https://GitHub.com/FusionAuth/fusionauth-containers/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [FusionAuth/fusionauth-containers](https://github.com/FusionAuth/fusionauth-containers)\n\n**Website**: [fusionauth.io](https://fusionauth.io/)\n\n**Description**:\nUser authentication and session management framework\n\n**Alternative to**: [Okta](https://www.okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Hanko.md",
    "content": "\n# Hanko \n\n<a href=\"https://www.hanko.io\"><img src=\"https://icons.duckduckgo.com/ip3/www.hanko.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/teamhanko/hanko.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/teamhanko/hanko/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/teamhanko/hanko.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/teamhanko/hanko/network/) [![GitHub issues](https://img.shields.io/github/issues/teamhanko/hanko.svg)](https://GitHub.com/Nteamhanko/hanko/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/teamhanko/hanko.svg)](https://github.com/teamhanko/hanko/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/teamhanko/hanko.svg)](https://GitHub.com/teamhanko/hanko/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [teamhanko/hanko](https://github.com/teamhanko/hanko)\n\n**Website**: [www.hanko.io](https://www.hanko.io)\n\n**Description**:\nPasskey-first authentication framework\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Keycloak.md",
    "content": "\n# Keycloak \n\n<a href=\"https://www.cloud-iam.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.cloud-iam.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/keycloak/keycloak.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/keycloak/keycloak/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/keycloak/keycloak.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/keycloak/keycloak/network/) [![GitHub issues](https://img.shields.io/github/issues/keycloak/keycloak.svg)](https://GitHub.com/Nkeycloak/keycloak/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/keycloak/keycloak.svg)](https://github.com/keycloak/keycloak/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/keycloak/keycloak.svg)](https://GitHub.com/keycloak/keycloak/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [keycloak/keycloak](https://github.com/keycloak/keycloak)\n\n**Website**: [www.cloud-iam.com](https://www.cloud-iam.com/)\n\n**Description**:\nUser authentication and session management framework\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/OPAL.md",
    "content": "\n# OPAL \n\n<a href=\"https://www.opal.ac/\"><img src=\"https://icons.duckduckgo.com/ip3/www.opal.ac.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/permitio/opal.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/permitio/opal/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/permitio/opal.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/permitio/opal/network/) [![GitHub issues](https://img.shields.io/github/issues/permitio/opal.svg)](https://GitHub.com/Npermitio/opal/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/permitio/opal.svg)](https://github.com/permitio/opal/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/permitio/opal.svg)](https://GitHub.com/permitio/opal/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [permitio/opal](https://github.com/permitio/opal)\n\n**Website**: [www.opal.ac](https://www.opal.ac/)\n\n**Description**:\nAuthorization administration framework (Open Policy)\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Ory.md",
    "content": "\n# Ory \n\n<a href=\"https://www.ory.sh/\"><img src=\"https://icons.duckduckgo.com/ip3/www.ory.sh.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/ory/kratos.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/ory/kratos/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/ory/kratos.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/ory/kratos/network/) [![GitHub issues](https://img.shields.io/github/issues/ory/kratos.svg)](https://GitHub.com/Nory/kratos/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/ory/kratos.svg)](https://github.com/ory/kratos/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/ory/kratos.svg)](https://GitHub.com/ory/kratos/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [ory/kratos](https://github.com/ory/kratos)\n\n**Website**: [www.ory.sh](https://www.ory.sh/)\n\n**Description**:\nIdentity platform\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Oso.md",
    "content": "\n# Oso \n\n<a href=\"https://www.osohq.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.osohq.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/osohq/oso.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/osohq/oso/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/osohq/oso.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/osohq/oso/network/) [![GitHub issues](https://img.shields.io/github/issues/osohq/oso.svg)](https://GitHub.com/Nosohq/oso/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/osohq/oso.svg)](https://github.com/osohq/oso/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/osohq/oso.svg)](https://GitHub.com/osohq/oso/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [osohq/oso](https://github.com/osohq/oso)\n\n**Website**: [www.osohq.com](https://www.osohq.com/)\n\n**Description**:\nAuthorization building framework\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Supertokens.md",
    "content": "\n# Supertokens \n\n<a href=\"https://supertokens.io/\"><img src=\"https://icons.duckduckgo.com/ip3/supertokens.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/supertokens/supertokens-core.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/supertokens/supertokens-core/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/supertokens/supertokens-core.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/supertokens/supertokens-core/network/) [![GitHub issues](https://img.shields.io/github/issues/supertokens/supertokens-core.svg)](https://GitHub.com/Nsupertokens/supertokens-core/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/supertokens/supertokens-core.svg)](https://github.com/supertokens/supertokens-core/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/supertokens/supertokens-core.svg)](https://GitHub.com/supertokens/supertokens-core/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [supertokens/supertokens-core](https://github.com/supertokens/supertokens-core)\n\n**Website**: [supertokens.io](https://supertokens.io/)\n\n**Description**:\nUser authentication and session management framework\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Auth & SSO/Zitadel.md",
    "content": "\n# Zitadel \n\n<a href=\"https://zitadel.com/\"><img src=\"https://icons.duckduckgo.com/ip3/zitadel.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/zitadel/zitadel.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/zitadel/zitadel/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/zitadel/zitadel.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/zitadel/zitadel/network/) [![GitHub issues](https://img.shields.io/github/issues/zitadel/zitadel.svg)](https://GitHub.com/Nzitadel/zitadel/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/zitadel/zitadel.svg)](https://github.com/zitadel/zitadel/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/zitadel/zitadel.svg)](https://GitHub.com/zitadel/zitadel/graphs/contributors/) \n\n**Category**: Auth & SSO\n\n**Github**: [zitadel/zitadel](https://github.com/zitadel/zitadel)\n\n**Website**: [zitadel.com](https://zitadel.com/)\n\n**Description**:\nUser authentication and session management framework\n\n**Alternative to**: [Okta](https://okta.com/), [Auth0](https://auth0.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Amplication.md",
    "content": "\n# Amplication \n\n<a href=\"https://amplication.com/\"><img src=\"https://icons.duckduckgo.com/ip3/amplication.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/amplication/amplication.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/amplication/amplication/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/amplication/amplication.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/amplication/amplication/network/) [![GitHub issues](https://img.shields.io/github/issues/amplication/amplication.svg)](https://GitHub.com/Namplication/amplication/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/amplication/amplication.svg)](https://github.com/amplication/amplication/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/amplication/amplication.svg)](https://GitHub.com/amplication/amplication/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [amplication/amplication](https://github.com/amplication/amplication)\n\n**Website**: [amplication.com](https://amplication.com/)\n\n**Description**:\nBackend server with REST and GraphQL APIs to manage core backend needs\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Appwrite.md",
    "content": "\n# Appwrite \n\n<a href=\"https://appwrite.io/\"><img src=\"https://icons.duckduckgo.com/ip3/appwrite.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/appwrite/appwrite.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/appwrite/appwrite/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/appwrite/appwrite.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/appwrite/appwrite/network/) [![GitHub issues](https://img.shields.io/github/issues/appwrite/appwrite.svg)](https://GitHub.com/Nappwrite/appwrite/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/appwrite/appwrite.svg)](https://github.com/appwrite/appwrite/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/appwrite/appwrite.svg)](https://GitHub.com/appwrite/appwrite/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [appwrite/appwrite](https://github.com/appwrite/appwrite)\n\n**Website**: [appwrite.io](https://appwrite.io/)\n\n**Description**:\nBackend server with REST APIs to manage core backend needs\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Encore.md",
    "content": "\n# Encore \n\n<a href=\"https://encore.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/encore.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/encoredev/encore.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/encoredev/encore/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/encoredev/encore.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/encoredev/encore/network/) [![GitHub issues](https://img.shields.io/github/issues/encoredev/encore.svg)](https://GitHub.com/Nencoredev/encore/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/encoredev/encore.svg)](https://github.com/encoredev/encore/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/encoredev/encore.svg)](https://GitHub.com/encoredev/encore/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [encoredev/encore](https://github.com/encoredev/encore)\n\n**Website**: [encore.dev](https://encore.dev/)\n\n**Description**:\nBackend Development Engine for cloud-based apps, APIs, and distributed systems\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Kuzzle.md",
    "content": "\n# Kuzzle \n\n<a href=\"https://kuzzle.io/kuzzle-backend/\"><img src=\"https://icons.duckduckgo.com/ip3/kuzzle.io/kuzzle-backend.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/kuzzleio/kuzzle.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/kuzzleio/kuzzle/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/kuzzleio/kuzzle.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/kuzzleio/kuzzle/network/) [![GitHub issues](https://img.shields.io/github/issues/kuzzleio/kuzzle.svg)](https://GitHub.com/Nkuzzleio/kuzzle/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/kuzzleio/kuzzle.svg)](https://github.com/kuzzleio/kuzzle/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/kuzzleio/kuzzle.svg)](https://GitHub.com/kuzzleio/kuzzle/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [kuzzleio/kuzzle](https://github.com/kuzzleio/kuzzle)\n\n**Website**: [kuzzle.io/kuzzle-backend](https://kuzzle.io/kuzzle-backend/)\n\n**Description**:\nBackend server with REST APIs to manage core backend needs\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Nhost.md",
    "content": "\n# Nhost \n\n<a href=\"https://nhost.io/\"><img src=\"https://icons.duckduckgo.com/ip3/nhost.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/nhost/nhost.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/nhost/nhost/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/nhost/nhost.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/nhost/nhost/network/) [![GitHub issues](https://img.shields.io/github/issues/nhost/nhost.svg)](https://GitHub.com/Nnhost/nhost/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/nhost/nhost.svg)](https://github.com/nhost/nhost/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/nhost/nhost.svg)](https://GitHub.com/nhost/nhost/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [nhost/nhost](https://github.com/nhost/nhost)\n\n**Website**: [nhost.io](https://nhost.io/)\n\n**Description**:\nBackend server with GraphQL\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Backend as a service/Supabase.md",
    "content": "\n# Supabase \n\n<a href=\"https://supabase.io/\"><img src=\"https://icons.duckduckgo.com/ip3/supabase.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/supabase/supabase.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/supabase/supabase/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/supabase/supabase.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/supabase/supabase/network/) [![GitHub issues](https://img.shields.io/github/issues/supabase/supabase.svg)](https://GitHub.com/Nsupabase/supabase/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/supabase/supabase.svg)](https://github.com/supabase/supabase/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/supabase/supabase.svg)](https://GitHub.com/supabase/supabase/graphs/contributors/) \n\n**Category**: Backend as a service\n\n**Github**: [supabase/supabase](https://github.com/supabase/supabase)\n\n**Website**: [supabase.io](https://supabase.io/)\n\n**Description**:\nBackend server with REST APIs to manage core backend needs\n\n**Alternative to**: [Firebase](https://firebase.google.com/)\n"
  },
  {
    "path": "website/docs/Business Intelligence/Metabase.md",
    "content": "\n# Metabase \n\n<a href=\"https://www.metabase.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.metabase.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/metabase/metabase.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/metabase/metabase/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/metabase/metabase.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/metabase/metabase/network/) [![GitHub issues](https://img.shields.io/github/issues/metabase/metabase.svg)](https://GitHub.com/Nmetabase/metabase/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/metabase/metabase.svg)](https://github.com/metabase/metabase/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/metabase/metabase.svg)](https://GitHub.com/metabase/metabase/graphs/contributors/) \n\n**Category**: Business Intelligence\n\n**Github**: [metabase/metabase](https://github.com/metabase/metabase)\n\n**Website**: [www.metabase.com](https://www.metabase.com/)\n\n**Description**:\nBusiness intelligence software\n\n**Alternative to**: [Tableau](https://www.tableau.com/), [Power BI](https://powerbi.microsoft.com/), [DataStudio](https://datastudio.google.com/)\n"
  },
  {
    "path": "website/docs/Business Intelligence/Preset.md",
    "content": "\n# Preset \n\n<a href=\"https://www.preset.io\"><img src=\"https://icons.duckduckgo.com/ip3/www.preset.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/apache/superset.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/apache/superset/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/apache/superset.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/apache/superset/network/) [![GitHub issues](https://img.shields.io/github/issues/apache/superset.svg)](https://GitHub.com/Napache/superset/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/apache/superset.svg)](https://github.com/apache/superset/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/apache/superset.svg)](https://GitHub.com/apache/superset/graphs/contributors/) \n\n**Category**: Business Intelligence\n\n**Github**: [apache/superset](https://github.com/apache/superset)\n\n**Website**: [www.preset.io](https://www.preset.io)\n\n**Description**:\nModern BI platform powered by Apache Superset\n\n**Alternative to**: [PowerBI](https://powerbi.microsoft.com/), [Tableau](https://www.tableau.com/), [Mode Analytics](https://mode.com/)\n"
  },
  {
    "path": "website/docs/CMS/Builder.md",
    "content": "\n# Builder \n\n<a href=\"https://builder.io/\"><img src=\"https://icons.duckduckgo.com/ip3/builder.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/builderio/builder.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/builderio/builder/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/builderio/builder.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/builderio/builder/network/) [![GitHub issues](https://img.shields.io/github/issues/builderio/builder.svg)](https://GitHub.com/Nbuilderio/builder/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/builderio/builder.svg)](https://github.com/builderio/builder/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/builderio/builder.svg)](https://GitHub.com/builderio/builder/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [builderio/builder](https://github.com/builderio/builder)\n\n**Website**: [builder.io](https://builder.io/)\n\n**Description**:\nDrag and drop page builder and CMS\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Concrete.md",
    "content": "\n# Concrete \n\n<a href=\"https://www.concretecms.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.concretecms.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/concrete5/concrete5.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/concrete5/concrete5/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/concrete5/concrete5.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/concrete5/concrete5/network/) [![GitHub issues](https://img.shields.io/github/issues/concrete5/concrete5.svg)](https://GitHub.com/Nconcrete5/concrete5/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/concrete5/concrete5.svg)](https://github.com/concrete5/concrete5/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/concrete5/concrete5.svg)](https://GitHub.com/concrete5/concrete5/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [concrete5/concrete5](https://github.com/concrete5/concrete5)\n\n**Website**: [www.concretecms.com](https://www.concretecms.com/)\n\n**Description**:\nCMS for teams\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Directus.md",
    "content": "\n# Directus \n\n<a href=\"https://directus.io/\"><img src=\"https://icons.duckduckgo.com/ip3/directus.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/directus/directus.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/directus/directus/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/directus/directus.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/directus/directus/network/) [![GitHub issues](https://img.shields.io/github/issues/directus/directus.svg)](https://GitHub.com/Ndirectus/directus/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/directus/directus.svg)](https://github.com/directus/directus/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/directus/directus.svg)](https://GitHub.com/directus/directus/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [directus/directus](https://github.com/directus/directus)\n\n**Website**: [directus.io](https://directus.io/)\n\n**Description**:\nData platform which wraps any database with an intuitive app\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Netlify-CMS.md",
    "content": "\n# Netlify CMS \n\n<a href=\"https://www.netlifycms.org/\"><img src=\"https://icons.duckduckgo.com/ip3/www.netlifycms.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/netlify/netlify-cms.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/netlify/netlify-cms/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/netlify/netlify-cms.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/netlify/netlify-cms/network/) [![GitHub issues](https://img.shields.io/github/issues/netlify/netlify-cms.svg)](https://GitHub.com/Nnetlify/netlify-cms/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/netlify/netlify-cms.svg)](https://github.com/netlify/netlify-cms/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/netlify/netlify-cms.svg)](https://GitHub.com/netlify/netlify-cms/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [netlify/netlify-cms](https://github.com/netlify/netlify-cms)\n\n**Website**: [www.netlifycms.org](https://www.netlifycms.org/)\n\n**Description**:\nGit-based CMS for static site generators\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Plasmic.md",
    "content": "\n# Plasmic \n\n<a href=\"https://plasmic.app/\"><img src=\"https://icons.duckduckgo.com/ip3/plasmic.app.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/plasmicapp/plasmic.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/plasmicapp/plasmic/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/plasmicapp/plasmic.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/plasmicapp/plasmic/network/) [![GitHub issues](https://img.shields.io/github/issues/plasmicapp/plasmic.svg)](https://GitHub.com/Nplasmicapp/plasmic/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/plasmicapp/plasmic.svg)](https://github.com/plasmicapp/plasmic/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/plasmicapp/plasmic.svg)](https://GitHub.com/plasmicapp/plasmic/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [plasmicapp/plasmic](https://github.com/plasmicapp/plasmic)\n\n**Website**: [plasmic.app](https://plasmic.app/)\n\n**Description**:\nThe headless page builder for singe-page frameworks\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Strapi.md",
    "content": "\n# Strapi \n\n<a href=\"https://strapi.io/\"><img src=\"https://icons.duckduckgo.com/ip3/strapi.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/strapi/strapi.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/strapi/strapi/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/strapi/strapi.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/strapi/strapi/network/) [![GitHub issues](https://img.shields.io/github/issues/strapi/strapi.svg)](https://GitHub.com/Nstrapi/strapi/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/strapi/strapi.svg)](https://github.com/strapi/strapi/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/strapi/strapi.svg)](https://GitHub.com/strapi/strapi/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [strapi/strapi](https://github.com/strapi/strapi)\n\n**Website**: [strapi.io](https://strapi.io/)\n\n**Description**:\nNode.js Headless CMS to build customisable APIs\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Sulu.md",
    "content": "\n# Sulu \n\n<a href=\"https://sulu.io/\"><img src=\"https://icons.duckduckgo.com/ip3/sulu.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/sulu/sulu.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/sulu/sulu/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/sulu/sulu.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/sulu/sulu/network/) [![GitHub issues](https://img.shields.io/github/issues/sulu/sulu.svg)](https://GitHub.com/Nsulu/sulu/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/sulu/sulu.svg)](https://github.com/sulu/sulu/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/sulu/sulu.svg)](https://GitHub.com/sulu/sulu/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [sulu/sulu](https://github.com/sulu/sulu)\n\n**Website**: [sulu.io](https://sulu.io/)\n\n**Description**:\nModern Symfony based CMS\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Tina.md",
    "content": "\n# Tina \n\n<a href=\"https://tina.io/\"><img src=\"https://icons.duckduckgo.com/ip3/tina.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/tinacms/tinacms.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/tinacms/tinacms/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/tinacms/tinacms.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/tinacms/tinacms/network/) [![GitHub issues](https://img.shields.io/github/issues/tinacms/tinacms.svg)](https://GitHub.com/Ntinacms/tinacms/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms.svg)](https://github.com/tinacms/tinacms/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/tinacms/tinacms.svg)](https://GitHub.com/tinacms/tinacms/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [tinacms/tinacms](https://github.com/tinacms/tinacms)\n\n**Website**: [tina.io](https://tina.io/)\n\n**Description**:\nVisual editor for React websites\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/CMS/Webiny.md",
    "content": "\n# Webiny \n\n<a href=\"https://www.webiny.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.webiny.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/webiny/webiny-js.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/webiny/webiny-js/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/webiny/webiny-js.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/webiny/webiny-js/network/) [![GitHub issues](https://img.shields.io/github/issues/webiny/webiny-js.svg)](https://GitHub.com/Nwebiny/webiny-js/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/webiny/webiny-js.svg)](https://github.com/webiny/webiny-js/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/webiny/webiny-js.svg)](https://GitHub.com/webiny/webiny-js/graphs/contributors/) \n\n**Category**: CMS\n\n**Github**: [webiny/webiny-js](https://github.com/webiny/webiny-js)\n\n**Website**: [www.webiny.com](https://www.webiny.com/)\n\n**Description**:\nEnterprise serverless CMS\n\n**Alternative to**: [Contentful](https://www.contentful.com/)\n"
  },
  {
    "path": "website/docs/Cloud Data Warehouse/Databend.md",
    "content": "\n# Databend \n\n<a href=\"https://databend.rs\"><img src=\"https://icons.duckduckgo.com/ip3/databend.rs.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/datafuselabs/databend.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/datafuselabs/databend/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/datafuselabs/databend.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/datafuselabs/databend/network/) [![GitHub issues](https://img.shields.io/github/issues/datafuselabs/databend.svg)](https://GitHub.com/Ndatafuselabs/databend/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/datafuselabs/databend.svg)](https://github.com/datafuselabs/databend/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/datafuselabs/databend.svg)](https://GitHub.com/datafuselabs/databend/graphs/contributors/) \n\n**Category**: Cloud Data Warehouse\n\n**Github**: [datafuselabs/databend](https://github.com/datafuselabs/databend)\n\n**Website**: [databend.rs](https://databend.rs)\n\n**Description**:\nElastic and Workload-Aware Modern Cloud Data Warehouse\n\n**Alternative to**: [Snowflake](https://www.snowflake.com)\n"
  },
  {
    "path": "website/docs/Cloud Development Environment/Gitpod.md",
    "content": "\n# Gitpod \n\n<a href=\"https://gitpod.io\"><img src=\"https://icons.duckduckgo.com/ip3/gitpod.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/gitpod-io/gitpod.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/gitpod-io/gitpod/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/gitpod-io/gitpod.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/gitpod-io/gitpod/network/) [![GitHub issues](https://img.shields.io/github/issues/gitpod-io/gitpod.svg)](https://GitHub.com/Ngitpod-io/gitpod/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/gitpod-io/gitpod.svg)](https://github.com/gitpod-io/gitpod/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/gitpod-io/gitpod.svg)](https://GitHub.com/gitpod-io/gitpod/graphs/contributors/) \n\n**Category**: Cloud Development Environment\n\n**Github**: [gitpod-io/gitpod](https://github.com/gitpod-io/gitpod)\n\n**Website**: [gitpod.io](https://gitpod.io)\n\n**Description**:\nAutomated provisioning of cloud development environments with multiple git providers & IDEs\n\n**Alternative to**: [Codespaces](https://github.com/features/codespaces)\n"
  },
  {
    "path": "website/docs/Cloud Storage/Minio.md",
    "content": "\n# Minio \n\n<a href=\"https://min.io/\"><img src=\"https://icons.duckduckgo.com/ip3/min.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/minio/minio.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/minio/minio/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/minio/minio.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/minio/minio/network/) [![GitHub issues](https://img.shields.io/github/issues/minio/minio.svg)](https://GitHub.com/Nminio/minio/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/minio/minio.svg)](https://github.com/minio/minio/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/minio/minio.svg)](https://GitHub.com/minio/minio/graphs/contributors/) \n\n**Category**: Cloud Storage\n\n**Github**: [minio/minio](https://github.com/minio/minio)\n\n**Website**: [min.io](https://min.io/)\n\n**Description**:\nS3 compatible object storage\n\n**Alternative to**: [Amazon S3](https://aws.amazon.com/s3/)\n"
  },
  {
    "path": "website/docs/Cloud Storage/Storj.md",
    "content": "\n# Storj \n\n<a href=\"https://www.storj.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.storj.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/storj/storj.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/storj/storj/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/storj/storj.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/storj/storj/network/) [![GitHub issues](https://img.shields.io/github/issues/storj/storj.svg)](https://GitHub.com/Nstorj/storj/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/storj/storj.svg)](https://github.com/storj/storj/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/storj/storj.svg)](https://GitHub.com/storj/storj/graphs/contributors/) \n\n**Category**: Cloud Storage\n\n**Github**: [storj/storj](https://github.com/storj/storj)\n\n**Website**: [www.storj.io](https://www.storj.io/)\n\n**Description**:\nDecentralized cloud storage\n\n**Alternative to**: [Amazon S3](https://aws.amazon.com/s3/)\n"
  },
  {
    "path": "website/docs/Communication/Fonoster.md",
    "content": "\n# Fonoster \n\n<a href=\"https://fonoster.com/\"><img src=\"https://icons.duckduckgo.com/ip3/fonoster.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/fonoster/fonoster.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/fonoster/fonoster/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/fonoster/fonoster.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/fonoster/fonoster/network/) [![GitHub issues](https://img.shields.io/github/issues/fonoster/fonoster.svg)](https://GitHub.com/Nfonoster/fonoster/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/fonoster/fonoster.svg)](https://github.com/fonoster/fonoster/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/fonoster/fonoster.svg)](https://GitHub.com/fonoster/fonoster/graphs/contributors/) \n\n**Category**: Communication\n\n**Github**: [fonoster/fonoster](https://github.com/fonoster/fonoster)\n\n**Website**: [fonoster.com](https://fonoster.com/)\n\n**Description**:\nAPIs for SMS, voice and video\n\n**Alternative to**: [Twilio](https://www.twilio.com/)\n"
  },
  {
    "path": "website/docs/Communication/Novu.md",
    "content": "\n# Novu \n\n<a href=\"https://novu.co/\"><img src=\"https://icons.duckduckgo.com/ip3/novu.co.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/novuhq/novu.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/novuhq/novu/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/novuhq/novu.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/novuhq/novu/network/) [![GitHub issues](https://img.shields.io/github/issues/novuhq/novu.svg)](https://GitHub.com/Nnovuhq/novu/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/novuhq/novu.svg)](https://github.com/novuhq/novu/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/novuhq/novu.svg)](https://GitHub.com/novuhq/novu/graphs/contributors/) \n\n**Category**: Communication\n\n**Github**: [novuhq/novu](https://github.com/novuhq/novu)\n\n**Website**: [novu.co](https://novu.co/)\n\n**Description**:\nComponents and APIs for email, sms, direct and push\n\n**Alternative to**: [Courier](https://www.courier.com/), [MagicBell](https://www.magicbell.com/), [Knock](https://knock.app/)\n"
  },
  {
    "path": "website/docs/Customer Data Platform/Jitsu.md",
    "content": "\n# Jitsu \n\n<a href=\"https://jitsu.com/\"><img src=\"https://icons.duckduckgo.com/ip3/jitsu.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/jitsucom/jitsu.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/jitsucom/jitsu/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/jitsucom/jitsu.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/jitsucom/jitsu/network/) [![GitHub issues](https://img.shields.io/github/issues/jitsucom/jitsu.svg)](https://GitHub.com/Njitsucom/jitsu/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/jitsucom/jitsu.svg)](https://github.com/jitsucom/jitsu/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/jitsucom/jitsu.svg)](https://GitHub.com/jitsucom/jitsu/graphs/contributors/) \n\n**Category**: Customer Data Platform\n\n**Github**: [jitsucom/jitsu](https://github.com/jitsucom/jitsu)\n\n**Website**: [jitsu.com](https://jitsu.com/)\n\n**Description**:\nFully-scriptable data ingestion engine for modern data teams\n\n**Alternative to**: [Segment](https://segment.com/)\n"
  },
  {
    "path": "website/docs/Customer Data Platform/Rudderstack.md",
    "content": "\n# Rudderstack \n\n<a href=\"https://rudderstack.com/\"><img src=\"https://icons.duckduckgo.com/ip3/rudderstack.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/rudderlabs/rudder-server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/rudderlabs/rudder-server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/rudderlabs/rudder-server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/rudderlabs/rudder-server/network/) [![GitHub issues](https://img.shields.io/github/issues/rudderlabs/rudder-server.svg)](https://GitHub.com/Nrudderlabs/rudder-server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/rudderlabs/rudder-server.svg)](https://github.com/rudderlabs/rudder-server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/rudderlabs/rudder-server.svg)](https://GitHub.com/rudderlabs/rudder-server/graphs/contributors/) \n\n**Category**: Customer Data Platform\n\n**Github**: [rudderlabs/rudder-server](https://github.com/rudderlabs/rudder-server)\n\n**Website**: [rudderstack.com](https://rudderstack.com/)\n\n**Description**:\nCustomer data platform for developers\n\n**Alternative to**: [Segment](https://segment.com/)\n"
  },
  {
    "path": "website/docs/Customer Data Platform/Tracardi.md",
    "content": "\n# Tracardi \n\n<a href=\"http://www.tracardi.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.tracardi.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/tracardi/tracardi.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/tracardi/tracardi/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/tracardi/tracardi.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/tracardi/tracardi/network/) [![GitHub issues](https://img.shields.io/github/issues/tracardi/tracardi.svg)](https://GitHub.com/Ntracardi/tracardi/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/tracardi/tracardi.svg)](https://github.com/tracardi/tracardi/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/tracardi/tracardi.svg)](https://GitHub.com/tracardi/tracardi/graphs/contributors/) \n\n**Category**: Customer Data Platform\n\n**Github**: [tracardi/tracardi](https://github.com/tracardi/tracardi)\n\n**Website**: [www.tracardi.com](http://www.tracardi.com/)\n\n**Description**:\nCustomer Data Platform with Consumer Journey automation engine\n\n**Alternative to**: [Segment](https://segment.com/), [Zapier](https://zapier.com/)\n"
  },
  {
    "path": "website/docs/Customer Engagement/Chaskiq.md",
    "content": "\n# Chaskiq \n\n<a href=\"https://chaskiq.io/\"><img src=\"https://icons.duckduckgo.com/ip3/chaskiq.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/chaskiq/chaskiq.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/chaskiq/chaskiq/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/chaskiq/chaskiq.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/chaskiq/chaskiq/network/) [![GitHub issues](https://img.shields.io/github/issues/chaskiq/chaskiq.svg)](https://GitHub.com/Nchaskiq/chaskiq/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/chaskiq/chaskiq.svg)](https://github.com/chaskiq/chaskiq/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/chaskiq/chaskiq.svg)](https://GitHub.com/chaskiq/chaskiq/graphs/contributors/) \n\n**Category**: Customer Engagement\n\n**Github**: [chaskiq/chaskiq](https://github.com/chaskiq/chaskiq)\n\n**Website**: [chaskiq.io](https://chaskiq.io/)\n\n**Description**:\nLive chat widget\n\n**Alternative to**: [Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\n"
  },
  {
    "path": "website/docs/Customer Engagement/Chatwoot.md",
    "content": "\n# Chatwoot \n\n<a href=\"https://www.chatwoot.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.chatwoot.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/chatwoot/chatwoot.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/chatwoot/chatwoot/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/chatwoot/chatwoot.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/chatwoot/chatwoot/network/) [![GitHub issues](https://img.shields.io/github/issues/chatwoot/chatwoot.svg)](https://GitHub.com/Nchatwoot/chatwoot/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/chatwoot/chatwoot.svg)](https://github.com/chatwoot/chatwoot/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/chatwoot/chatwoot.svg)](https://GitHub.com/chatwoot/chatwoot/graphs/contributors/) \n\n**Category**: Customer Engagement\n\n**Github**: [chatwoot/chatwoot](https://github.com/chatwoot/chatwoot)\n\n**Website**: [www.chatwoot.com](https://www.chatwoot.com/)\n\n**Description**:\nLive chat widget\n\n**Alternative to**: [Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\n"
  },
  {
    "path": "website/docs/Customer Engagement/Papercups.md",
    "content": "\n# Papercups \n\n<a href=\"https://papercups.io/\"><img src=\"https://icons.duckduckgo.com/ip3/papercups.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/papercups-io/papercups.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/papercups-io/papercups/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/papercups-io/papercups.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/papercups-io/papercups/network/) [![GitHub issues](https://img.shields.io/github/issues/papercups-io/papercups.svg)](https://GitHub.com/Npapercups-io/papercups/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/papercups-io/papercups.svg)](https://github.com/papercups-io/papercups/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/papercups-io/papercups.svg)](https://GitHub.com/papercups-io/papercups/graphs/contributors/) \n\n**Category**: Customer Engagement\n\n**Github**: [papercups-io/papercups](https://github.com/papercups-io/papercups)\n\n**Website**: [papercups.io](https://papercups.io/)\n\n**Description**:\nLive chat widget\n\n**Alternative to**: [Intercom](https://www.intercom.com/), [Zendesk](https://www.zendesk.com/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/CloudQuery.md",
    "content": "\n# CloudQuery \n\n<a href=\"https://cloudquery.io/\"><img src=\"https://icons.duckduckgo.com/ip3/cloudquery.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/cloudquery/cloudquery.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/cloudquery/cloudquery/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/cloudquery/cloudquery.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/cloudquery/cloudquery/network/) [![GitHub issues](https://img.shields.io/github/issues/cloudquery/cloudquery.svg)](https://GitHub.com/Ncloudquery/cloudquery/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/cloudquery/cloudquery.svg)](https://github.com/cloudquery/cloudquery/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/cloudquery/cloudquery.svg)](https://GitHub.com/cloudquery/cloudquery/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [cloudquery/cloudquery](https://github.com/cloudquery/cloudquery)\n\n**Website**: [cloudquery.io](https://cloudquery.io/)\n\n**Description**:\nAssess, audit, and evaluate the configurations of your cloud assets.\n\n**Alternative to**: [AWS Config](https://aws.amazon.com/config/), [GCP Cloud Asset Inventory](https://cloud.google.com/asset-inventory), [AWS GuardDuty](https://aws.amazon.com/guardduty/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/CrowdSec.md",
    "content": "\n# CrowdSec \n\n<a href=\"http://crowdsec.net/\"><img src=\"https://icons.duckduckgo.com/ip3/crowdsec.net.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/crowdsecurity/crowdsec.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/crowdsecurity/crowdsec/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/crowdsecurity/crowdsec.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/crowdsecurity/crowdsec/network/) [![GitHub issues](https://img.shields.io/github/issues/crowdsecurity/crowdsec.svg)](https://GitHub.com/Ncrowdsecurity/crowdsec/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/crowdsecurity/crowdsec.svg)](https://github.com/crowdsecurity/crowdsec/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/crowdsecurity/crowdsec.svg)](https://GitHub.com/crowdsecurity/crowdsec/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [crowdsecurity/crowdsec](https://github.com/crowdsecurity/crowdsec)\n\n**Website**: [crowdsec.net](http://crowdsec.net/)\n\n**Description**:\nCollaborative IPS able to analyze visitor behavior and to provide an adapted response to all kinds of attacks.\n\n**Alternative to**: [GreyNoise](https://www.greynoise.io/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/Firezone.md",
    "content": "\n# Firezone \n\n<a href=\"https://www.firez.one/\"><img src=\"https://icons.duckduckgo.com/ip3/www.firez.one.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/firezone/firezone.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/firezone/firezone/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/firezone/firezone.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/firezone/firezone/network/) [![GitHub issues](https://img.shields.io/github/issues/firezone/firezone.svg)](https://GitHub.com/Nfirezone/firezone/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/firezone/firezone.svg)](https://github.com/firezone/firezone/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/firezone/firezone.svg)](https://GitHub.com/firezone/firezone/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [firezone/firezone](https://github.com/firezone/firezone)\n\n**Website**: [www.firez.one](https://www.firez.one/)\n\n**Description**:\nVPN Server & Firewall for teams\n\n**Alternative to**: [OpenVPN Access Server](https://openvpn.net/access-server/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/Gravitl.md",
    "content": "\n# Gravitl \n\n<a href=\"https://gravitl.com\"><img src=\"https://icons.duckduckgo.com/ip3/gravitl.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/gravitl/netmaker.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/gravitl/netmaker/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/gravitl/netmaker.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/gravitl/netmaker/network/) [![GitHub issues](https://img.shields.io/github/issues/gravitl/netmaker.svg)](https://GitHub.com/Ngravitl/netmaker/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/gravitl/netmaker.svg)](https://github.com/gravitl/netmaker/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/gravitl/netmaker.svg)](https://GitHub.com/gravitl/netmaker/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [gravitl/netmaker](https://github.com/gravitl/netmaker)\n\n**Website**: [gravitl.com](https://gravitl.com)\n\n**Description**:\nWireGuard virtual networking platform (VPN)\n\n**Alternative to**: [Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/LunaTrace.md",
    "content": "\n# LunaTrace \n\n<a href=\"https://www.lunasec.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.lunasec.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/lunasec-io/lunasec.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/lunasec-io/lunasec/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/lunasec-io/lunasec.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/lunasec-io/lunasec/network/) [![GitHub issues](https://img.shields.io/github/issues/lunasec-io/lunasec.svg)](https://GitHub.com/Nlunasec-io/lunasec/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/lunasec-io/lunasec.svg)](https://github.com/lunasec-io/lunasec/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/lunasec-io/lunasec.svg)](https://GitHub.com/lunasec-io/lunasec/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [lunasec-io/lunasec](https://github.com/lunasec-io/lunasec)\n\n**Website**: [www.lunasec.io](https://www.lunasec.io/)\n\n**Description**:\nDependency Vulnerability Scanner and SBOM Inventory\n\n**Alternative to**: [GitHub Dependabot](https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/), [Snyk.io](https://snyk.io/), [SonaType Nexus](https://www.sonatype.com/products/vulnerability-scanner)\n"
  },
  {
    "path": "website/docs/Cybersecurity/NetBird.md",
    "content": "\n# NetBird \n\n<a href=\"https://netbird.io\"><img src=\"https://icons.duckduckgo.com/ip3/netbird.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/netbirdio/netbird.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/netbirdio/netbird/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/netbirdio/netbird.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/netbirdio/netbird/network/) [![GitHub issues](https://img.shields.io/github/issues/netbirdio/netbird.svg)](https://GitHub.com/Nnetbirdio/netbird/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/netbirdio/netbird.svg)](https://github.com/netbirdio/netbird/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/netbirdio/netbird.svg)](https://GitHub.com/netbirdio/netbird/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [netbirdio/netbird](https://github.com/netbirdio/netbird)\n\n**Website**: [netbird.io](https://netbird.io)\n\n**Description**:\nZero Configuration Mesh VPN for Business\n\n**Alternative to**: [Tailscale](https://tailscale.com/), [OpenVPN](https://openvpn.net/)\n"
  },
  {
    "path": "website/docs/Cybersecurity/Nuclei.md",
    "content": "\n# Nuclei \n\n<a href=\"https://nuclei.projectdiscovery.io/\"><img src=\"https://icons.duckduckgo.com/ip3/nuclei.projectdiscovery.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/projectdiscovery/nuclei.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/projectdiscovery/nuclei/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/projectdiscovery/nuclei.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/projectdiscovery/nuclei/network/) [![GitHub issues](https://img.shields.io/github/issues/projectdiscovery/nuclei.svg)](https://GitHub.com/Nprojectdiscovery/nuclei/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/projectdiscovery/nuclei.svg)](https://github.com/projectdiscovery/nuclei/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/projectdiscovery/nuclei.svg)](https://GitHub.com/projectdiscovery/nuclei/graphs/contributors/) \n\n**Category**: Cybersecurity\n\n**Github**: [projectdiscovery/nuclei](https://github.com/projectdiscovery/nuclei)\n\n**Website**: [nuclei.projectdiscovery.io](https://nuclei.projectdiscovery.io/)\n\n**Description**:\nVulnerability scanner based on simple YAML based DSL\n\n**Alternative to**: [Tenable Nessus](https://www.tenable.com/products/nessus)\n"
  },
  {
    "path": "website/docs/Design/Modulz.md",
    "content": "\n# Modulz \n\n<a href=\"https://www.modulz.app/\"><img src=\"https://icons.duckduckgo.com/ip3/www.modulz.app.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/radix-ui/primitives.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/radix-ui/primitives/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/radix-ui/primitives.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/radix-ui/primitives/network/) [![GitHub issues](https://img.shields.io/github/issues/radix-ui/primitives.svg)](https://GitHub.com/Nradix-ui/primitives/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/radix-ui/primitives.svg)](https://github.com/radix-ui/primitives/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/radix-ui/primitives.svg)](https://GitHub.com/radix-ui/primitives/graphs/contributors/) \n\n**Category**: Design\n\n**Github**: [radix-ui/primitives](https://github.com/radix-ui/primitives)\n\n**Website**: [www.modulz.app](https://www.modulz.app/)\n\n**Description**:\nCode-based tool for designing and prototyping\n\n**Alternative to**: [Figma](https://www.figma.com/)\n"
  },
  {
    "path": "website/docs/Design/Penpot.md",
    "content": "\n# Penpot \n\n<a href=\"https://penpot.app/\"><img src=\"https://icons.duckduckgo.com/ip3/penpot.app.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/penpot/penpot.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/penpot/penpot/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/penpot/penpot.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/penpot/penpot/network/) [![GitHub issues](https://img.shields.io/github/issues/penpot/penpot.svg)](https://GitHub.com/Npenpot/penpot/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/penpot/penpot.svg)](https://github.com/penpot/penpot/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/penpot/penpot.svg)](https://GitHub.com/penpot/penpot/graphs/contributors/) \n\n**Category**: Design\n\n**Github**: [penpot/penpot](https://github.com/penpot/penpot)\n\n**Website**: [penpot.app](https://penpot.app/)\n\n**Description**:\nDesign & prototyping platform\n\n**Alternative to**: [Figma](https://www.figma.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Bagisto.md",
    "content": "\n# Bagisto \n\n<a href=\"https://bagisto.com/en/\"><img src=\"https://icons.duckduckgo.com/ip3/bagisto.com/en.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/bagisto/bagisto.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/bagisto/bagisto/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/bagisto/bagisto.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/bagisto/bagisto/network/) [![GitHub issues](https://img.shields.io/github/issues/bagisto/bagisto.svg)](https://GitHub.com/Nbagisto/bagisto/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/bagisto/bagisto.svg)](https://github.com/bagisto/bagisto/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/bagisto/bagisto.svg)](https://GitHub.com/bagisto/bagisto/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [bagisto/bagisto](https://github.com/bagisto/bagisto)\n\n**Website**: [bagisto.com/en](https://bagisto.com/en/)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Medusa.md",
    "content": "\n# Medusa \n\n<a href=\"https://www.medusajs.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.medusajs.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/medusajs/medusa.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/medusajs/medusa/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/medusajs/medusa.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/medusajs/medusa/network/) [![GitHub issues](https://img.shields.io/github/issues/medusajs/medusa.svg)](https://GitHub.com/Nmedusajs/medusa/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/medusajs/medusa.svg)](https://github.com/medusajs/medusa/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/medusajs/medusa.svg)](https://GitHub.com/medusajs/medusa/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [medusajs/medusa](https://github.com/medusajs/medusa)\n\n**Website**: [www.medusajs.com](https://www.medusajs.com/)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Saleor.md",
    "content": "\n# Saleor \n\n<a href=\"https://saleor.io/\"><img src=\"https://icons.duckduckgo.com/ip3/saleor.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/saleor/saleor.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/saleor/saleor/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/saleor/saleor.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/saleor/saleor/network/) [![GitHub issues](https://img.shields.io/github/issues/saleor/saleor.svg)](https://GitHub.com/Nsaleor/saleor/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/saleor/saleor.svg)](https://github.com/saleor/saleor/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/saleor/saleor.svg)](https://GitHub.com/saleor/saleor/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [saleor/saleor](https://github.com/saleor/saleor)\n\n**Website**: [saleor.io](https://saleor.io/)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Shuup.md",
    "content": "\n# Shuup \n\n<a href=\"https://shuup.com\"><img src=\"https://icons.duckduckgo.com/ip3/shuup.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/shuup/shuup.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/shuup/shuup/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/shuup/shuup.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/shuup/shuup/network/) [![GitHub issues](https://img.shields.io/github/issues/shuup/shuup.svg)](https://GitHub.com/Nshuup/shuup/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/shuup/shuup.svg)](https://github.com/shuup/shuup/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/shuup/shuup.svg)](https://GitHub.com/shuup/shuup/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [shuup/shuup](https://github.com/shuup/shuup)\n\n**Website**: [shuup.com](https://shuup.com)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Sylius.md",
    "content": "\n# Sylius \n\n<a href=\"https://sylius.com/\"><img src=\"https://icons.duckduckgo.com/ip3/sylius.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/sylius/sylius.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/sylius/sylius/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/sylius/sylius.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/sylius/sylius/network/) [![GitHub issues](https://img.shields.io/github/issues/sylius/sylius.svg)](https://GitHub.com/Nsylius/sylius/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/sylius/sylius.svg)](https://github.com/sylius/sylius/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/sylius/sylius.svg)](https://GitHub.com/sylius/sylius/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [sylius/sylius](https://github.com/sylius/sylius)\n\n**Website**: [sylius.com](https://sylius.com/)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Vendure.md",
    "content": "\n# Vendure \n\n<a href=\"https://www.vendure.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.vendure.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/vendure-ecommerce/vendure.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/vendure-ecommerce/vendure/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/vendure-ecommerce/vendure.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/vendure-ecommerce/vendure/network/) [![GitHub issues](https://img.shields.io/github/issues/vendure-ecommerce/vendure.svg)](https://GitHub.com/Nvendure-ecommerce/vendure/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/vendure-ecommerce/vendure.svg)](https://github.com/vendure-ecommerce/vendure/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/vendure-ecommerce/vendure.svg)](https://GitHub.com/vendure-ecommerce/vendure/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [vendure-ecommerce/vendure](https://github.com/vendure-ecommerce/vendure)\n\n**Website**: [www.vendure.io](https://www.vendure.io/)\n\n**Description**:\nHeadless e-commerce platform\n\n**Alternative to**: [Shopify](https://www.shopify.com/), [Ecwid](https://www.ecwid.com/)\n"
  },
  {
    "path": "website/docs/E-commerce/Vue-Storefront.md",
    "content": "\n# Vue Storefront \n\n<a href=\"https://www.vuestorefront.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.vuestorefront.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/vuestorefront/vue-storefront.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/vuestorefront/vue-storefront/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/vuestorefront/vue-storefront.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/vuestorefront/vue-storefront/network/) [![GitHub issues](https://img.shields.io/github/issues/vuestorefront/vue-storefront.svg)](https://GitHub.com/Nvuestorefront/vue-storefront/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/vuestorefront/vue-storefront.svg)](https://github.com/vuestorefront/vue-storefront/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/vuestorefront/vue-storefront.svg)](https://GitHub.com/vuestorefront/vue-storefront/graphs/contributors/) \n\n**Category**: E-commerce\n\n**Github**: [vuestorefront/vue-storefront](https://github.com/vuestorefront/vue-storefront)\n\n**Website**: [www.vuestorefront.io](https://www.vuestorefront.io/)\n\n**Description**:\nFrontend for e-commerce platform\n\n**Alternative to**: [Shogun](https://getshogun.com/)\n"
  },
  {
    "path": "website/docs/ERP/DoliCloud.md",
    "content": "\n# DoliCloud \n\n<a href=\"https://dolicloud.com)\"><img src=\"https://icons.duckduckgo.com/ip3/dolicloud.com).ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Dolibarr/dolibarr.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Dolibarr/dolibarr/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Dolibarr/dolibarr.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Dolibarr/dolibarr/network/) [![GitHub issues](https://img.shields.io/github/issues/Dolibarr/dolibarr.svg)](https://GitHub.com/NDolibarr/dolibarr/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Dolibarr/dolibarr.svg)](https://github.com/Dolibarr/dolibarr/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Dolibarr/dolibarr.svg)](https://GitHub.com/Dolibarr/dolibarr/graphs/contributors/) \n\n**Category**: ERP\n\n**Github**: [Dolibarr/dolibarr](https://github.com/Dolibarr/dolibarr)\n\n**Website**: [dolicloud.com)](https://dolicloud.com))\n\n**Description**:\n Business management suite (ERP and CRM)\n\n**Alternative to**: [Oracle Fusion ERP Cloud](https://www.oracle.com/erp), [Odoo](https://odoo.com/), [Microsoft Dynamics](https://dynamics.microsoft.com/)\n"
  },
  {
    "path": "website/docs/ERP/ERPNext.md",
    "content": "\n# ERPNext \n\n<a href=\"https://erpnext.com)\"><img src=\"https://icons.duckduckgo.com/ip3/erpnext.com).ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/frappe/erpnext.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/frappe/erpnext/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/frappe/erpnext.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/frappe/erpnext/network/) [![GitHub issues](https://img.shields.io/github/issues/frappe/erpnext.svg)](https://GitHub.com/Nfrappe/erpnext/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/frappe/erpnext.svg)](https://github.com/frappe/erpnext/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/frappe/erpnext.svg)](https://GitHub.com/frappe/erpnext/graphs/contributors/) \n\n**Category**: ERP\n\n**Github**: [frappe/erpnext](https://github.com/frappe/erpnext)\n\n**Website**: [erpnext.com)](https://erpnext.com))\n\n**Description**:\n Agile, modern, module based Business management suite\n\n**Alternative to**: [SAP Business One](https://www.sap.com/products/business-one.html), [Odoo](https://odoo.com/)\n"
  },
  {
    "path": "website/docs/ETL/Airbyte.md",
    "content": "\n# Airbyte \n\n<a href=\"https://airbyte.io/\"><img src=\"https://icons.duckduckgo.com/ip3/airbyte.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/airbytehq/airbyte.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/airbytehq/airbyte/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/airbytehq/airbyte.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/airbytehq/airbyte/network/) [![GitHub issues](https://img.shields.io/github/issues/airbytehq/airbyte.svg)](https://GitHub.com/Nairbytehq/airbyte/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/airbytehq/airbyte.svg)](https://github.com/airbytehq/airbyte/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/airbytehq/airbyte.svg)](https://GitHub.com/airbytehq/airbyte/graphs/contributors/) \n\n**Category**: ETL\n\n**Github**: [airbytehq/airbyte](https://github.com/airbytehq/airbyte)\n\n**Website**: [airbyte.io](https://airbyte.io/)\n\n**Description**:\nData integration platform\n\n**Alternative to**: [Fivetran](https://fivetran.com/)\n"
  },
  {
    "path": "website/docs/ETL/Dagster.md",
    "content": "\n# Dagster \n\n<a href=\"https://dagster.io/\"><img src=\"https://icons.duckduckgo.com/ip3/dagster.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/dagster-io/dagster.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/dagster-io/dagster/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/dagster-io/dagster.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/dagster-io/dagster/network/) [![GitHub issues](https://img.shields.io/github/issues/dagster-io/dagster.svg)](https://GitHub.com/Ndagster-io/dagster/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/dagster-io/dagster.svg)](https://github.com/dagster-io/dagster/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/dagster-io/dagster.svg)](https://GitHub.com/dagster-io/dagster/graphs/contributors/) \n\n**Category**: ETL\n\n**Github**: [dagster-io/dagster](https://github.com/dagster-io/dagster)\n\n**Website**: [dagster.io](https://dagster.io/)\n\n**Description**:\nOrchestration platform for data assets\n\n**Alternative to**: [Fivetran](https://fivetran.com/)\n"
  },
  {
    "path": "website/docs/ETL/Kestra.md",
    "content": "\n# Kestra \n\n<a href=\"https://kestra.io/\"><img src=\"https://icons.duckduckgo.com/ip3/kestra.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/kestra-io/kestra.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/kestra-io/kestra/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/kestra-io/kestra.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/kestra-io/kestra/network/) [![GitHub issues](https://img.shields.io/github/issues/kestra-io/kestra.svg)](https://GitHub.com/Nkestra-io/kestra/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/kestra-io/kestra.svg)](https://github.com/kestra-io/kestra/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/kestra-io/kestra.svg)](https://GitHub.com/kestra-io/kestra/graphs/contributors/) \n\n**Category**: ETL\n\n**Github**: [kestra-io/kestra](https://github.com/kestra-io/kestra)\n\n**Website**: [kestra.io](https://kestra.io/)\n\n**Description**:\norchestration and scheduling platform\n\n**Alternative to**: [Fivetran](https://fivetran.com/)\n"
  },
  {
    "path": "website/docs/ETL/Orchest.md",
    "content": "\n# Orchest \n\n<a href=\"https://www.orchest.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.orchest.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/orchest/orchest.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/orchest/orchest/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/orchest/orchest.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/orchest/orchest/network/) [![GitHub issues](https://img.shields.io/github/issues/orchest/orchest.svg)](https://GitHub.com/Norchest/orchest/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/orchest/orchest.svg)](https://github.com/orchest/orchest/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/orchest/orchest.svg)](https://GitHub.com/orchest/orchest/graphs/contributors/) \n\n**Category**: ETL\n\n**Github**: [orchest/orchest](https://github.com/orchest/orchest)\n\n**Website**: [www.orchest.io](https://www.orchest.io/)\n\n**Description**:\nNo-code data pipelines builder\n\n**Alternative to**: [Fivetran](https://fivetran.com/)\n"
  },
  {
    "path": "website/docs/ETL/Prefect.md",
    "content": "\n# Prefect \n\n<a href=\"https://www.prefect.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.prefect.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/prefecthq/prefect.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/prefecthq/prefect/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/prefecthq/prefect.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/prefecthq/prefect/network/) [![GitHub issues](https://img.shields.io/github/issues/prefecthq/prefect.svg)](https://GitHub.com/Nprefecthq/prefect/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/prefecthq/prefect.svg)](https://github.com/prefecthq/prefect/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/prefecthq/prefect.svg)](https://GitHub.com/prefecthq/prefect/graphs/contributors/) \n\n**Category**: ETL\n\n**Github**: [prefecthq/prefect](https://github.com/prefecthq/prefect)\n\n**Website**: [www.prefect.io](https://www.prefect.io/)\n\n**Description**:\nData orchestration platform for a modern data stack\n\n**Alternative to**: [Fivetran](https://fivetran.com/)\n"
  },
  {
    "path": "website/docs/Email marketing/Keila.md",
    "content": "\n# Keila \n\n<a href=\"https://www.keila.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.keila.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/pentacent/keila.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/pentacent/keila/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/pentacent/keila.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/pentacent/keila/network/) [![GitHub issues](https://img.shields.io/github/issues/pentacent/keila.svg)](https://GitHub.com/Npentacent/keila/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/pentacent/keila.svg)](https://github.com/pentacent/keila/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/pentacent/keila.svg)](https://GitHub.com/pentacent/keila/graphs/contributors/) \n\n**Category**: Email marketing\n\n**Github**: [pentacent/keila](https://github.com/pentacent/keila)\n\n**Website**: [www.keila.io](https://www.keila.io/)\n\n**Description**:\nEmail newsletter tool\n\n**Alternative to**: [Mailchimp](https://mailchimp.com), [Sendinblue](https://www.sendinblue.com)\n"
  },
  {
    "path": "website/docs/Enterprise Search/AppBase.md",
    "content": "\n# AppBase \n\n<a href=\"https://www.appbase.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.appbase.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/appbaseio/reactivesearch.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/appbaseio/reactivesearch/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/appbaseio/reactivesearch.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/appbaseio/reactivesearch/network/) [![GitHub issues](https://img.shields.io/github/issues/appbaseio/reactivesearch.svg)](https://GitHub.com/Nappbaseio/reactivesearch/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/appbaseio/reactivesearch.svg)](https://github.com/appbaseio/reactivesearch/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/appbaseio/reactivesearch.svg)](https://GitHub.com/appbaseio/reactivesearch/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [appbaseio/reactivesearch](https://github.com/appbaseio/reactivesearch)\n\n**Website**: [www.appbase.io](https://www.appbase.io/)\n\n**Description**:\nSearch UI components for React and Vue\n\n**Alternative to**: [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/Jina.ai.md",
    "content": "\n# Jina.ai \n\n<a href=\"https://jina.ai/\"><img src=\"https://icons.duckduckgo.com/ip3/jina.ai.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/jina-ai/jina.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/jina-ai/jina/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/jina-ai/jina.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/jina-ai/jina/network/) [![GitHub issues](https://img.shields.io/github/issues/jina-ai/jina.svg)](https://GitHub.com/Njina-ai/jina/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/jina-ai/jina.svg)](https://github.com/jina-ai/jina/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/jina-ai/jina.svg)](https://GitHub.com/jina-ai/jina/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [jina-ai/jina](https://github.com/jina-ai/jina)\n\n**Website**: [jina.ai](https://jina.ai/)\n\n**Description**:\nNeural search framework for 𝙖𝙣𝙮 kind of data (including images)\n\n**Alternative to**: [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/Meilisearch.md",
    "content": "\n# Meilisearch \n\n<a href=\"https://www.meilisearch.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.meilisearch.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/meilisearch/meilisearch.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/meilisearch/meilisearch/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/meilisearch/meilisearch.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/meilisearch/meilisearch/network/) [![GitHub issues](https://img.shields.io/github/issues/meilisearch/meilisearch.svg)](https://GitHub.com/Nmeilisearch/meilisearch/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/meilisearch/meilisearch.svg)](https://github.com/meilisearch/meilisearch/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/meilisearch/meilisearch.svg)](https://GitHub.com/meilisearch/meilisearch/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [meilisearch/meilisearch](https://github.com/meilisearch/meilisearch)\n\n**Website**: [www.meilisearch.com](https://www.meilisearch.com/)\n\n**Description**:\nTypo tolerant search engine\n\n**Alternative to**: [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/Qdrant.md",
    "content": "\n# Qdrant \n\n<a href=\"https://qdrant.tech/\"><img src=\"https://icons.duckduckgo.com/ip3/qdrant.tech.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/qdrant/qdrant.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/qdrant/qdrant/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/qdrant/qdrant.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/qdrant/qdrant/network/) [![GitHub issues](https://img.shields.io/github/issues/qdrant/qdrant.svg)](https://GitHub.com/Nqdrant/qdrant/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/qdrant/qdrant.svg)](https://github.com/qdrant/qdrant/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/qdrant/qdrant.svg)](https://GitHub.com/qdrant/qdrant/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [qdrant/qdrant](https://github.com/qdrant/qdrant)\n\n**Website**: [qdrant.tech](https://qdrant.tech/)\n\n**Description**:\nVector similarity search engine with extended filtering support\n\n**Alternative to**: [Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/SeMI.md",
    "content": "\n# SeMI \n\n<a href=\"https://www.semi.technology/)'s [Weaviat\"><img src=\"https://icons.duckduckgo.com/ip3/www.semi.technology/)'s [Weaviat.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/semi-technologies/weaviate.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/semi-technologies/weaviate/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/semi-technologies/weaviate.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/semi-technologies/weaviate/network/) [![GitHub issues](https://img.shields.io/github/issues/semi-technologies/weaviate.svg)](https://GitHub.com/Nsemi-technologies/weaviate/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/semi-technologies/weaviate.svg)](https://github.com/semi-technologies/weaviate/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/semi-technologies/weaviate.svg)](https://GitHub.com/semi-technologies/weaviate/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [semi-technologies/weaviate](https://github.com/semi-technologies/weaviate)\n\n**Website**: [www.semi.technology/)'s [Weaviat](https://www.semi.technology/)'s [Weaviat)\n\n**Description**:\nReal-time vector search engine\n\n**Alternative to**: [Google Vertex AI](https://cloud.google.com/vertex-ai), [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/TypeSense.md",
    "content": "\n# TypeSense \n\n<a href=\"https://typesense.org/\"><img src=\"https://icons.duckduckgo.com/ip3/typesense.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/typesense/typesense.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/typesense/typesense/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/typesense/typesense.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/typesense/typesense/network/) [![GitHub issues](https://img.shields.io/github/issues/typesense/typesense.svg)](https://GitHub.com/Ntypesense/typesense/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/typesense/typesense.svg)](https://github.com/typesense/typesense/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/typesense/typesense.svg)](https://GitHub.com/typesense/typesense/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [typesense/typesense](https://github.com/typesense/typesense)\n\n**Website**: [typesense.org](https://typesense.org/)\n\n**Description**:\nTypo tolerant fuzzy search engine\n\n**Alternative to**: [Algolia](https://www.algolia.com/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/Zinc-Labs.md",
    "content": "\n# Zinc Labs \n\n<a href=\"https://www.zinclabs.io)'s [Zin\"><img src=\"https://icons.duckduckgo.com/ip3/www.zinclabs.io)'s [Zin.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/prabhatsharma/zinc.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/prabhatsharma/zinc/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/prabhatsharma/zinc.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/prabhatsharma/zinc/network/) [![GitHub issues](https://img.shields.io/github/issues/prabhatsharma/zinc.svg)](https://GitHub.com/Nprabhatsharma/zinc/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/prabhatsharma/zinc.svg)](https://github.com/prabhatsharma/zinc/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/prabhatsharma/zinc.svg)](https://GitHub.com/prabhatsharma/zinc/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [prabhatsharma/zinc](https://github.com/prabhatsharma/zinc)\n\n**Website**: [www.zinclabs.io)'s [Zin](https://www.zinclabs.io)'s [Zin)\n\n**Description**:\nCloud native full text search\n\n**Alternative to**: [Elastic Cloud](https://www.elastic.co/elastic-stack/)\n"
  },
  {
    "path": "website/docs/Enterprise Search/deepset.md",
    "content": "\n# deepset \n\n<a href=\"https://www.deepset.ai/\"><img src=\"https://icons.duckduckgo.com/ip3/www.deepset.ai.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/deepset-ai/haystack.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/deepset-ai/haystack/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/deepset-ai/haystack.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/deepset-ai/haystack/network/) [![GitHub issues](https://img.shields.io/github/issues/deepset-ai/haystack.svg)](https://GitHub.com/Ndeepset-ai/haystack/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/deepset-ai/haystack.svg)](https://github.com/deepset-ai/haystack/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/deepset-ai/haystack.svg)](https://GitHub.com/deepset-ai/haystack/graphs/contributors/) \n\n**Category**: Enterprise Search\n\n**Github**: [deepset-ai/haystack](https://github.com/deepset-ai/haystack)\n\n**Website**: [www.deepset.ai](https://www.deepset.ai/)\n\n**Description**:\nNLP platform to build enterprise-grade semantic search\n\n**Alternative to**: [AWS Kendra](https://aws.amazon.com/kendra/), [QnA Maker](https://www.qnamaker.ai/)\n"
  },
  {
    "path": "website/docs/Feature flag and toggle management/FlagSmith.md",
    "content": "\n# FlagSmith \n\n<a href=\"https://flagsmith.com/\"><img src=\"https://icons.duckduckgo.com/ip3/flagsmith.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Flagsmith/flagsmith.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Flagsmith/flagsmith/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Flagsmith/flagsmith.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Flagsmith/flagsmith/network/) [![GitHub issues](https://img.shields.io/github/issues/Flagsmith/flagsmith.svg)](https://GitHub.com/NFlagsmith/flagsmith/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Flagsmith/flagsmith.svg)](https://github.com/Flagsmith/flagsmith/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Flagsmith/flagsmith.svg)](https://GitHub.com/Flagsmith/flagsmith/graphs/contributors/) \n\n**Category**: Feature flag and toggle management\n\n**Github**: [Flagsmith/flagsmith](https://github.com/Flagsmith/flagsmith)\n\n**Website**: [flagsmith.com](https://flagsmith.com/)\n\n**Description**:\nFeature Flag & Remote Config Service\n\n**Alternative to**: [LaunchDarkly](https://launchdarkly.com/)\n"
  },
  {
    "path": "website/docs/Feature flag and toggle management/GrowthBook.md",
    "content": "\n# GrowthBook \n\n<a href=\"https://www.growthbook.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.growthbook.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/growthbook/growthbook.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/growthbook/growthbook/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/growthbook/growthbook.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/growthbook/growthbook/network/) [![GitHub issues](https://img.shields.io/github/issues/growthbook/growthbook.svg)](https://GitHub.com/Ngrowthbook/growthbook/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/growthbook/growthbook.svg)](https://github.com/growthbook/growthbook/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/growthbook/growthbook.svg)](https://GitHub.com/growthbook/growthbook/graphs/contributors/) \n\n**Category**: Feature flag and toggle management\n\n**Github**: [growthbook/growthbook](https://github.com/growthbook/growthbook)\n\n**Website**: [www.growthbook.io](https://www.growthbook.io/)\n\n**Description**:\nFeature flags and A/B testing\n\n**Alternative to**: [LaunchDarkly](https://launchdarkly.com/)\n"
  },
  {
    "path": "website/docs/Feature flag and toggle management/Unleash.md",
    "content": "\n# Unleash \n\n<a href=\"https://www.getunleash.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.getunleash.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Unleash/unleash.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Unleash/unleash/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Unleash/unleash.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Unleash/unleash/network/) [![GitHub issues](https://img.shields.io/github/issues/Unleash/unleash.svg)](https://GitHub.com/NUnleash/unleash/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Unleash/unleash.svg)](https://github.com/Unleash/unleash/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Unleash/unleash.svg)](https://GitHub.com/Unleash/unleash/graphs/contributors/) \n\n**Category**: Feature flag and toggle management\n\n**Github**: [Unleash/unleash](https://github.com/Unleash/unleash)\n\n**Website**: [www.getunleash.io](https://www.getunleash.io/)\n\n**Description**:\nFeature flags platform\n\n**Alternative to**: [LaunchDarkly](https://launchdarkly.com/)\n"
  },
  {
    "path": "website/docs/File Hosting/Filestash.md",
    "content": "\n# Filestash \n\n<a href=\"https://www.filestash.app/\"><img src=\"https://icons.duckduckgo.com/ip3/www.filestash.app.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mickael-kerjean/filestash.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mickael-kerjean/filestash/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mickael-kerjean/filestash.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mickael-kerjean/filestash/network/) [![GitHub issues](https://img.shields.io/github/issues/mickael-kerjean/filestash.svg)](https://GitHub.com/Nmickael-kerjean/filestash/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mickael-kerjean/filestash.svg)](https://github.com/mickael-kerjean/filestash/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mickael-kerjean/filestash.svg)](https://GitHub.com/mickael-kerjean/filestash/graphs/contributors/) \n\n**Category**: File Hosting\n\n**Github**: [mickael-kerjean/filestash](https://github.com/mickael-kerjean/filestash)\n\n**Website**: [www.filestash.app](https://www.filestash.app/)\n\n**Description**:\nA file manager that let you manage your data anywhere it is located\n\n**Alternative to**: [Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\n"
  },
  {
    "path": "website/docs/File Hosting/Nextcloud.md",
    "content": "\n# Nextcloud \n\n<a href=\"https://nextcloud.com/\"><img src=\"https://icons.duckduckgo.com/ip3/nextcloud.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/nextcloud/server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/nextcloud/server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/nextcloud/server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/nextcloud/server/network/) [![GitHub issues](https://img.shields.io/github/issues/nextcloud/server.svg)](https://GitHub.com/Nnextcloud/server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/nextcloud/server.svg)](https://github.com/nextcloud/server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/nextcloud/server.svg)](https://GitHub.com/nextcloud/server/graphs/contributors/) \n\n**Category**: File Hosting\n\n**Github**: [nextcloud/server](https://github.com/nextcloud/server)\n\n**Website**: [nextcloud.com](https://nextcloud.com/)\n\n**Description**:\nA personal cloud which runs on your own server\n\n**Alternative to**: [Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\n"
  },
  {
    "path": "website/docs/File Hosting/Owncloud.md",
    "content": "\n# Owncloud \n\n<a href=\"https://owncloud.com/\"><img src=\"https://icons.duckduckgo.com/ip3/owncloud.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/owncloud/core.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/owncloud/core/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/owncloud/core.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/owncloud/core/network/) [![GitHub issues](https://img.shields.io/github/issues/owncloud/core.svg)](https://GitHub.com/Nowncloud/core/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/owncloud/core.svg)](https://github.com/owncloud/core/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/owncloud/core.svg)](https://GitHub.com/owncloud/core/graphs/contributors/) \n\n**Category**: File Hosting\n\n**Github**: [owncloud/core](https://github.com/owncloud/core)\n\n**Website**: [owncloud.com](https://owncloud.com/)\n\n**Description**:\nA personal cloud which runs on your own server\n\n**Alternative to**: [Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\n"
  },
  {
    "path": "website/docs/File Hosting/Spacedrive.md",
    "content": "\n# Spacedrive \n\n<a href=\"https://spacedrive.com/\"><img src=\"https://icons.duckduckgo.com/ip3/spacedrive.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/spacedriveapp/spacedrive.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/spacedriveapp/spacedrive/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/spacedriveapp/spacedrive.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/spacedriveapp/spacedrive/network/) [![GitHub issues](https://img.shields.io/github/issues/spacedriveapp/spacedrive.svg)](https://GitHub.com/Nspacedriveapp/spacedrive/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/spacedriveapp/spacedrive.svg)](https://github.com/spacedriveapp/spacedrive/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/spacedriveapp/spacedrive.svg)](https://GitHub.com/spacedriveapp/spacedrive/graphs/contributors/) \n\n**Category**: File Hosting\n\n**Github**: [spacedriveapp/spacedrive](https://github.com/spacedriveapp/spacedrive)\n\n**Website**: [spacedrive.com](https://spacedrive.com/)\n\n**Description**:\nCross-platform file manager, powered by a virtual distributed filesystem (VDFS) written in Rust\n\n**Alternative to**: [Dropbox](https://www.dropbox.com/), [Google Drive](https://drive.google.com/)\n"
  },
  {
    "path": "website/docs/Financial Service/Lago.md",
    "content": "\n# Lago \n\n<a href=\"https://www.getlago.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.getlago.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/getlago/lago.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/getlago/lago/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/getlago/lago.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/getlago/lago/network/) [![GitHub issues](https://img.shields.io/github/issues/getlago/lago.svg)](https://GitHub.com/Ngetlago/lago/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/getlago/lago.svg)](https://github.com/getlago/lago/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/getlago/lago.svg)](https://GitHub.com/getlago/lago/graphs/contributors/) \n\n**Category**: Financial Service\n\n**Github**: [getlago/lago](https://github.com/getlago/lago)\n\n**Website**: [www.getlago.com](https://www.getlago.com/)\n\n**Description**:\nOpen Source Billing API\n\n**Alternative to**: [Stripe Billing](https://stripe.com/billing), [Chargebee](https://www.chargebee.com/)\n"
  },
  {
    "path": "website/docs/Financial Service/OpenBB-Terminal.md",
    "content": "\n# OpenBB Terminal \n\n<a href=\"https://github.com/openbb-finance/OpenBBTerminal\"><img src=\"https://icons.duckduckgo.com/ip3/github.com/openbb-finance/OpenBBTerminal.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/GamestonkTerminal/GamestonkTerminal.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/GamestonkTerminal/GamestonkTerminal/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/GamestonkTerminal/GamestonkTerminal.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/GamestonkTerminal/GamestonkTerminal/network/) [![GitHub issues](https://img.shields.io/github/issues/GamestonkTerminal/GamestonkTerminal.svg)](https://GitHub.com/NGamestonkTerminal/GamestonkTerminal/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/GamestonkTerminal/GamestonkTerminal.svg)](https://github.com/GamestonkTerminal/GamestonkTerminal/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/GamestonkTerminal/GamestonkTerminal.svg)](https://GitHub.com/GamestonkTerminal/GamestonkTerminal/graphs/contributors/) \n\n**Category**: Financial Service\n\n**Github**: [GamestonkTerminal/GamestonkTerminal](https://github.com/GamestonkTerminal/GamestonkTerminal)\n\n**Website**: [github.com/openbb-finance/OpenBBTerminal](https://github.com/openbb-finance/OpenBBTerminal)\n\n**Description**:\nInvestment research for everyone\n\n**Alternative to**: [Bloomberg](https://www.bloomberg.com/)\n"
  },
  {
    "path": "website/docs/Form Building/FormKit.md",
    "content": "\n# FormKit \n\n<a href=\"https://formkit.com/\"><img src=\"https://icons.duckduckgo.com/ip3/formkit.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/formkit/formkit.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/formkit/formkit/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/formkit/formkit.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/formkit/formkit/network/) [![GitHub issues](https://img.shields.io/github/issues/formkit/formkit.svg)](https://GitHub.com/Nformkit/formkit/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/formkit/formkit.svg)](https://github.com/formkit/formkit/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/formkit/formkit.svg)](https://GitHub.com/formkit/formkit/graphs/contributors/) \n\n**Category**: Form Building\n\n**Github**: [formkit/formkit](https://github.com/formkit/formkit)\n\n**Website**: [formkit.com](https://formkit.com/)\n\n**Description**:\n A software to help build attractive forms\n\n**Alternative to**: [Vueform](https://vueform.com/), [Typeform](https://www.typeform.com/)\n"
  },
  {
    "path": "website/docs/Forum Software/Discourse.md",
    "content": "\n# Discourse \n\n<a href=\"https://www.discourse.org/\"><img src=\"https://icons.duckduckgo.com/ip3/www.discourse.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/discourse/discourse.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/discourse/discourse/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/discourse/discourse.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/discourse/discourse/network/) [![GitHub issues](https://img.shields.io/github/issues/discourse/discourse.svg)](https://GitHub.com/Ndiscourse/discourse/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/discourse/discourse.svg)](https://github.com/discourse/discourse/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/discourse/discourse.svg)](https://GitHub.com/discourse/discourse/graphs/contributors/) \n\n**Category**: Forum Software\n\n**Github**: [discourse/discourse](https://github.com/discourse/discourse)\n\n**Website**: [www.discourse.org](https://www.discourse.org/)\n\n**Description**:\nA platform for community discussion\n\n**Alternative to**: [Tribe](https://tribe.so/), [Circle](https://circle.so/)\n"
  },
  {
    "path": "website/docs/Forum Software/Vanilla.md",
    "content": "\n# Vanilla \n\n<a href=\"https://vanillaforums.com/\"><img src=\"https://icons.duckduckgo.com/ip3/vanillaforums.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/vanilla/vanilla.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/vanilla/vanilla/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/vanilla/vanilla.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/vanilla/vanilla/network/) [![GitHub issues](https://img.shields.io/github/issues/vanilla/vanilla.svg)](https://GitHub.com/Nvanilla/vanilla/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/vanilla/vanilla.svg)](https://github.com/vanilla/vanilla/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/vanilla/vanilla.svg)](https://GitHub.com/vanilla/vanilla/graphs/contributors/) \n\n**Category**: Forum Software\n\n**Github**: [vanilla/vanilla](https://github.com/vanilla/vanilla)\n\n**Website**: [vanillaforums.com](https://vanillaforums.com/)\n\n**Description**:\nA platform for community discussion\n\n**Alternative to**: [Tribe](https://tribe.so/), [Circle](https://circle.so/)\n"
  },
  {
    "path": "website/docs/Graph database/ArangoDB.md",
    "content": "\n# ArangoDB \n\n<a href=\"https://www.arangodb.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.arangodb.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/arangodb/arangodb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/arangodb/arangodb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/arangodb/arangodb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/arangodb/arangodb/network/) [![GitHub issues](https://img.shields.io/github/issues/arangodb/arangodb.svg)](https://GitHub.com/Narangodb/arangodb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/arangodb/arangodb.svg)](https://github.com/arangodb/arangodb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/arangodb/arangodb.svg)](https://GitHub.com/arangodb/arangodb/graphs/contributors/) \n\n**Category**: Graph database\n\n**Github**: [arangodb/arangodb](https://github.com/arangodb/arangodb)\n\n**Website**: [www.arangodb.com](https://www.arangodb.com/)\n\n**Description**:\nGraph database and document store\n\n**Alternative to**: [TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\n"
  },
  {
    "path": "website/docs/Graph database/Memgraph.md",
    "content": "\n# Memgraph \n\n<a href=\"https://memgraph.com/\"><img src=\"https://icons.duckduckgo.com/ip3/memgraph.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/memgraph/memgraph.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/memgraph/memgraph/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/memgraph/memgraph.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/memgraph/memgraph/network/) [![GitHub issues](https://img.shields.io/github/issues/memgraph/memgraph.svg)](https://GitHub.com/Nmemgraph/memgraph/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/memgraph/memgraph.svg)](https://github.com/memgraph/memgraph/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/memgraph/memgraph.svg)](https://GitHub.com/memgraph/memgraph/graphs/contributors/) \n\n**Category**: Graph database\n\n**Github**: [memgraph/memgraph](https://github.com/memgraph/memgraph)\n\n**Website**: [memgraph.com](https://memgraph.com/)\n\n**Description**:\nIn-memory graph database\n\n**Alternative to**: [TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\n"
  },
  {
    "path": "website/docs/Graph database/Neo4j.md",
    "content": "\n# Neo4j \n\n<a href=\"http://neo4j.com/\"><img src=\"https://icons.duckduckgo.com/ip3/neo4j.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/neo4j/neo4j.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/neo4j/neo4j/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/neo4j/neo4j.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/neo4j/neo4j/network/) [![GitHub issues](https://img.shields.io/github/issues/neo4j/neo4j.svg)](https://GitHub.com/Nneo4j/neo4j/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/neo4j/neo4j.svg)](https://github.com/neo4j/neo4j/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/neo4j/neo4j.svg)](https://GitHub.com/neo4j/neo4j/graphs/contributors/) \n\n**Category**: Graph database\n\n**Github**: [neo4j/neo4j](https://github.com/neo4j/neo4j)\n\n**Website**: [neo4j.com](http://neo4j.com/)\n\n**Description**:\nGraph database platform\n\n**Alternative to**: [TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\n"
  },
  {
    "path": "website/docs/Graph database/TerminusDB.md",
    "content": "\n# TerminusDB \n\n<a href=\"https://terminusdb.com/\"><img src=\"https://icons.duckduckgo.com/ip3/terminusdb.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/terminusdb/terminusdb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/terminusdb/terminusdb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/terminusdb/terminusdb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/terminusdb/terminusdb/network/) [![GitHub issues](https://img.shields.io/github/issues/terminusdb/terminusdb.svg)](https://GitHub.com/Nterminusdb/terminusdb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/terminusdb/terminusdb.svg)](https://github.com/terminusdb/terminusdb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/terminusdb/terminusdb.svg)](https://GitHub.com/terminusdb/terminusdb/graphs/contributors/) \n\n**Category**: Graph database\n\n**Github**: [terminusdb/terminusdb](https://github.com/terminusdb/terminusdb)\n\n**Website**: [terminusdb.com](https://terminusdb.com/)\n\n**Description**:\nKnowledge graph and document store\n\n**Alternative to**: [TigerGraph](https://www.tigergraph.com/), [Amazon Neptune](https://aws.amazon.com/neptune/)\n"
  },
  {
    "path": "website/docs/Helpdesk Solution/Peppermint.md",
    "content": "\n# Peppermint \n\n<a href=\"https://peppermint.sh\"><img src=\"https://icons.duckduckgo.com/ip3/peppermint.sh.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Peppermint-Lab/peppermint.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Peppermint-Lab/peppermint/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Peppermint-Lab/peppermint.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Peppermint-Lab/peppermint/network/) [![GitHub issues](https://img.shields.io/github/issues/Peppermint-Lab/peppermint.svg)](https://GitHub.com/NPeppermint-Lab/peppermint/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Peppermint-Lab/peppermint.svg)](https://github.com/Peppermint-Lab/peppermint/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Peppermint-Lab/peppermint.svg)](https://GitHub.com/Peppermint-Lab/peppermint/graphs/contributors/) \n\n**Category**: Helpdesk Solution\n\n**Github**: [Peppermint-Lab/peppermint](https://github.com/Peppermint-Lab/peppermint)\n\n**Website**: [peppermint.sh](https://peppermint.sh)\n\n**Description**:\nTicket Management & Helpdesk system\n\n**Alternative to**: [Zendesk](https://www.zendesk.co.uk/)\n"
  },
  {
    "path": "website/docs/Helpdesk Solution/UVDesk.md",
    "content": "\n# UVDesk \n\n<a href=\"https://www.uvdesk.com/en/\"><img src=\"https://icons.duckduckgo.com/ip3/www.uvdesk.com/en.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/uvdesk/community-skeleton.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/uvdesk/community-skeleton/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/uvdesk/community-skeleton.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/uvdesk/community-skeleton/network/) [![GitHub issues](https://img.shields.io/github/issues/uvdesk/community-skeleton.svg)](https://GitHub.com/Nuvdesk/community-skeleton/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/uvdesk/community-skeleton.svg)](https://github.com/uvdesk/community-skeleton/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/uvdesk/community-skeleton.svg)](https://GitHub.com/uvdesk/community-skeleton/graphs/contributors/) \n\n**Category**: Helpdesk Solution\n\n**Github**: [uvdesk/community-skeleton](https://github.com/uvdesk/community-skeleton)\n\n**Website**: [www.uvdesk.com/en](https://www.uvdesk.com/en/)\n\n**Description**:\nTicket Management & Helpdesk system\n\n**Alternative to**: [Zendesk](https://www.zendesk.co.uk/)\n"
  },
  {
    "path": "website/docs/Internal Tools/AppSmith.md",
    "content": "\n# AppSmith \n\n<a href=\"https://www.appsmith.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.appsmith.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/appsmithorg/appsmith.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/appsmithorg/appsmith/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/appsmithorg/appsmith.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/appsmithorg/appsmith/network/) [![GitHub issues](https://img.shields.io/github/issues/appsmithorg/appsmith.svg)](https://GitHub.com/Nappsmithorg/appsmith/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/appsmithorg/appsmith.svg)](https://github.com/appsmithorg/appsmith/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/appsmithorg/appsmith.svg)](https://GitHub.com/appsmithorg/appsmith/graphs/contributors/) \n\n**Category**: Internal Tools\n\n**Github**: [appsmithorg/appsmith](https://github.com/appsmithorg/appsmith)\n\n**Website**: [www.appsmith.com](https://www.appsmith.com/)\n\n**Description**:\nLow-code platform for internal tools\n\n**Alternative to**: [Retool](https://retool.com/)\n"
  },
  {
    "path": "website/docs/Internal Tools/Budibase.md",
    "content": "\n# Budibase \n\n<a href=\"https://budibase.com/\"><img src=\"https://icons.duckduckgo.com/ip3/budibase.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Budibase/budibase.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Budibase/budibase/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Budibase/budibase.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Budibase/budibase/network/) [![GitHub issues](https://img.shields.io/github/issues/Budibase/budibase.svg)](https://GitHub.com/NBudibase/budibase/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Budibase/budibase.svg)](https://github.com/Budibase/budibase/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Budibase/budibase.svg)](https://GitHub.com/Budibase/budibase/graphs/contributors/) \n\n**Category**: Internal Tools\n\n**Github**: [Budibase/budibase](https://github.com/Budibase/budibase)\n\n**Website**: [budibase.com](https://budibase.com/)\n\n**Description**:\nLow-code platform for internal tools\n\n**Alternative to**: [Retool](https://retool.com/)\n"
  },
  {
    "path": "website/docs/Internal Tools/Lowdefy.md",
    "content": "\n# Lowdefy \n\n<a href=\"https://lowdefy.com/\"><img src=\"https://icons.duckduckgo.com/ip3/lowdefy.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/lowdefy/lowdefy.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/lowdefy/lowdefy/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/lowdefy/lowdefy.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/lowdefy/lowdefy/network/) [![GitHub issues](https://img.shields.io/github/issues/lowdefy/lowdefy.svg)](https://GitHub.com/Nlowdefy/lowdefy/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/lowdefy/lowdefy.svg)](https://github.com/lowdefy/lowdefy/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/lowdefy/lowdefy.svg)](https://GitHub.com/lowdefy/lowdefy/graphs/contributors/) \n\n**Category**: Internal Tools\n\n**Github**: [lowdefy/lowdefy](https://github.com/lowdefy/lowdefy)\n\n**Website**: [lowdefy.com](https://lowdefy.com/)\n\n**Description**:\nYAML-based low-code platform for internal tools\n\n**Alternative to**: [Retool](https://retool.com/)\n"
  },
  {
    "path": "website/docs/Internal Tools/Tooljet.md",
    "content": "\n# Tooljet \n\n<a href=\"https://tooljet.io/\"><img src=\"https://icons.duckduckgo.com/ip3/tooljet.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/tooljet/tooljet.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/tooljet/tooljet/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/tooljet/tooljet.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/tooljet/tooljet/network/) [![GitHub issues](https://img.shields.io/github/issues/tooljet/tooljet.svg)](https://GitHub.com/Ntooljet/tooljet/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/tooljet/tooljet.svg)](https://github.com/tooljet/tooljet/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/tooljet/tooljet.svg)](https://GitHub.com/tooljet/tooljet/graphs/contributors/) \n\n**Category**: Internal Tools\n\n**Github**: [tooljet/tooljet](https://github.com/tooljet/tooljet)\n\n**Website**: [tooljet.io](https://tooljet.io/)\n\n**Description**:\nLow-code framework for internal tools\n\n**Alternative to**: [Retool](https://retool.com/)\n"
  },
  {
    "path": "website/docs/Internal Tools/Windmill.md",
    "content": "\n# Windmill \n\n<a href=\"https://windmill.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/windmill.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/windmill-labs/windmill.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/windmill-labs/windmill/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/windmill-labs/windmill.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/windmill-labs/windmill/network/) [![GitHub issues](https://img.shields.io/github/issues/windmill-labs/windmill.svg)](https://GitHub.com/Nwindmill-labs/windmill/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/windmill-labs/windmill.svg)](https://github.com/windmill-labs/windmill/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/windmill-labs/windmill.svg)](https://GitHub.com/windmill-labs/windmill/graphs/contributors/) \n\n**Category**: Internal Tools\n\n**Github**: [windmill-labs/windmill](https://github.com/windmill-labs/windmill)\n\n**Website**: [windmill.dev](https://windmill.dev/)\n\n**Description**:\nCompany-wide apps and automations from minimal python or typescript scripts\n\n**Alternative to**: [Retool](https://retool.com/)\n"
  },
  {
    "path": "website/docs/Log Management/Graylog.md",
    "content": "\n# Graylog \n\n<a href=\"https://www.graylog.org/\"><img src=\"https://icons.duckduckgo.com/ip3/www.graylog.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Graylog2/graylog2-server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Graylog2/graylog2-server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Graylog2/graylog2-server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Graylog2/graylog2-server/network/) [![GitHub issues](https://img.shields.io/github/issues/Graylog2/graylog2-server.svg)](https://GitHub.com/NGraylog2/graylog2-server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Graylog2/graylog2-server.svg)](https://github.com/Graylog2/graylog2-server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Graylog2/graylog2-server.svg)](https://GitHub.com/Graylog2/graylog2-server/graphs/contributors/) \n\n**Category**: Log Management\n\n**Github**: [Graylog2/graylog2-server](https://github.com/Graylog2/graylog2-server)\n\n**Website**: [www.graylog.org](https://www.graylog.org/)\n\n**Description**:\nLog management platform\n\n**Alternative to**: [Splunk](https://www.splunk.com/)\n"
  },
  {
    "path": "website/docs/Log Management/Quickwit.md",
    "content": "\n# Quickwit \n\n<a href=\"https://quickwit.io/\"><img src=\"https://icons.duckduckgo.com/ip3/quickwit.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/quickwit-oss/quickwit.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/quickwit-oss/quickwit/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/quickwit-oss/quickwit.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/quickwit-oss/quickwit/network/) [![GitHub issues](https://img.shields.io/github/issues/quickwit-oss/quickwit.svg)](https://GitHub.com/Nquickwit-oss/quickwit/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/quickwit-oss/quickwit.svg)](https://github.com/quickwit-oss/quickwit/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/quickwit-oss/quickwit.svg)](https://GitHub.com/quickwit-oss/quickwit/graphs/contributors/) \n\n**Category**: Log Management\n\n**Github**: [quickwit-oss/quickwit](https://github.com/quickwit-oss/quickwit)\n\n**Website**: [quickwit.io](https://quickwit.io/)\n\n**Description**:\nCloud-native log management & analytics\n\n**Alternative to**: [Elastic Cloud](https://www.elastic.co/elastic-stack/)\n"
  },
  {
    "path": "website/docs/ML Ops/Cortex.md",
    "content": "\n# Cortex \n\n<a href=\"https://www.cortex.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/www.cortex.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/cortexlabs/cortex.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/cortexlabs/cortex/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/cortexlabs/cortex.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/cortexlabs/cortex/network/) [![GitHub issues](https://img.shields.io/github/issues/cortexlabs/cortex.svg)](https://GitHub.com/Ncortexlabs/cortex/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/cortexlabs/cortex.svg)](https://github.com/cortexlabs/cortex/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/cortexlabs/cortex.svg)](https://GitHub.com/cortexlabs/cortex/graphs/contributors/) \n\n**Category**: ML Ops\n\n**Github**: [cortexlabs/cortex](https://github.com/cortexlabs/cortex)\n\n**Website**: [www.cortex.dev](https://www.cortex.dev/)\n\n**Description**:\nProduction infrastructure for machine learning\n\n**Alternative to**: [AWS SageMaker](https://aws.amazon.com/sagemaker/)\n"
  },
  {
    "path": "website/docs/ML Ops/MindsDB.md",
    "content": "\n# MindsDB \n\n<a href=\"https://mindsdb.com/\"><img src=\"https://icons.duckduckgo.com/ip3/mindsdb.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mindsdb/mindsdb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mindsdb/mindsdb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mindsdb/mindsdb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mindsdb/mindsdb/network/) [![GitHub issues](https://img.shields.io/github/issues/mindsdb/mindsdb.svg)](https://GitHub.com/Nmindsdb/mindsdb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mindsdb/mindsdb.svg)](https://github.com/mindsdb/mindsdb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mindsdb/mindsdb.svg)](https://GitHub.com/mindsdb/mindsdb/graphs/contributors/) \n\n**Category**: ML Ops\n\n**Github**: [mindsdb/mindsdb](https://github.com/mindsdb/mindsdb)\n\n**Website**: [mindsdb.com](https://mindsdb.com/)\n\n**Description**:\nIn-database machine learning platform\n\n**Alternative to**: [BigQuery ML](https://cloud.google.com/bigquery-ml/docs)\n"
  },
  {
    "path": "website/docs/ML Ops/Ploomber.md",
    "content": "\n# Ploomber \n\n<a href=\"https://ploomber.io/\"><img src=\"https://icons.duckduckgo.com/ip3/ploomber.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/ploomber/ploomber.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/ploomber/ploomber/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/ploomber/ploomber.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/ploomber/ploomber/network/) [![GitHub issues](https://img.shields.io/github/issues/ploomber/ploomber.svg)](https://GitHub.com/Nploomber/ploomber/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/ploomber/ploomber.svg)](https://github.com/ploomber/ploomber/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/ploomber/ploomber.svg)](https://GitHub.com/ploomber/ploomber/graphs/contributors/) \n\n**Category**: ML Ops\n\n**Github**: [ploomber/ploomber](https://github.com/ploomber/ploomber)\n\n**Website**: [ploomber.io](https://ploomber.io/)\n\n**Description**:\nYAML-based pipeline builder for ML models\n\n**Alternative to**: [AWS SageMaker](https://aws.amazon.com/sagemaker/)\n"
  },
  {
    "path": "website/docs/ML Ops/Seldon.md",
    "content": "\n# Seldon \n\n<a href=\"https://seldon.io/\"><img src=\"https://icons.duckduckgo.com/ip3/seldon.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/SeldonIO/seldon-core.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/SeldonIO/seldon-core/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/SeldonIO/seldon-core.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/SeldonIO/seldon-core/network/) [![GitHub issues](https://img.shields.io/github/issues/SeldonIO/seldon-core.svg)](https://GitHub.com/NSeldonIO/seldon-core/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/SeldonIO/seldon-core.svg)](https://github.com/SeldonIO/seldon-core/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/SeldonIO/seldon-core.svg)](https://GitHub.com/SeldonIO/seldon-core/graphs/contributors/) \n\n**Category**: ML Ops\n\n**Github**: [SeldonIO/seldon-core](https://github.com/SeldonIO/seldon-core)\n\n**Website**: [seldon.io](https://seldon.io/)\n\n**Description**:\nDeployment & monitoring for machine learning at scale\n\n**Alternative to**: [AWS SageMaker](https://aws.amazon.com/sagemaker/), [Google Vertex AI](https://cloud.google.com/vertex-ai)\n"
  },
  {
    "path": "website/docs/ML Ops/Zilliz.md",
    "content": "\n# Zilliz \n\n<a href=\"https://zilliz.com)'s [Towhe\"><img src=\"https://icons.duckduckgo.com/ip3/zilliz.com)'s [Towhe.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/towhee-io/towhee.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/towhee-io/towhee/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/towhee-io/towhee.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/towhee-io/towhee/network/) [![GitHub issues](https://img.shields.io/github/issues/towhee-io/towhee.svg)](https://GitHub.com/Ntowhee-io/towhee/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/towhee-io/towhee.svg)](https://github.com/towhee-io/towhee/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/towhee-io/towhee.svg)](https://GitHub.com/towhee-io/towhee/graphs/contributors/) \n\n**Category**: ML Ops\n\n**Github**: [towhee-io/towhee](https://github.com/towhee-io/towhee)\n\n**Website**: [zilliz.com)'s [Towhe](https://zilliz.com)'s [Towhe)\n\n**Description**:\nPlatform for generating embedding vectors\n\n**Alternative to**: [AWS SageMaker](https://aws.amazon.com/sagemaker)\n"
  },
  {
    "path": "website/docs/Messaging/Element.md",
    "content": "\n# Element \n\n<a href=\"https://element.io/\"><img src=\"https://icons.duckduckgo.com/ip3/element.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/vector-im/element-web.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/vector-im/element-web/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/vector-im/element-web.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/vector-im/element-web/network/) [![GitHub issues](https://img.shields.io/github/issues/vector-im/element-web.svg)](https://GitHub.com/Nvector-im/element-web/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/vector-im/element-web.svg)](https://github.com/vector-im/element-web/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/vector-im/element-web.svg)](https://GitHub.com/vector-im/element-web/graphs/contributors/) \n\n**Category**: Messaging\n\n**Github**: [vector-im/element-web](https://github.com/vector-im/element-web)\n\n**Website**: [element.io](https://element.io/)\n\n**Description**:\nEnterprise communication platform\n\n**Alternative to**: [Slack](https://slack.com/)\n"
  },
  {
    "path": "website/docs/Messaging/Mattermost.md",
    "content": "\n# Mattermost \n\n<a href=\"https://mattermost.com/\"><img src=\"https://icons.duckduckgo.com/ip3/mattermost.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mattermost/mattermost-server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mattermost/mattermost-server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mattermost/mattermost-server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mattermost/mattermost-server/network/) [![GitHub issues](https://img.shields.io/github/issues/mattermost/mattermost-server.svg)](https://GitHub.com/Nmattermost/mattermost-server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mattermost/mattermost-server.svg)](https://github.com/mattermost/mattermost-server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mattermost/mattermost-server.svg)](https://GitHub.com/mattermost/mattermost-server/graphs/contributors/) \n\n**Category**: Messaging\n\n**Github**: [mattermost/mattermost-server](https://github.com/mattermost/mattermost-server)\n\n**Website**: [mattermost.com](https://mattermost.com/)\n\n**Description**:\nEnterprise communication platform for developers\n\n**Alternative to**: [Slack](https://slack.com/)\n"
  },
  {
    "path": "website/docs/Messaging/Rocket.chat.md",
    "content": "\n# Rocket.chat \n\n<a href=\"https://rocket.chat/\"><img src=\"https://icons.duckduckgo.com/ip3/rocket.chat.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/RocketChat/Rocket.Chat.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/RocketChat/Rocket.Chat/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/RocketChat/Rocket.Chat.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/RocketChat/Rocket.Chat/network/) [![GitHub issues](https://img.shields.io/github/issues/RocketChat/Rocket.Chat.svg)](https://GitHub.com/NRocketChat/Rocket.Chat/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/RocketChat/Rocket.Chat.svg)](https://github.com/RocketChat/Rocket.Chat/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/RocketChat/Rocket.Chat.svg)](https://GitHub.com/RocketChat/Rocket.Chat/graphs/contributors/) \n\n**Category**: Messaging\n\n**Github**: [RocketChat/Rocket.Chat](https://github.com/RocketChat/Rocket.Chat)\n\n**Website**: [rocket.chat](https://rocket.chat/)\n\n**Description**:\nEnterprise communication platform\n\n**Alternative to**: [Slack](https://slack.com/)\n"
  },
  {
    "path": "website/docs/Messaging/Tinode.md",
    "content": "\n# Tinode \n\n<a href=\"https://tinode.co/\"><img src=\"https://icons.duckduckgo.com/ip3/tinode.co.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/tiode/chat.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/tiode/chat/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/tiode/chat.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/tiode/chat/network/) [![GitHub issues](https://img.shields.io/github/issues/tiode/chat.svg)](https://GitHub.com/Ntiode/chat/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/tiode/chat.svg)](https://github.com/tiode/chat/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/tiode/chat.svg)](https://GitHub.com/tiode/chat/graphs/contributors/) \n\n**Category**: Messaging\n\n**Github**: [tiode/chat](https://github.com/tiode/chat)\n\n**Website**: [tinode.co](https://tinode.co/)\n\n**Description**:\nGeneral instant messaging\n\n**Alternative to**: [WhatsApp](https://www.whatsapp.com/), [Telegram](https://www.telegram.org/)\n"
  },
  {
    "path": "website/docs/Messaging/Zulip.md",
    "content": "\n# Zulip \n\n<a href=\"https://zulip.com/\"><img src=\"https://icons.duckduckgo.com/ip3/zulip.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/zulip/zulip.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/zulip/zulip/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/zulip/zulip.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/zulip/zulip/network/) [![GitHub issues](https://img.shields.io/github/issues/zulip/zulip.svg)](https://GitHub.com/Nzulip/zulip/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/zulip/zulip.svg)](https://github.com/zulip/zulip/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/zulip/zulip.svg)](https://GitHub.com/zulip/zulip/graphs/contributors/) \n\n**Category**: Messaging\n\n**Github**: [zulip/zulip](https://github.com/zulip/zulip)\n\n**Website**: [zulip.com](https://zulip.com/)\n\n**Description**:\nTeam chat\n\n**Alternative to**: [Slack](https://slack.com/)\n"
  },
  {
    "path": "website/docs/Metrics store/Cube.js.md",
    "content": "\n# Cube.js \n\n<a href=\"https://cube.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/cube.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/cube-js/cube.js.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/cube-js/cube.js/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/cube-js/cube.js.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/cube-js/cube.js/network/) [![GitHub issues](https://img.shields.io/github/issues/cube-js/cube.js.svg)](https://GitHub.com/Ncube-js/cube.js/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/cube-js/cube.js.svg)](https://github.com/cube-js/cube.js/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/cube-js/cube.js.svg)](https://GitHub.com/cube-js/cube.js/graphs/contributors/) \n\n**Category**: Metrics store\n\n**Github**: [cube-js/cube.js](https://github.com/cube-js/cube.js)\n\n**Website**: [cube.dev](https://cube.dev/)\n\n**Description**:\nHeadless business intelligence suite\n\n**Alternative to**: [Looker](https://looker.com/)\n"
  },
  {
    "path": "website/docs/Metrics store/LightDash.md",
    "content": "\n# LightDash \n\n<a href=\"https://www.lightdash.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.lightdash.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/lightdash/lightdash.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/lightdash/lightdash/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/lightdash/lightdash.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/lightdash/lightdash/network/) [![GitHub issues](https://img.shields.io/github/issues/lightdash/lightdash.svg)](https://GitHub.com/Nlightdash/lightdash/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/lightdash/lightdash.svg)](https://github.com/lightdash/lightdash/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/lightdash/lightdash.svg)](https://GitHub.com/lightdash/lightdash/graphs/contributors/) \n\n**Category**: Metrics store\n\n**Github**: [lightdash/lightdash](https://github.com/lightdash/lightdash)\n\n**Website**: [www.lightdash.com](https://www.lightdash.com/)\n\n**Description**:\nLow-code metrics layer, alternative to Looker\n\n**Alternative to**: [Looker](https://looker.com/)\n"
  },
  {
    "path": "website/docs/Metrics store/MLCraft.md",
    "content": "\n# MLCraft \n\n<a href=\"http://mlcraft.io/\"><img src=\"https://icons.duckduckgo.com/ip3/mlcraft.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mlcraft-io/mlcraft.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mlcraft-io/mlcraft/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mlcraft-io/mlcraft.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mlcraft-io/mlcraft/network/) [![GitHub issues](https://img.shields.io/github/issues/mlcraft-io/mlcraft.svg)](https://GitHub.com/Nmlcraft-io/mlcraft/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mlcraft-io/mlcraft.svg)](https://github.com/mlcraft-io/mlcraft/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mlcraft-io/mlcraft.svg)](https://GitHub.com/mlcraft-io/mlcraft/graphs/contributors/) \n\n**Category**: Metrics store\n\n**Github**: [mlcraft-io/mlcraft](https://github.com/mlcraft-io/mlcraft)\n\n**Website**: [mlcraft.io](http://mlcraft.io/)\n\n**Description**:\nLow-code metrics layer, alternative to Looker\n\n**Alternative to**: [Looker](https://looker.com/)\n"
  },
  {
    "path": "website/docs/Metrics store/MetriQL.md",
    "content": "\n# MetriQL \n\n<a href=\"https://metriql.com/\"><img src=\"https://icons.duckduckgo.com/ip3/metriql.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/metriql/metriql.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/metriql/metriql/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/metriql/metriql.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/metriql/metriql/network/) [![GitHub issues](https://img.shields.io/github/issues/metriql/metriql.svg)](https://GitHub.com/Nmetriql/metriql/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/metriql/metriql.svg)](https://github.com/metriql/metriql/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/metriql/metriql.svg)](https://GitHub.com/metriql/metriql/graphs/contributors/) \n\n**Category**: Metrics store\n\n**Github**: [metriql/metriql](https://github.com/metriql/metriql)\n\n**Website**: [metriql.com](https://metriql.com/)\n\n**Description**:\nHeadless business intelligence suite\n\n**Alternative to**: [Looker](https://looker.com/)\n"
  },
  {
    "path": "website/docs/No-code database/Baserow.md",
    "content": "\n# Baserow \n\n<a href=\"https://baserow.io/\"><img src=\"https://icons.duckduckgo.com/ip3/baserow.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/https://gitlab.com/bramw/baserow.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/https://gitlab.com/bramw/baserow/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/https://gitlab.com/bramw/baserow.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/https://gitlab.com/bramw/baserow/network/) [![GitHub issues](https://img.shields.io/github/issues/https://gitlab.com/bramw/baserow.svg)](https://GitHub.com/Nhttps://gitlab.com/bramw/baserow/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/https://gitlab.com/bramw/baserow.svg)](https://github.com/https://gitlab.com/bramw/baserow/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/https://gitlab.com/bramw/baserow.svg)](https://GitHub.com/https://gitlab.com/bramw/baserow/graphs/contributors/) \n\n**Category**: No-code database\n\n**Github**: [https://gitlab.com/bramw/baserow](https://gitlab.com/bramw/baserow)\n\n**Website**: [baserow.io](https://baserow.io/)\n\n**Description**:\nNo-code database and Airtable alternative\n\n**Alternative to**: [AirTable](https://www.airtable.com/)\n"
  },
  {
    "path": "website/docs/No-code database/NocoDB.md",
    "content": "\n# NocoDB \n\n<a href=\"https://www.nocodb.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.nocodb.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/nocodb/nocodb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/nocodb/nocodb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/nocodb/nocodb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/nocodb/nocodb/network/) [![GitHub issues](https://img.shields.io/github/issues/nocodb/nocodb.svg)](https://GitHub.com/Nnocodb/nocodb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/nocodb/nocodb.svg)](https://github.com/nocodb/nocodb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/nocodb/nocodb.svg)](https://GitHub.com/nocodb/nocodb/graphs/contributors/) \n\n**Category**: No-code database\n\n**Github**: [nocodb/nocodb](https://github.com/nocodb/nocodb)\n\n**Website**: [www.nocodb.com](https://www.nocodb.com/)\n\n**Description**:\nNo-code database and Airtable alternative\n\n**Alternative to**: [AirTable](https://www.airtable.com/)\n"
  },
  {
    "path": "website/docs/No-code database/Rowy.md",
    "content": "\n# Rowy \n\n<a href=\"https://www.rowy.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.rowy.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/rowyio/rowy.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/rowyio/rowy/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/rowyio/rowy.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/rowyio/rowy/network/) [![GitHub issues](https://img.shields.io/github/issues/rowyio/rowy.svg)](https://GitHub.com/Nrowyio/rowy/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/rowyio/rowy.svg)](https://github.com/rowyio/rowy/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/rowyio/rowy.svg)](https://GitHub.com/rowyio/rowy/graphs/contributors/) \n\n**Category**: No-code database\n\n**Github**: [rowyio/rowy](https://github.com/rowyio/rowy)\n\n**Website**: [www.rowy.io](https://www.rowy.io/)\n\n**Description**:\nExtendable Airtable-like spreadsheet UI for databases\n\n**Alternative to**: [AirTable](https://www.airtable.com/)\n"
  },
  {
    "path": "website/docs/No-code database/Totum.md",
    "content": "\n# Totum \n\n<a href=\"https://totum.online/\"><img src=\"https://icons.duckduckgo.com/ip3/totum.online.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/totumonline/totum-mit.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/totumonline/totum-mit/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/totumonline/totum-mit.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/totumonline/totum-mit/network/) [![GitHub issues](https://img.shields.io/github/issues/totumonline/totum-mit.svg)](https://GitHub.com/Ntotumonline/totum-mit/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/totumonline/totum-mit.svg)](https://github.com/totumonline/totum-mit/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/totumonline/totum-mit.svg)](https://GitHub.com/totumonline/totum-mit/graphs/contributors/) \n\n**Category**: No-code database\n\n**Github**: [totumonline/totum-mit](https://github.com/totumonline/totum-mit)\n\n**Website**: [totum.online](https://totum.online/)\n\n**Description**:\nBusiness database for non-programmers\n\n**Alternative to**: [AirTable](https://www.airtable.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/AppFlowy.md",
    "content": "\n# AppFlowy \n\n<a href=\"https://www.appflowy.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.appflowy.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/AppFlowy-IO/appflowy.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/AppFlowy-IO/appflowy/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/AppFlowy-IO/appflowy.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/AppFlowy-IO/appflowy/network/) [![GitHub issues](https://img.shields.io/github/issues/AppFlowy-IO/appflowy.svg)](https://GitHub.com/NAppFlowy-IO/appflowy/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/AppFlowy-IO/appflowy.svg)](https://github.com/AppFlowy-IO/appflowy/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/AppFlowy-IO/appflowy.svg)](https://GitHub.com/AppFlowy-IO/appflowy/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [AppFlowy-IO/appflowy](https://github.com/AppFlowy-IO/appflowy)\n\n**Website**: [www.appflowy.io](https://www.appflowy.io/)\n\n**Description**:\nOpen-source alternative to Notion\n\n**Alternative to**: [Notion](https://www.notion.so/)\n"
  },
  {
    "path": "website/docs/Notetaking/Athens-Research.md",
    "content": "\n# Athens Research \n\n<a href=\"https://www.athensresearch.org/\"><img src=\"https://icons.duckduckgo.com/ip3/www.athensresearch.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/athensresearch/athens.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/athensresearch/athens/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/athensresearch/athens.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/athensresearch/athens/network/) [![GitHub issues](https://img.shields.io/github/issues/athensresearch/athens.svg)](https://GitHub.com/Nathensresearch/athens/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/athensresearch/athens.svg)](https://github.com/athensresearch/athens/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/athensresearch/athens.svg)](https://GitHub.com/athensresearch/athens/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [athensresearch/athens](https://github.com/athensresearch/athens)\n\n**Website**: [www.athensresearch.org](https://www.athensresearch.org/)\n\n**Description**:\nKnowledge graph for research and notetaking\n\n**Alternative to**: [Roam Research](https://roamresearch.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/Bangle.io.md",
    "content": "\n# Bangle.io \n\n<a href=\"https://bangle.io/\"><img src=\"https://icons.duckduckgo.com/ip3/bangle.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/bangle-io/bangle-io.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/bangle-io/bangle-io/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/bangle-io/bangle-io.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/bangle-io/bangle-io/network/) [![GitHub issues](https://img.shields.io/github/issues/bangle-io/bangle-io.svg)](https://GitHub.com/Nbangle-io/bangle-io/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/bangle-io/bangle-io.svg)](https://github.com/bangle-io/bangle-io/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/bangle-io/bangle-io.svg)](https://GitHub.com/bangle-io/bangle-io/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [bangle-io/bangle-io](https://github.com/bangle-io/bangle-io)\n\n**Website**: [bangle.io](https://bangle.io/)\n\n**Description**:\nA rich note note taking web app that works on top of your locally saved Markdown files\n\n**Alternative to**: [Notion](https://www.notion.so/)\n"
  },
  {
    "path": "website/docs/Notetaking/Boost-Note.md",
    "content": "\n# Boost Note \n\n<a href=\"https://boostnote.io/\"><img src=\"https://icons.duckduckgo.com/ip3/boostnote.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/BoostIO/BoostNote-App.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/BoostIO/BoostNote-App/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/BoostIO/BoostNote-App.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/BoostIO/BoostNote-App/network/) [![GitHub issues](https://img.shields.io/github/issues/BoostIO/BoostNote-App.svg)](https://GitHub.com/NBoostIO/BoostNote-App/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/BoostIO/BoostNote-App.svg)](https://github.com/BoostIO/BoostNote-App/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/BoostIO/BoostNote-App.svg)](https://GitHub.com/BoostIO/BoostNote-App/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [BoostIO/BoostNote-App](https://github.com/BoostIO/BoostNote-App)\n\n**Website**: [boostnote.io](https://boostnote.io/)\n\n**Description**:\nCollaborative workspace for developer teams\n\n**Alternative to**: [Notion](https://www.notion.so/)\n"
  },
  {
    "path": "website/docs/Notetaking/Dendron.md",
    "content": "\n# Dendron \n\n<a href=\"https://www.dendron.so/\"><img src=\"https://icons.duckduckgo.com/ip3/www.dendron.so.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/dendronhq/dendron.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/dendronhq/dendron/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/dendronhq/dendron.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/dendronhq/dendron/network/) [![GitHub issues](https://img.shields.io/github/issues/dendronhq/dendron.svg)](https://GitHub.com/Ndendronhq/dendron/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/dendronhq/dendron.svg)](https://github.com/dendronhq/dendron/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/dendronhq/dendron.svg)](https://GitHub.com/dendronhq/dendron/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [dendronhq/dendron](https://github.com/dendronhq/dendron)\n\n**Website**: [www.dendron.so](https://www.dendron.so/)\n\n**Description**:\nKnowledge base plugin for VS Code\n\n**Alternative to**: [Roam Research](https://roamresearch.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/Joplin.md",
    "content": "\n# Joplin \n\n<a href=\"https://joplinapp.org/\"><img src=\"https://icons.duckduckgo.com/ip3/joplinapp.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/laurent22/joplin.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/laurent22/joplin/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/laurent22/joplin.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/laurent22/joplin/network/) [![GitHub issues](https://img.shields.io/github/issues/laurent22/joplin.svg)](https://GitHub.com/Nlaurent22/joplin/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/laurent22/joplin.svg)](https://github.com/laurent22/joplin/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/laurent22/joplin.svg)](https://GitHub.com/laurent22/joplin/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [laurent22/joplin](https://github.com/laurent22/joplin)\n\n**Website**: [joplinapp.org](https://joplinapp.org/)\n\n**Description**:\nSecure, Cross-platform, Open-Source  Markdown Note Taking App\n\n**Alternative to**: [Evernote](https://evernote.com/), [Onenote](hhttps://www.onenote.com/n), [Roam Research](https://roamresearch.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/Logseq.md",
    "content": "\n# Logseq \n\n<a href=\"https://logseq.com/\"><img src=\"https://icons.duckduckgo.com/ip3/logseq.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/logseq/logseq.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/logseq/logseq/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/logseq/logseq.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/logseq/logseq/network/) [![GitHub issues](https://img.shields.io/github/issues/logseq/logseq.svg)](https://GitHub.com/Nlogseq/logseq/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/logseq/logseq.svg)](https://github.com/logseq/logseq/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/logseq/logseq.svg)](https://GitHub.com/logseq/logseq/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [logseq/logseq](https://github.com/logseq/logseq)\n\n**Website**: [logseq.com](https://logseq.com/)\n\n**Description**:\nKnowledge base manager\n\n**Alternative to**: [Roam Research](https://roamresearch.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/Notabase.md",
    "content": "\n# Notabase \n\n<a href=\"https://notabase.io\"><img src=\"https://icons.duckduckgo.com/ip3/notabase.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/churichard/notabase.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/churichard/notabase/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/churichard/notabase.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/churichard/notabase/network/) [![GitHub issues](https://img.shields.io/github/issues/churichard/notabase.svg)](https://GitHub.com/Nchurichard/notabase/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/churichard/notabase.svg)](https://github.com/churichard/notabase/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/churichard/notabase.svg)](https://GitHub.com/churichard/notabase/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [churichard/notabase](https://github.com/churichard/notabase)\n\n**Website**: [notabase.io](https://notabase.io)\n\n**Description**:\nPowerful and easy-to-use note-taking app for networked thinking\n\n**Alternative to**: [Notion](https://www.notion.so/), [Roam Research](https://roamresearch.com/)\n"
  },
  {
    "path": "website/docs/Notetaking/Outline.md",
    "content": "\n# Outline \n\n<a href=\"https://www.getoutline.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.getoutline.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/outline/outline.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/outline/outline/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/outline/outline.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/outline/outline/network/) [![GitHub issues](https://img.shields.io/github/issues/outline/outline.svg)](https://GitHub.com/Noutline/outline/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/outline/outline.svg)](https://github.com/outline/outline/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/outline/outline.svg)](https://GitHub.com/outline/outline/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [outline/outline](https://github.com/outline/outline)\n\n**Website**: [www.getoutline.com](https://www.getoutline.com/)\n\n**Description**:\nWiki and knowledge base\n\n**Alternative to**: [Notion](https://notion.so)\n"
  },
  {
    "path": "website/docs/Notetaking/Trilium.cc.md",
    "content": "\n# Trilium.cc \n\n<a href=\"https://trilium.cc/\"><img src=\"https://icons.duckduckgo.com/ip3/trilium.cc.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/zadam/trilium.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/zadam/trilium/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/zadam/trilium.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/zadam/trilium/network/) [![GitHub issues](https://img.shields.io/github/issues/zadam/trilium.svg)](https://GitHub.com/Nzadam/trilium/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/zadam/trilium.svg)](https://github.com/zadam/trilium/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/zadam/trilium.svg)](https://GitHub.com/zadam/trilium/graphs/contributors/) \n\n**Category**: Notetaking\n\n**Github**: [zadam/trilium](https://github.com/zadam/trilium)\n\n**Website**: [trilium.cc](https://trilium.cc/)\n\n**Description**:\nPersonal knowledge base\n\n**Alternative to**: [Evernote](https://evernote.com/), [Onenote](https://www.onenote.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Chaos-Genius.md",
    "content": "\n# Chaos Genius \n\n<a href=\"https://www.chaosgenius.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.chaosgenius.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/chaos-genius/chaos_genius.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/chaos-genius/chaos_genius/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/chaos-genius/chaos_genius.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/chaos-genius/chaos_genius/network/) [![GitHub issues](https://img.shields.io/github/issues/chaos-genius/chaos_genius.svg)](https://GitHub.com/Nchaos-genius/chaos_genius/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/chaos-genius/chaos_genius.svg)](https://github.com/chaos-genius/chaos_genius/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/chaos-genius/chaos_genius.svg)](https://GitHub.com/chaos-genius/chaos_genius/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [chaos-genius/chaos_genius](https://github.com/chaos-genius/chaos_genius)\n\n**Website**: [www.chaosgenius.io](https://www.chaosgenius.io/)\n\n**Description**:\nML powered analytics engine for outlier/anomaly detection and root cause analysis\n\n**Alternative to**: [AWS Lookout](https://aws.amazon.com/lookout-for-metrics/), [Anodot](https://www.anodot.com/), [Sisu Data](https://sisudata.com/), [Outlier](https://outlier.ai/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Grafana.md",
    "content": "\n# Grafana \n\n<a href=\"https://grafana.com/\"><img src=\"https://icons.duckduckgo.com/ip3/grafana.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/grafana/grafana.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/grafana/grafana/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/grafana/grafana.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/grafana/grafana/network/) [![GitHub issues](https://img.shields.io/github/issues/grafana/grafana.svg)](https://GitHub.com/Ngrafana/grafana/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/grafana/grafana.svg)](https://github.com/grafana/grafana/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/grafana/grafana.svg)](https://GitHub.com/grafana/grafana/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [grafana/grafana](https://github.com/grafana/grafana)\n\n**Website**: [grafana.com](https://grafana.com/)\n\n**Description**:\nObservability and data visualization platform\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Netdata.md",
    "content": "\n# Netdata \n\n<a href=\"https://www.netdata.cloud\"><img src=\"https://icons.duckduckgo.com/ip3/www.netdata.cloud.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/netdata/netdata.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/netdata/netdata/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/netdata/netdata.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/netdata/netdata/network/) [![GitHub issues](https://img.shields.io/github/issues/netdata/netdata.svg)](https://GitHub.com/Nnetdata/netdata/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/netdata/netdata.svg)](https://github.com/netdata/netdata/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/netdata/netdata.svg)](https://GitHub.com/netdata/netdata/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [netdata/netdata](https://github.com/netdata/netdata)\n\n**Website**: [www.netdata.cloud](https://www.netdata.cloud)\n\n**Description**:\nApplication monitoring and observability platform\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Sentry.md",
    "content": "\n# Sentry \n\n<a href=\"https://sentry.io/\"><img src=\"https://icons.duckduckgo.com/ip3/sentry.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/getsentry/sentry.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/getsentry/sentry/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/getsentry/sentry.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/getsentry/sentry/network/) [![GitHub issues](https://img.shields.io/github/issues/getsentry/sentry.svg)](https://GitHub.com/Ngetsentry/sentry/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/getsentry/sentry.svg)](https://github.com/getsentry/sentry/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/getsentry/sentry.svg)](https://GitHub.com/getsentry/sentry/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [getsentry/sentry](https://github.com/getsentry/sentry)\n\n**Website**: [sentry.io](https://sentry.io/)\n\n**Description**:\nApplication monitoring with a focus on error reporting\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Signoz.md",
    "content": "\n# Signoz \n\n<a href=\"https://signoz.io/\"><img src=\"https://icons.duckduckgo.com/ip3/signoz.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/signoz/signoz.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/signoz/signoz/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/signoz/signoz.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/signoz/signoz/network/) [![GitHub issues](https://img.shields.io/github/issues/signoz/signoz.svg)](https://GitHub.com/Nsignoz/signoz/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/signoz/signoz.svg)](https://github.com/signoz/signoz/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/signoz/signoz.svg)](https://GitHub.com/signoz/signoz/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [signoz/signoz](https://github.com/signoz/signoz)\n\n**Website**: [signoz.io](https://signoz.io/)\n\n**Description**:\nApplication monitoring and observability platform\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/Uptrace.md",
    "content": "\n# Uptrace \n\n<a href=\"https://uptrace.dev/\"><img src=\"https://icons.duckduckgo.com/ip3/uptrace.dev.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/uptrace/uptrace.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/uptrace/uptrace/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/uptrace/uptrace.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/uptrace/uptrace/network/) [![GitHub issues](https://img.shields.io/github/issues/uptrace/uptrace.svg)](https://GitHub.com/Nuptrace/uptrace/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/uptrace/uptrace.svg)](https://github.com/uptrace/uptrace/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/uptrace/uptrace.svg)](https://GitHub.com/uptrace/uptrace/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [uptrace/uptrace](https://github.com/uptrace/uptrace)\n\n**Website**: [uptrace.dev](https://uptrace.dev/)\n\n**Description**:\nApplication monitoring and observability platform\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Observability and monitoring/VictoriaMetrics.md",
    "content": "\n# VictoriaMetrics \n\n<a href=\"https://victoriametrics.com/\"><img src=\"https://icons.duckduckgo.com/ip3/victoriametrics.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/VictoriaMetrics/VictoriaMetrics.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/VictoriaMetrics/VictoriaMetrics/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/VictoriaMetrics/VictoriaMetrics.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/VictoriaMetrics/VictoriaMetrics/network/) [![GitHub issues](https://img.shields.io/github/issues/VictoriaMetrics/VictoriaMetrics.svg)](https://GitHub.com/NVictoriaMetrics/VictoriaMetrics/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/VictoriaMetrics/VictoriaMetrics.svg)](https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/VictoriaMetrics/VictoriaMetrics.svg)](https://GitHub.com/VictoriaMetrics/VictoriaMetrics/graphs/contributors/) \n\n**Category**: Observability and monitoring\n\n**Github**: [VictoriaMetrics/VictoriaMetrics](https://github.com/VictoriaMetrics/VictoriaMetrics)\n\n**Website**: [victoriametrics.com](https://victoriametrics.com/)\n\n**Description**:\nApplication monitoring and observability platform\n\n**Alternative to**: [DataDog](https://www.datadoghq.com/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Password manager/BitWarden.md",
    "content": "\n# BitWarden \n\n<a href=\"https://bitwarden.com/\"><img src=\"https://icons.duckduckgo.com/ip3/bitwarden.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/bitwarden/server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/bitwarden/server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/bitwarden/server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/bitwarden/server/network/) [![GitHub issues](https://img.shields.io/github/issues/bitwarden/server.svg)](https://GitHub.com/Nbitwarden/server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/bitwarden/server.svg)](https://github.com/bitwarden/server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/bitwarden/server.svg)](https://GitHub.com/bitwarden/server/graphs/contributors/) \n\n**Category**: Password manager\n\n**Github**: [bitwarden/server](https://github.com/bitwarden/server)\n\n**Website**: [bitwarden.com](https://bitwarden.com/)\n\n**Description**:\nPassword manager for teams and individuals\n\n**Alternative to**: [1Password](https://1password.com/)\n"
  },
  {
    "path": "website/docs/Password manager/Padloc.md",
    "content": "\n# Padloc \n\n<a href=\"https://padloc.app/\"><img src=\"https://icons.duckduckgo.com/ip3/padloc.app.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/padloc/padloc.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/padloc/padloc/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/padloc/padloc.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/padloc/padloc/network/) [![GitHub issues](https://img.shields.io/github/issues/padloc/padloc.svg)](https://GitHub.com/Npadloc/padloc/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/padloc/padloc.svg)](https://github.com/padloc/padloc/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/padloc/padloc.svg)](https://GitHub.com/padloc/padloc/graphs/contributors/) \n\n**Category**: Password manager\n\n**Github**: [padloc/padloc](https://github.com/padloc/padloc)\n\n**Website**: [padloc.app](https://padloc.app/)\n\n**Description**:\nPassword manager for teams and individuals\n\n**Alternative to**: [1Password](https://1password.com/)\n"
  },
  {
    "path": "website/docs/Password manager/Passbolt.md",
    "content": "\n# Passbolt \n\n<a href=\"https://www.passbolt.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.passbolt.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/passbolt/passbolt_api.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/passbolt/passbolt_api/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/passbolt/passbolt_api.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/passbolt/passbolt_api/network/) [![GitHub issues](https://img.shields.io/github/issues/passbolt/passbolt_api.svg)](https://GitHub.com/Npassbolt/passbolt_api/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/passbolt/passbolt_api.svg)](https://github.com/passbolt/passbolt_api/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/passbolt/passbolt_api.svg)](https://GitHub.com/passbolt/passbolt_api/graphs/contributors/) \n\n**Category**: Password manager\n\n**Github**: [passbolt/passbolt_api](https://github.com/passbolt/passbolt_api)\n\n**Website**: [www.passbolt.com](https://www.passbolt.com/)\n\n**Description**:\nPassword manager for teams and individuals\n\n**Alternative to**: [1Password](https://1password.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Coolify.md",
    "content": "\n# Coolify \n\n<a href=\"https://coolify.io/\"><img src=\"https://icons.duckduckgo.com/ip3/coolify.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/coollabsio/coolify.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/coollabsio/coolify/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/coollabsio/coolify.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/coollabsio/coolify/network/) [![GitHub issues](https://img.shields.io/github/issues/coollabsio/coolify.svg)](https://GitHub.com/Ncoollabsio/coolify/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/coollabsio/coolify.svg)](https://github.com/coollabsio/coolify/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/coollabsio/coolify.svg)](https://GitHub.com/coollabsio/coolify/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [coollabsio/coolify](https://github.com/coollabsio/coolify)\n\n**Website**: [coolify.io](https://coolify.io/)\n\n**Description**:\nSelf-hostable Heroku alternative\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Otomi.md",
    "content": "\n# Otomi \n\n<a href=\"https://otomi.io\"><img src=\"https://icons.duckduckgo.com/ip3/otomi.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/redkubes/otomi-core.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/redkubes/otomi-core/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/redkubes/otomi-core.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/redkubes/otomi-core/network/) [![GitHub issues](https://img.shields.io/github/issues/redkubes/otomi-core.svg)](https://GitHub.com/Nredkubes/otomi-core/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/redkubes/otomi-core.svg)](https://github.com/redkubes/otomi-core/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/redkubes/otomi-core.svg)](https://GitHub.com/redkubes/otomi-core/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [redkubes/otomi-core](https://github.com/redkubes/otomi-core)\n\n**Website**: [otomi.io](https://otomi.io)\n\n**Description**:\nSelf-hosted PaaS for Kubernetes\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Porter.md",
    "content": "\n# Porter \n\n<a href=\"https://porter.run/\"><img src=\"https://icons.duckduckgo.com/ip3/porter.run.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/porter-dev/porter.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/porter-dev/porter/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/porter-dev/porter.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/porter-dev/porter/network/) [![GitHub issues](https://img.shields.io/github/issues/porter-dev/porter.svg)](https://GitHub.com/Nporter-dev/porter/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/porter-dev/porter.svg)](https://github.com/porter-dev/porter/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/porter-dev/porter.svg)](https://GitHub.com/porter-dev/porter/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [porter-dev/porter](https://github.com/porter-dev/porter)\n\n**Website**: [porter.run](https://porter.run/)\n\n**Description**:\nKubernetes powered PaaS that runs in your own cloud\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Pulumi.md",
    "content": "\n# Pulumi \n\n<a href=\"https://www.pulumi.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.pulumi.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/pulumi/pulumi.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/pulumi/pulumi/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/pulumi/pulumi.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/pulumi/pulumi/network/) [![GitHub issues](https://img.shields.io/github/issues/pulumi/pulumi.svg)](https://GitHub.com/Npulumi/pulumi/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/pulumi/pulumi.svg)](https://github.com/pulumi/pulumi/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/pulumi/pulumi.svg)](https://GitHub.com/pulumi/pulumi/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [pulumi/pulumi](https://github.com/pulumi/pulumi)\n\n**Website**: [www.pulumi.com](https://www.pulumi.com/)\n\n**Description**:\nUniversal Infrastructure as Code\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Qovery.md",
    "content": "\n# Qovery \n\n<a href=\"https://www.qovery.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.qovery.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/Qovery/engine.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Qovery/engine/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/Qovery/engine.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Qovery/engine/network/) [![GitHub issues](https://img.shields.io/github/issues/Qovery/engine.svg)](https://GitHub.com/NQovery/engine/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/Qovery/engine.svg)](https://github.com/Qovery/engine/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/Qovery/engine.svg)](https://GitHub.com/Qovery/engine/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [Qovery/engine](https://github.com/Qovery/engine)\n\n**Website**: [www.qovery.com](https://www.qovery.com/)\n\n**Description**:\nKubernetes powered PaaS that runs in your own cloud\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Platform as a service/Space-Cloud.md",
    "content": "\n# Space Cloud \n\n<a href=\"https://space-cloud.io/\"><img src=\"https://icons.duckduckgo.com/ip3/space-cloud.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/spacecloud-io/space-cloud.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/spacecloud-io/space-cloud/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/spacecloud-io/space-cloud.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/spacecloud-io/space-cloud/network/) [![GitHub issues](https://img.shields.io/github/issues/spacecloud-io/space-cloud.svg)](https://GitHub.com/Nspacecloud-io/space-cloud/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/spacecloud-io/space-cloud.svg)](https://github.com/spacecloud-io/space-cloud/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/spacecloud-io/space-cloud.svg)](https://GitHub.com/spacecloud-io/space-cloud/graphs/contributors/) \n\n**Category**: Platform as a service\n\n**Github**: [spacecloud-io/space-cloud](https://github.com/spacecloud-io/space-cloud)\n\n**Website**: [space-cloud.io](https://space-cloud.io/)\n\n**Description**:\nServerless cloud deployment platform\n\n**Alternative to**: [Heroku](https://www.heroku.com/)\n"
  },
  {
    "path": "website/docs/Product Analytics/Objectiv.md",
    "content": "\n# Objectiv \n\n<a href=\"https://objectiv.io/\"><img src=\"https://icons.duckduckgo.com/ip3/objectiv.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/objectiv/objectiv-analytics.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/objectiv/objectiv-analytics/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/objectiv/objectiv-analytics.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/objectiv/objectiv-analytics/network/) [![GitHub issues](https://img.shields.io/github/issues/objectiv/objectiv-analytics.svg)](https://GitHub.com/Nobjectiv/objectiv-analytics/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/objectiv/objectiv-analytics.svg)](https://github.com/objectiv/objectiv-analytics/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/objectiv/objectiv-analytics.svg)](https://GitHub.com/objectiv/objectiv-analytics/graphs/contributors/) \n\n**Category**: Product Analytics\n\n**Github**: [objectiv/objectiv-analytics](https://github.com/objectiv/objectiv-analytics)\n\n**Website**: [objectiv.io](https://objectiv.io/)\n\n**Description**:\nProduct analytics infrastructure\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/analytics/web/), [Amplitude](https://amplitude.com/), [Mixpanel](https://mixpanel.com/)\n"
  },
  {
    "path": "website/docs/Product Analytics/PostHog.md",
    "content": "\n# PostHog \n\n<a href=\"https://posthog.com/\"><img src=\"https://icons.duckduckgo.com/ip3/posthog.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/PostHog/posthog.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/PostHog/posthog/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/PostHog/posthog.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/PostHog/posthog/network/) [![GitHub issues](https://img.shields.io/github/issues/PostHog/posthog.svg)](https://GitHub.com/NPostHog/posthog/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/PostHog/posthog.svg)](https://github.com/PostHog/posthog/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/PostHog/posthog.svg)](https://GitHub.com/PostHog/posthog/graphs/contributors/) \n\n**Category**: Product Analytics\n\n**Github**: [PostHog/posthog](https://github.com/PostHog/posthog)\n\n**Website**: [posthog.com](https://posthog.com/)\n\n**Description**:\nProduct analytics platform\n\n**Alternative to**: [Amplitude](https://amplitude.com/), [MixPanel](https://mixpanel.com/)\n"
  },
  {
    "path": "website/docs/Project Management/Focalboard.md",
    "content": "\n# Focalboard \n\n<a href=\"https://www.focalboard.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.focalboard.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mattermost/focalboard.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mattermost/focalboard/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mattermost/focalboard.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mattermost/focalboard/network/) [![GitHub issues](https://img.shields.io/github/issues/mattermost/focalboard.svg)](https://GitHub.com/Nmattermost/focalboard/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mattermost/focalboard.svg)](https://github.com/mattermost/focalboard/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mattermost/focalboard.svg)](https://GitHub.com/mattermost/focalboard/graphs/contributors/) \n\n**Category**: Project Management\n\n**Github**: [mattermost/focalboard](https://github.com/mattermost/focalboard)\n\n**Website**: [www.focalboard.com](https://www.focalboard.com/)\n\n**Description**:\nAlternative to Trello, Notion, and Asana\n\n**Alternative to**: [Trello](https://trello.com/), [Notion](https://www.notion.so/), [Asana](https://asana.com/)\n"
  },
  {
    "path": "website/docs/Project Management/OpenProject.md",
    "content": "\n# OpenProject \n\n<a href=\"https://www.openproject.org/\"><img src=\"https://icons.duckduckgo.com/ip3/www.openproject.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/opf/openproject.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/opf/openproject/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/opf/openproject.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/opf/openproject/network/) [![GitHub issues](https://img.shields.io/github/issues/opf/openproject.svg)](https://GitHub.com/Nopf/openproject/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/opf/openproject.svg)](https://github.com/opf/openproject/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/opf/openproject.svg)](https://GitHub.com/opf/openproject/graphs/contributors/) \n\n**Category**: Project Management\n\n**Github**: [opf/openproject](https://github.com/opf/openproject)\n\n**Website**: [www.openproject.org](https://www.openproject.org/)\n\n**Description**:\nProject management software\n\n**Alternative to**: [Asana](https://asana.com/), [Trello](https://trello.com/)\n"
  },
  {
    "path": "website/docs/Project Management/Taiga.md",
    "content": "\n# Taiga \n\n<a href=\"https://www.taiga.io/\"><img src=\"https://icons.duckduckgo.com/ip3/www.taiga.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/kaleidos-ventures/taiga-docker.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/kaleidos-ventures/taiga-docker/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/kaleidos-ventures/taiga-docker.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/kaleidos-ventures/taiga-docker/network/) [![GitHub issues](https://img.shields.io/github/issues/kaleidos-ventures/taiga-docker.svg)](https://GitHub.com/Nkaleidos-ventures/taiga-docker/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/kaleidos-ventures/taiga-docker.svg)](https://github.com/kaleidos-ventures/taiga-docker/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/kaleidos-ventures/taiga-docker.svg)](https://GitHub.com/kaleidos-ventures/taiga-docker/graphs/contributors/) \n\n**Category**: Project Management\n\n**Github**: [kaleidos-ventures/taiga-docker](https://github.com/kaleidos-ventures/taiga-docker)\n\n**Website**: [www.taiga.io](https://www.taiga.io/)\n\n**Description**:\nProject management software\n\n**Alternative to**: [Asana](https://asana.com/), [Trello](https://trello.com/), [Jira](https://www.atlassian.com/software/jira)\n"
  },
  {
    "path": "website/docs/Project Management/Vikunja.md",
    "content": "\n# Vikunja \n\n<a href=\"https://vikunja.io/\"><img src=\"https://icons.duckduckgo.com/ip3/vikunja.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/go-vikunja/api.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/go-vikunja/api/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/go-vikunja/api.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/go-vikunja/api/network/) [![GitHub issues](https://img.shields.io/github/issues/go-vikunja/api.svg)](https://GitHub.com/Ngo-vikunja/api/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/go-vikunja/api.svg)](https://github.com/go-vikunja/api/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/go-vikunja/api.svg)](https://GitHub.com/go-vikunja/api/graphs/contributors/) \n\n**Category**: Project Management\n\n**Github**: [go-vikunja/api](https://github.com/go-vikunja/api)\n\n**Website**: [vikunja.io](https://vikunja.io/)\n\n**Description**:\nThe to-do app to organize your next project.\n\n**Alternative to**: [Todoist](https://todoist.com), [Trello](https://trello.com), [Asana](https://asana.com)\n"
  },
  {
    "path": "website/docs/Relational database/PingCAP.md",
    "content": "\n# PingCAP \n\n<a href=\"https://en.pingcap.com/\"><img src=\"https://icons.duckduckgo.com/ip3/en.pingcap.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/pingcap/tidb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/pingcap/tidb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/pingcap/tidb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/pingcap/tidb/network/) [![GitHub issues](https://img.shields.io/github/issues/pingcap/tidb.svg)](https://GitHub.com/Npingcap/tidb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/pingcap/tidb.svg)](https://github.com/pingcap/tidb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/pingcap/tidb.svg)](https://GitHub.com/pingcap/tidb/graphs/contributors/) \n\n**Category**: Relational database\n\n**Github**: [pingcap/tidb](https://github.com/pingcap/tidb)\n\n**Website**: [en.pingcap.com](https://en.pingcap.com/)\n\n**Description**:\nNewSQL database that supports HTAP workloads\n\n**Alternative to**: [Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)\n"
  },
  {
    "path": "website/docs/Relational database/Yugabyte.md",
    "content": "\n# Yugabyte \n\n<a href=\"https://www.yugabyte.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.yugabyte.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/yugabyte/yugabyte-db.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/yugabyte/yugabyte-db/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/yugabyte/yugabyte-db.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/yugabyte/yugabyte-db/network/) [![GitHub issues](https://img.shields.io/github/issues/yugabyte/yugabyte-db.svg)](https://GitHub.com/Nyugabyte/yugabyte-db/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/yugabyte/yugabyte-db.svg)](https://github.com/yugabyte/yugabyte-db/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/yugabyte/yugabyte-db.svg)](https://GitHub.com/yugabyte/yugabyte-db/graphs/contributors/) \n\n**Category**: Relational database\n\n**Github**: [yugabyte/yugabyte-db](https://github.com/yugabyte/yugabyte-db)\n\n**Website**: [www.yugabyte.com](https://www.yugabyte.com/)\n\n**Description**:\nHigh-performance distributed SQL database\n\n**Alternative to**: [Amazon Aurora](https://aws.amazon.com/rds/aurora/), [Google Cloud Spanner](https://cloud.google.com/spanner/)\n"
  },
  {
    "path": "website/docs/Remote Desktop Application/RustDesk.md",
    "content": "\n# RustDesk \n\n<a href=\"https://rustdesk.com/\"><img src=\"https://icons.duckduckgo.com/ip3/rustdesk.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/rustdesk/rustdesk.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/rustdesk/rustdesk/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/rustdesk/rustdesk.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/rustdesk/rustdesk/network/) [![GitHub issues](https://img.shields.io/github/issues/rustdesk/rustdesk.svg)](https://GitHub.com/Nrustdesk/rustdesk/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/rustdesk/rustdesk.svg)](https://github.com/rustdesk/rustdesk/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/rustdesk/rustdesk.svg)](https://GitHub.com/rustdesk/rustdesk/graphs/contributors/) \n\n**Category**: Remote Desktop Application\n\n**Github**: [rustdesk/rustdesk](https://github.com/rustdesk/rustdesk)\n\n**Website**: [rustdesk.com](https://rustdesk.com/)\n\n**Description**:\nOpen source virtual / remote desktop infrastructure for everyone\n\n**Alternative to**: [TeamViewer](https://teamviewer.com)\n"
  },
  {
    "path": "website/docs/Reverse ETL/Castled.md",
    "content": "\n# Castled \n\n<a href=\"https://castled.io/\"><img src=\"https://icons.duckduckgo.com/ip3/castled.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/castledio/castled.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/castledio/castled/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/castledio/castled.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/castledio/castled/network/) [![GitHub issues](https://img.shields.io/github/issues/castledio/castled.svg)](https://GitHub.com/Ncastledio/castled/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/castledio/castled.svg)](https://github.com/castledio/castled/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/castledio/castled.svg)](https://GitHub.com/castledio/castled/graphs/contributors/) \n\n**Category**: Reverse ETL\n\n**Github**: [castledio/castled](https://github.com/castledio/castled)\n\n**Website**: [castled.io](https://castled.io/)\n\n**Description**:\nData synchronization framework focused on external apps\n\n**Alternative to**: [Hightouch](https://www.hightouch.io/), [NewRelic](https://newrelic.com/)\n"
  },
  {
    "path": "website/docs/Reverse ETL/Grouparoo.md",
    "content": "\n# Grouparoo \n\n<a href=\"https://www.grouparoo.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.grouparoo.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/grouparoo/grouparoo.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/grouparoo/grouparoo/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/grouparoo/grouparoo.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/grouparoo/grouparoo/network/) [![GitHub issues](https://img.shields.io/github/issues/grouparoo/grouparoo.svg)](https://GitHub.com/Ngrouparoo/grouparoo/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/grouparoo/grouparoo.svg)](https://github.com/grouparoo/grouparoo/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/grouparoo/grouparoo.svg)](https://GitHub.com/grouparoo/grouparoo/graphs/contributors/) \n\n**Category**: Reverse ETL\n\n**Github**: [grouparoo/grouparoo](https://github.com/grouparoo/grouparoo)\n\n**Website**: [www.grouparoo.com](https://www.grouparoo.com/)\n\n**Description**:\nData synchronization framework\n\n**Alternative to**: [Hightouch](https://www.hightouch.io/)\n"
  },
  {
    "path": "website/docs/Robotic Process Automation/RoboCorp.md",
    "content": "\n# RoboCorp \n\n<a href=\"https://robocorp.com/\"><img src=\"https://icons.duckduckgo.com/ip3/robocorp.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/robocorp/rcc.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/robocorp/rcc/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/robocorp/rcc.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/robocorp/rcc/network/) [![GitHub issues](https://img.shields.io/github/issues/robocorp/rcc.svg)](https://GitHub.com/Nrobocorp/rcc/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/robocorp/rcc.svg)](https://github.com/robocorp/rcc/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/robocorp/rcc.svg)](https://GitHub.com/robocorp/rcc/graphs/contributors/) \n\n**Category**: Robotic Process Automation\n\n**Github**: [robocorp/rcc](https://github.com/robocorp/rcc)\n\n**Website**: [robocorp.com](https://robocorp.com/)\n\n**Description**:\nSet of tooling that allows to create automation packages\n\n**Alternative to**: [UiPath](https://www.uipath.com/)\n"
  },
  {
    "path": "website/docs/Scheduling/Cal.com.md",
    "content": "\n# Cal.com \n\n<a href=\"https://cal.com/\"><img src=\"https://icons.duckduckgo.com/ip3/cal.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/calendso/calendso.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/calendso/calendso/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/calendso/calendso.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/calendso/calendso/network/) [![GitHub issues](https://img.shields.io/github/issues/calendso/calendso.svg)](https://GitHub.com/Ncalendso/calendso/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/calendso/calendso.svg)](https://github.com/calendso/calendso/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/calendso/calendso.svg)](https://GitHub.com/calendso/calendso/graphs/contributors/) \n\n**Category**: Scheduling\n\n**Github**: [calendso/calendso](https://github.com/calendso/calendso)\n\n**Website**: [cal.com](https://cal.com/)\n\n**Description**:\nScheduling infrastructure, alternative to Calendly\n\n**Alternative to**: [Calendly](https://calendly.com/)\n"
  },
  {
    "path": "website/docs/Session replay software/OpenReplay.md",
    "content": "\n# OpenReplay \n\n<a href=\"https://openreplay.com/\"><img src=\"https://icons.duckduckgo.com/ip3/openreplay.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/openreplay/openreplay.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/openreplay/openreplay/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/openreplay/openreplay.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/openreplay/openreplay/network/) [![GitHub issues](https://img.shields.io/github/issues/openreplay/openreplay.svg)](https://GitHub.com/Nopenreplay/openreplay/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/openreplay/openreplay.svg)](https://github.com/openreplay/openreplay/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/openreplay/openreplay.svg)](https://GitHub.com/openreplay/openreplay/graphs/contributors/) \n\n**Category**: Session replay software\n\n**Github**: [openreplay/openreplay](https://github.com/openreplay/openreplay)\n\n**Website**: [openreplay.com](https://openreplay.com/)\n\n**Description**:\nSession replay stack for developers\n\n**Alternative to**: [LogRocket](https://logrocket.com/), [FullStory](https://www.fullstory.com/)\n"
  },
  {
    "path": "website/docs/Streaming/Glimesh.md",
    "content": "\n# Glimesh \n\n<a href=\"https://glimesh.tv/\"><img src=\"https://icons.duckduckgo.com/ip3/glimesh.tv.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/glimesh/glimesh.tv.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/glimesh/glimesh.tv/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/glimesh/glimesh.tv.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/glimesh/glimesh.tv/network/) [![GitHub issues](https://img.shields.io/github/issues/glimesh/glimesh.tv.svg)](https://GitHub.com/Nglimesh/glimesh.tv/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/glimesh/glimesh.tv.svg)](https://github.com/glimesh/glimesh.tv/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/glimesh/glimesh.tv.svg)](https://GitHub.com/glimesh/glimesh.tv/graphs/contributors/) \n\n**Category**: Streaming\n\n**Github**: [glimesh/glimesh.tv](https://github.com/glimesh/glimesh.tv)\n\n**Website**: [glimesh.tv](https://glimesh.tv/)\n\n**Description**:\nLive streaming platform\n\n**Alternative to**: [Twitch](https://www.twitch.tv/)\n"
  },
  {
    "path": "website/docs/Timeseries database/InfluxDB.md",
    "content": "\n# InfluxDB \n\n<a href=\"https://www.influxdata.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.influxdata.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/influxdata/influxdb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/influxdata/influxdb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/influxdata/influxdb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/influxdata/influxdb/network/) [![GitHub issues](https://img.shields.io/github/issues/influxdata/influxdb.svg)](https://GitHub.com/Ninfluxdata/influxdb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/influxdata/influxdb.svg)](https://github.com/influxdata/influxdb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/influxdata/influxdb.svg)](https://GitHub.com/influxdata/influxdb/graphs/contributors/) \n\n**Category**: Timeseries database\n\n**Github**: [influxdata/influxdb](https://github.com/influxdata/influxdb)\n\n**Website**: [www.influxdata.com](https://www.influxdata.com/)\n\n**Description**:\nDatabase designed to process time series data\n\n**Alternative to**: [Kdb+](https://kx.com/developers/)\n"
  },
  {
    "path": "website/docs/Timeseries database/QuestDB.md",
    "content": "\n# QuestDB \n\n<a href=\"https://questdb.io/\"><img src=\"https://icons.duckduckgo.com/ip3/questdb.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/questdb/questdb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/questdb/questdb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/questdb/questdb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/questdb/questdb/network/) [![GitHub issues](https://img.shields.io/github/issues/questdb/questdb.svg)](https://GitHub.com/Nquestdb/questdb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/questdb/questdb.svg)](https://github.com/questdb/questdb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/questdb/questdb.svg)](https://GitHub.com/questdb/questdb/graphs/contributors/) \n\n**Category**: Timeseries database\n\n**Github**: [questdb/questdb](https://github.com/questdb/questdb)\n\n**Website**: [questdb.io](https://questdb.io/)\n\n**Description**:\nDatabase designed to process time series data\n\n**Alternative to**: [Kdb+](https://kx.com/developers/)\n"
  },
  {
    "path": "website/docs/Timeseries database/TDengine.md",
    "content": "\n# TDengine \n\n<a href=\"https://tdengine.com/?en\"><img src=\"https://icons.duckduckgo.com/ip3/tdengine.com/?en.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/taosdata/TDengine.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/taosdata/TDengine/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/taosdata/TDengine.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/taosdata/TDengine/network/) [![GitHub issues](https://img.shields.io/github/issues/taosdata/TDengine.svg)](https://GitHub.com/Ntaosdata/TDengine/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/taosdata/TDengine.svg)](https://github.com/taosdata/TDengine/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/taosdata/TDengine.svg)](https://GitHub.com/taosdata/TDengine/graphs/contributors/) \n\n**Category**: Timeseries database\n\n**Github**: [taosdata/TDengine](https://github.com/taosdata/TDengine)\n\n**Website**: [tdengine.com/?en](https://tdengine.com/?en)\n\n**Description**:\nDatabase designed to process time series data\n\n**Alternative to**: [Kdb+](https://kx.com/developers/)\n"
  },
  {
    "path": "website/docs/Timeseries database/TimescaleDB.md",
    "content": "\n# TimescaleDB \n\n<a href=\"https://www.timescale.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.timescale.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/timescale/timescaledb.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/timescale/timescaledb/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/timescale/timescaledb.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/timescale/timescaledb/network/) [![GitHub issues](https://img.shields.io/github/issues/timescale/timescaledb.svg)](https://GitHub.com/Ntimescale/timescaledb/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/timescale/timescaledb.svg)](https://github.com/timescale/timescaledb/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/timescale/timescaledb.svg)](https://GitHub.com/timescale/timescaledb/graphs/contributors/) \n\n**Category**: Timeseries database\n\n**Github**: [timescale/timescaledb](https://github.com/timescale/timescaledb)\n\n**Website**: [www.timescale.com](https://www.timescale.com/)\n\n**Description**:\nDatabase designed to process time series data\n\n**Alternative to**: [Kdb+](https://kx.com/developers/)\n"
  },
  {
    "path": "website/docs/VPN as a Service/OmniEdge.md",
    "content": "\n# OmniEdge \n\n<a href=\"https://omniedge.io/\"><img src=\"https://icons.duckduckgo.com/ip3/omniedge.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/omniedgeio/omniedge.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/omniedgeio/omniedge/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/omniedgeio/omniedge.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/omniedgeio/omniedge/network/) [![GitHub issues](https://img.shields.io/github/issues/omniedgeio/omniedge.svg)](https://GitHub.com/Nomniedgeio/omniedge/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/omniedgeio/omniedge.svg)](https://github.com/omniedgeio/omniedge/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/omniedgeio/omniedge.svg)](https://GitHub.com/omniedgeio/omniedge/graphs/contributors/) \n\n**Category**: VPN as a Service\n\n**Github**: [omniedgeio/omniedge](https://github.com/omniedgeio/omniedge)\n\n**Website**: [omniedge.io](https://omniedge.io/)\n\n**Description**:\nNo-code P2P layer-2 mesh VPN for enterprise with zero config \n\n**Alternative to**: [OpenVPN](https://openvpn.net), [Ngrok](https://ngrok.com), [Oray](https://www.oray.com), [AWS VPC](https://aws.amazon.com/vpc/)\n"
  },
  {
    "path": "website/docs/Video Conferencing/Jitsi.md",
    "content": "\n# Jitsi \n\n<a href=\"https://jitsi.org/meet\"><img src=\"https://icons.duckduckgo.com/ip3/jitsi.org/meet.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/jitsi/jitsi-meet.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/jitsi/jitsi-meet/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/jitsi/jitsi-meet.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/jitsi/jitsi-meet/network/) [![GitHub issues](https://img.shields.io/github/issues/jitsi/jitsi-meet.svg)](https://GitHub.com/Njitsi/jitsi-meet/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/jitsi/jitsi-meet.svg)](https://github.com/jitsi/jitsi-meet/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/jitsi/jitsi-meet.svg)](https://GitHub.com/jitsi/jitsi-meet/graphs/contributors/) \n\n**Category**: Video Conferencing\n\n**Github**: [jitsi/jitsi-meet](https://github.com/jitsi/jitsi-meet)\n\n**Website**: [jitsi.org/meet](https://jitsi.org/meet)\n\n**Description**:\nVideo conferences platform and SDK\n\n**Alternative to**: [Zoom](https://zoom.us/)\n"
  },
  {
    "path": "website/docs/Video Conferencing/LiveKit.md",
    "content": "\n# LiveKit \n\n<a href=\"https://livekit.io/\"><img src=\"https://icons.duckduckgo.com/ip3/livekit.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/livekit/livekit-server.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/livekit/livekit-server/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/livekit/livekit-server.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/livekit/livekit-server/network/) [![GitHub issues](https://img.shields.io/github/issues/livekit/livekit-server.svg)](https://GitHub.com/Nlivekit/livekit-server/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/livekit/livekit-server.svg)](https://github.com/livekit/livekit-server/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/livekit/livekit-server.svg)](https://GitHub.com/livekit/livekit-server/graphs/contributors/) \n\n**Category**: Video Conferencing\n\n**Github**: [livekit/livekit-server](https://github.com/livekit/livekit-server)\n\n**Website**: [livekit.io](https://livekit.io/)\n\n**Description**:\nSFU and SDKs for high-performance, scalable WebRTC\n\n**Alternative to**: [Twilio](https://www.twilio.com/), [Agora](https://agora.io/)\n"
  },
  {
    "path": "website/docs/Video Conferencing/OpenVidu.md",
    "content": "\n# OpenVidu \n\n<a href=\"https://openvidu.io/\"><img src=\"https://icons.duckduckgo.com/ip3/openvidu.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/OpenVidu/openvidu.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/OpenVidu/openvidu/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/OpenVidu/openvidu.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/OpenVidu/openvidu/network/) [![GitHub issues](https://img.shields.io/github/issues/OpenVidu/openvidu.svg)](https://GitHub.com/NOpenVidu/openvidu/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/OpenVidu/openvidu.svg)](https://github.com/OpenVidu/openvidu/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/OpenVidu/openvidu.svg)](https://GitHub.com/OpenVidu/openvidu/graphs/contributors/) \n\n**Category**: Video Conferencing\n\n**Github**: [OpenVidu/openvidu](https://github.com/OpenVidu/openvidu)\n\n**Website**: [openvidu.io](https://openvidu.io/)\n\n**Description**:\nPlatform and SDKs to build on-premises WebRTC video conferences\n\n**Alternative to**: [Twilio](https://www.twilio.com/)\n"
  },
  {
    "path": "website/docs/Website analytics/GoatCounter.md",
    "content": "\n# GoatCounter \n\n<a href=\"https://www.goatcounter.com/\"><img src=\"https://icons.duckduckgo.com/ip3/www.goatcounter.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/arp242/goatcounter.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/arp242/goatcounter/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/arp242/goatcounter.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/arp242/goatcounter/network/) [![GitHub issues](https://img.shields.io/github/issues/arp242/goatcounter.svg)](https://GitHub.com/Narp242/goatcounter/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/arp242/goatcounter.svg)](https://github.com/arp242/goatcounter/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/arp242/goatcounter.svg)](https://GitHub.com/arp242/goatcounter/graphs/contributors/) \n\n**Category**: Website analytics\n\n**Github**: [arp242/goatcounter](https://github.com/arp242/goatcounter)\n\n**Website**: [www.goatcounter.com](https://www.goatcounter.com/)\n\n**Description**:\nGoogle Analytics alternative\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/)\n"
  },
  {
    "path": "website/docs/Website analytics/Matomo.md",
    "content": "\n# Matomo \n\n<a href=\"https://matomo.org/\"><img src=\"https://icons.duckduckgo.com/ip3/matomo.org.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/matomo-org/matomo.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/matomo-org/matomo/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/matomo-org/matomo.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/matomo-org/matomo/network/) [![GitHub issues](https://img.shields.io/github/issues/matomo-org/matomo.svg)](https://GitHub.com/Nmatomo-org/matomo/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/matomo-org/matomo.svg)](https://github.com/matomo-org/matomo/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/matomo-org/matomo.svg)](https://GitHub.com/matomo-org/matomo/graphs/contributors/) \n\n**Category**: Website analytics\n\n**Github**: [matomo-org/matomo](https://github.com/matomo-org/matomo)\n\n**Website**: [matomo.org](https://matomo.org/)\n\n**Description**:\nGoogle Analytics alternative\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/)\n"
  },
  {
    "path": "website/docs/Website analytics/Plausible.md",
    "content": "\n# Plausible \n\n<a href=\"https://plausible.io/\"><img src=\"https://icons.duckduckgo.com/ip3/plausible.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/plausible/analytics.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/plausible/analytics/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/plausible/analytics.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/plausible/analytics/network/) [![GitHub issues](https://img.shields.io/github/issues/plausible/analytics.svg)](https://GitHub.com/Nplausible/analytics/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/plausible/analytics.svg)](https://github.com/plausible/analytics/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/plausible/analytics.svg)](https://GitHub.com/plausible/analytics/graphs/contributors/) \n\n**Category**: Website analytics\n\n**Github**: [plausible/analytics](https://github.com/plausible/analytics)\n\n**Website**: [plausible.io](https://plausible.io/)\n\n**Description**:\nGoogle Analytics alternative\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/)\n"
  },
  {
    "path": "website/docs/Website analytics/Swetrix.md",
    "content": "\n# Swetrix \n\n<a href=\"https://swetrix.com\"><img src=\"https://icons.duckduckgo.com/ip3/swetrix.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/swetrix/swetrix-js.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/swetrix/swetrix-js/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/swetrix/swetrix-js.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/swetrix/swetrix-js/network/) [![GitHub issues](https://img.shields.io/github/issues/swetrix/swetrix-js.svg)](https://GitHub.com/Nswetrix/swetrix-js/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/swetrix/swetrix-js.svg)](https://github.com/swetrix/swetrix-js/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/swetrix/swetrix-js.svg)](https://GitHub.com/swetrix/swetrix-js/graphs/contributors/) \n\n**Category**: Website analytics\n\n**Github**: [swetrix/swetrix-js](https://github.com/swetrix/swetrix-js)\n\n**Website**: [swetrix.com](https://swetrix.com)\n\n**Description**:\nGoogle Analytics alternative\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/)\n"
  },
  {
    "path": "website/docs/Website analytics/Umami.md",
    "content": "\n# Umami \n\n<a href=\"https://umami.is\"><img src=\"https://icons.duckduckgo.com/ip3/umami.is.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/mikecao/umami.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/mikecao/umami/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/mikecao/umami.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/mikecao/umami/network/) [![GitHub issues](https://img.shields.io/github/issues/mikecao/umami.svg)](https://GitHub.com/Nmikecao/umami/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/mikecao/umami.svg)](https://github.com/mikecao/umami/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/mikecao/umami.svg)](https://GitHub.com/mikecao/umami/graphs/contributors/) \n\n**Category**: Website analytics\n\n**Github**: [mikecao/umami](https://github.com/mikecao/umami)\n\n**Website**: [umami.is](https://umami.is)\n\n**Description**:\nGoogle Analytics alternative\n\n**Alternative to**: [Google Analytics](https://analytics.google.com/)\n"
  },
  {
    "path": "website/docs/Workflow automation/N8N.md",
    "content": "\n# N8N \n\n<a href=\"https://n8n.io/\"><img src=\"https://icons.duckduckgo.com/ip3/n8n.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/n8n-io/n8n.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/n8n-io/n8n/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/n8n-io/n8n.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/n8n-io/n8n/network/) [![GitHub issues](https://img.shields.io/github/issues/n8n-io/n8n.svg)](https://GitHub.com/Nn8n-io/n8n/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/n8n-io/n8n.svg)](https://github.com/n8n-io/n8n/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/n8n-io/n8n.svg)](https://GitHub.com/n8n-io/n8n/graphs/contributors/) \n\n**Category**: Workflow automation\n\n**Github**: [n8n-io/n8n](https://github.com/n8n-io/n8n)\n\n**Website**: [n8n.io](https://n8n.io/)\n\n**Description**:\nNode-based workflow automation tool for developers\n\n**Alternative to**: [Zapier](https://zapier.com/)\n"
  },
  {
    "path": "website/docs/Workflow automation/Pipedream.md",
    "content": "\n# Pipedream \n\n<a href=\"https://pipedream.com/\"><img src=\"https://icons.duckduckgo.com/ip3/pipedream.com.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/PipedreamHQ/pipedream.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/PipedreamHQ/pipedream/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/PipedreamHQ/pipedream.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/PipedreamHQ/pipedream/network/) [![GitHub issues](https://img.shields.io/github/issues/PipedreamHQ/pipedream.svg)](https://GitHub.com/NPipedreamHQ/pipedream/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/PipedreamHQ/pipedream.svg)](https://github.com/PipedreamHQ/pipedream/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/PipedreamHQ/pipedream.svg)](https://GitHub.com/PipedreamHQ/pipedream/graphs/contributors/) \n\n**Category**: Workflow automation\n\n**Github**: [PipedreamHQ/pipedream](https://github.com/PipedreamHQ/pipedream)\n\n**Website**: [pipedream.com](https://pipedream.com/)\n\n**Description**:\nWorkflow automation and API integration platform\n\n**Alternative to**: [Zapier](https://zapier.com/), [Integromat](https://www.integromat.com/)\n"
  },
  {
    "path": "website/docs/Workflow automation/Temporal.md",
    "content": "\n# Temporal \n\n<a href=\"https://temporal.io/\"><img src=\"https://icons.duckduckgo.com/ip3/temporal.io.ico\" alt=\"Avatar\" width=\"30\" height=\"30\" /></a>\n\n[![GitHub stars](https://img.shields.io/github/stars/temporalio/temporal.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/temporalio/temporal/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/temporalio/temporal.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/temporalio/temporal/network/) [![GitHub issues](https://img.shields.io/github/issues/temporalio/temporal.svg)](https://GitHub.com/Ntemporalio/temporal/issues/)\n\n[![GitHub license](https://img.shields.io/github/license/temporalio/temporal.svg)](https://github.com/temporalio/temporal/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/temporalio/temporal.svg)](https://GitHub.com/temporalio/temporal/graphs/contributors/) \n\n**Category**: Workflow automation\n\n**Github**: [temporalio/temporal](https://github.com/temporalio/temporal)\n\n**Website**: [temporal.io](https://temporal.io/)\n\n**Description**:\nWorkflows as code platform\n\n**Alternative to**: [Zapier](https://zapier.com/)\n"
  },
  {
    "path": "website/docs/intro.md",
    "content": "---\nsidebar_position: 1\n---\n\n# List\nThis is the list of awesome OSS alternatives.\n"
  },
  {
    "path": "website/docusaurus.config.js",
    "content": "// @ts-check\n// Note: type annotations allow type checking and IDEs autocompletion\n\nconst lightCodeTheme = require(\"prism-react-renderer/themes/github\");\nconst darkCodeTheme = require(\"prism-react-renderer/themes/dracula\");\n\n/** @type {import('@docusaurus/types').Config} */\nconst config = {\n  title: \"Awesome OSS Alternatives\",\n  tagline: \"Open-source alternatives to well-known SaaS products\",\n  url: \"https://runacapital.github.io\",\n  baseUrl: \"/awesome-oss-alternatives/\",\n  onBrokenLinks: \"throw\",\n  onBrokenMarkdownLinks: \"warn\",\n  favicon: \"img/favicon.ico\",\n\n  // GitHub pages deployment config.\n  // If you aren't using GitHub pages, you don't need these.\n  organizationName: \"RunaCapital\", // Usually your GitHub org/user name.\n  projectName: \"awesome-oss-atlernatives\", // Usually your repo name.\n  trailingSlash: false,\n\n  // Even if you don't use internalization, you can use this field to set useful\n  // metadata like html lang. For example, if your site is Chinese, you may want\n  // to replace \"en\" with \"zh-Hans\".\n  i18n: {\n    defaultLocale: \"en\",\n    locales: [\"en\"],\n  },\n\n  presets: [\n    [\n      \"classic\",\n      /** @type {import('@docusaurus/preset-classic').Options} */\n      ({\n        docs: {\n          sidebarPath: require.resolve(\"./sidebars.js\"),\n          // Please change this to your repo.\n          // Remove this to remove the \"edit this page\" links.\n          editUrl:\n            \"https://github.com/RunaCapital/awesome-oss-alternatives/tree/main/website/docs/\",\n        },\n        blog: {\n          showReadingTime: true,\n          // Please change this to your repo.\n          // Remove this to remove the \"edit this page\" links.\n          editUrl:\n            \"https://github.com/RunaCapital/awesome-oss-alternatives/tree/main/website/blog/\",\n        },\n        theme: {\n          customCss: require.resolve(\"./src/css/custom.css\"),\n        },\n      }),\n    ],\n  ],\n\n  themeConfig:\n    /** @type {import('@docusaurus/preset-classic').ThemeConfig} */\n    ({\n      navbar: {\n        title: \"Awesome OSS Alternatives\",\n        // logo: {\n        //   alt: \"Runa Capital\",\n        //   src: \"img/logo.svg\",\n        // },\n        items: [\n          {\n            type: \"doc\",\n            docId: \"intro\",\n            position: \"left\",\n            label: \"List\",\n          },\n          { to: \"/about\", label: \"About\", position: \"left\" },\n          { to: \"/blog\", label: \"Blog\", position: \"left\" },\n          {\n            href: \"https://github.com/RunaCapital/awesome-oss-alternatives\",\n            label: \"GitHub\",\n            position: \"right\",\n          },\n        ],\n      },\n      footer: {\n        style: \"dark\",\n        links: [\n          {\n            title: \"Docs\",\n            items: [\n              {\n                label: \"Tutorial\",\n                to: \"/docs/intro\",\n              },\n            ],\n          },\n          {\n            title: \"Community\",\n            items: [\n              {\n                label: \"Stack Overflow\",\n                href: \"https://stackoverflow.com/questions/tagged/docusaurus\",\n              },\n              {\n                label: \"Discord\",\n                href: \"https://discordapp.com/invite/docusaurus\",\n              },\n              {\n                label: \"Twitter\",\n                href: \"https://twitter.com/docusaurus\",\n              },\n            ],\n          },\n          {\n            title: \"More\",\n            items: [\n              {\n                label: \"Blog\",\n                to: \"/blog\",\n              },\n              {\n                label: \"GitHub\",\n                href: \"https://github.com/facebook/docusaurus\",\n              },\n            ],\n          },\n        ],\n        copyright: `Copyright © ${new Date().getFullYear()} Igor Kotua.`,\n      },\n      prism: {\n        theme: lightCodeTheme,\n        darkTheme: darkCodeTheme,\n      },\n    }),\n\n  plugins: [require.resolve(\"@cmfcmf/docusaurus-search-local\")],\n};\n\nmodule.exports = config;\n"
  },
  {
    "path": "website/package.json",
    "content": "{\n  \"name\": \"\",\n  \"version\": \"0.0.0\",\n  \"private\": true,\n  \"scripts\": {\n    \"docusaurus\": \"docusaurus\",\n    \"start\": \"docusaurus start\",\n    \"build\": \"docusaurus build\",\n    \"swizzle\": \"docusaurus swizzle\",\n    \"deploy\": \"docusaurus deploy\",\n    \"clear\": \"docusaurus clear\",\n    \"serve\": \"docusaurus serve\",\n    \"write-translations\": \"docusaurus write-translations\",\n    \"write-heading-ids\": \"docusaurus write-heading-ids\"\n  },\n  \"dependencies\": {\n    \"@cmfcmf/docusaurus-search-local\": \"^0.11.0\",\n    \"@docusaurus/core\": \"2.0.0-beta.22\",\n    \"@docusaurus/preset-classic\": \"2.0.0-beta.22\",\n    \"@mdx-js/react\": \"^1.6.22\",\n    \"clsx\": \"^1.2.0\",\n    \"prism-react-renderer\": \"^1.3.5\",\n    \"react\": \"^17.0.2\",\n    \"react-dom\": \"^17.0.2\"\n  },\n  \"devDependencies\": {\n    \"@docusaurus/module-type-aliases\": \"2.0.0-beta.22\"\n  },\n  \"browserslist\": {\n    \"production\": [\n      \">0.5%\",\n      \"not dead\",\n      \"not op_mini all\"\n    ],\n    \"development\": [\n      \"last 1 chrome version\",\n      \"last 1 firefox version\",\n      \"last 1 safari version\"\n    ]\n  },\n  \"engines\": {\n    \"node\": \">=16.14\"\n  }\n}\n"
  },
  {
    "path": "website/sidebars.js",
    "content": "/**\n * Creating a sidebar enables you to:\n - create an ordered group of docs\n - render a sidebar for each doc of that group\n - provide next/previous navigation\n\n The sidebars can be generated from the filesystem, or explicitly defined here.\n\n Create as many sidebars as you want.\n */\n\n// @ts-check\n\n/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */\nconst sidebars = {\n  // By default, Docusaurus generates a sidebar from the docs folder structure\n  tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],\n\n  // But you can create a sidebar manually\n  /*\n  tutorialSidebar: [\n    {\n      type: 'category',\n      label: 'Tutorial',\n      items: ['hello'],\n    },\n  ],\n   */\n};\n\nmodule.exports = sidebars;\n"
  },
  {
    "path": "website/src/components/HomepageFeatures/index.js",
    "content": "import React from \"react\";\nimport styles from \"./styles.module.css\";\nimport SearchBarWrapper from \"@theme-original/SearchBar\";\n\nexport default function HomepageFeatures() {\n  return (\n    <section className={styles.features}>\n      <div className=\"container text--center\">\n        <h2 className=\"text--center\">\n          Search for alternatives to your favorite product 👇\n        </h2>\n        <SearchBarWrapper />\n      </div>\n    </section>\n  );\n}\n"
  },
  {
    "path": "website/src/components/HomepageFeatures/styles.module.css",
    "content": ".features {\n  display: flex;\n  align-items: center;\n  padding: 2rem 0;\n  width: 100%;\n}\n\n.featureSvg {\n  height: 200px;\n  width: 200px;\n}\n"
  },
  {
    "path": "website/src/css/custom.css",
    "content": "/**\n * Any CSS included here will be global. The classic template\n * bundles Infima by default. Infima is a CSS framework designed to\n * work well for content-centric websites.\n */\n\n/* You can override the default Infima variables here. */\n:root {\n  --ifm-color-primary: #c51d1d;\n  --ifm-color-primary-dark: #782929;\n  --ifm-color-primary-darker: #712727;\n  --ifm-color-primary-darkest: #5d2020;\n  --ifm-color-primary-light: #df5151;\n  --ifm-color-primary-lighter: #ef8686;\n  --ifm-color-primary-lightest: #f7b1b1;\n  --ifm-code-font-size: 95%;\n  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);\n}\n\n/* For readability concerns, you should choose a lighter palette in dark mode. */\n[data-theme='dark'] {\n  --ifm-color-primary: #c51d1d;\n  --ifm-color-primary-dark: #7d3232;\n  --ifm-color-primary-darker: #743535;\n  --ifm-color-primary-darkest: #5d2020;\n  --ifm-color-primary-light: #df6a6a;\n  --ifm-color-primary-lighter: #ed9999;\n  --ifm-color-primary-lightest: #f6cbcb;\n  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);\n}\n"
  },
  {
    "path": "website/src/pages/about.md",
    "content": "---\ntitle: About this project\n---\n\n# About this project\n\nThis project was born as a extension on top of [Awesome GitHub List](https://github.com/RunaCapital/awesome-oss-alternatives)\n"
  },
  {
    "path": "website/src/pages/index.js",
    "content": "import React from \"react\";\nimport clsx from \"clsx\";\nimport Link from \"@docusaurus/Link\";\nimport useDocusaurusContext from \"@docusaurus/useDocusaurusContext\";\nimport Layout from \"@theme/Layout\";\nimport HomepageFeatures from \"@site/src/components/HomepageFeatures\";\n\nimport styles from \"./index.module.css\";\n\nfunction HomepageHeader() {\n  const { siteConfig } = useDocusaurusContext();\n  return (\n    <header className={clsx(\"hero hero--primary\", styles.heroBanner)}>\n      <div className=\"container\">\n        <h1 className=\"hero__title\">{siteConfig.title}</h1>\n        <p className=\"hero__subtitle\">{siteConfig.tagline}</p>\n        <div className={styles.buttons}>\n          <Link\n            className=\"button button--secondary button--lg\"\n            to=\"/docs/intro\"\n          >\n            Browse the list 📒\n          </Link>\n        </div>\n      </div>\n    </header>\n  );\n}\n\nexport default function Home() {\n  const { siteConfig } = useDocusaurusContext();\n  return (\n    <Layout\n      title={`${siteConfig.title}`}\n      description=\"Awesome OSS Alternatives\"\n    >\n      <HomepageHeader />\n      <main>\n        <HomepageFeatures />\n      </main>\n    </Layout>\n  );\n}\n"
  },
  {
    "path": "website/src/pages/index.module.css",
    "content": "/**\n * CSS files with the .module.css suffix will be treated as CSS modules\n * and scoped locally.\n */\n\n.heroBanner {\n  padding: 4rem 0;\n  text-align: center;\n  position: relative;\n  overflow: hidden;\n}\n\n@media screen and (max-width: 996px) {\n  .heroBanner {\n    padding: 2rem;\n  }\n}\n\n.buttons {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n}\n"
  },
  {
    "path": "website/src/pages/markdown-page.md",
    "content": "---\ntitle: Markdown page example\n---\n\n# Markdown page example\n\nYou don't need React to write simple standalone pages.\n"
  },
  {
    "path": "website/static/.nojekyll",
    "content": ""
  }
]