StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Product

  • Stacks
  • Tools
  • Companies
  • Feed

Company

  • About
  • Blog
  • Contact

Legal

  • Privacy Policy
  • Terms of Service

© 2025 StackShare. All rights reserved.

API StatusChangelog
  1. Home
  2. Companies
  3. Dechea
Dechea logo

Dechea

Verified

Dechea is a treatment planner for doctors to provide patients with the best possible treatment for their current situation.

Kempten (Allgäu)dechea.com
20
Tools
2
Decisions
0
Followers

Tech Stack

Application & Data

4 tools

Node.js logo
Node.js
Cloudflare Workers logo
Cloudflare Workers
Fauna logo
Fauna
GraphQL logo
GraphQL

Utilities

3 tools

Auth0 logo
Auth0
Google Analytics logo
Google Analytics
MeiliSearch logo
MeiliSearch

DevOps

2 tools

Better Stack logo
Better Stack
Snyk logo
Snyk

Team Members

Manuel Bauer
Manuel BauerSoftware Engineer & Co-Founder
Micha Mailänder
Micha MailänderCEO & Co-Founder

Engineering Blog

Stack Decisions

Micha Mailänder
Micha Mailänder

Jun 8, 2022

If these three are your options, I would recommend going with Auth0. They have all functionality available as developer API (Okta e.g. not) so you can manage your instance with Infrastructure as code and can also easily add functionalities relatively easily with the API. They are also really powerful if we're talking about ABAC (Attribute based access control). You can also enrich your access token with custom claims from your MongoDB, that can be probably really useful, as you said that you're dealing with multi tenancy.

We're using Auth0 in combination with Fauna Fauna is a database, so it would challenge you're mongodb. But Faunadb is the first database that implemented a full end user ABAC system directly in the database. (And also a lot easier than the ABAC systems from Okta or Auth0). This helps us, to use Auth0 only as identity platform and doing all the authorization with enriched claims over Fauna. With that you can skip in a lot of the cases you're backend, and you can request directly from the frontend your database (Blazing fast). Also, you can replace in some years Auth0 a lot easier with some upcoming cheaper (Auth0 was bought by Okta for a hilarious price) and "easy to use" passwordless identity provider like Passage.id

89.2k views89.2k
Comments
Micha Mailänder
Micha Mailänder

May 27, 2022

Fauna is a serverless database where you store data as JSON. Also, you have build in a HTTP GraphQL interface with a full authentication & authorization layer. That means you can skip your Backend and call it directly from the Frontend. With the power, that you can write data transformation function within Fauna with her own language called FQL, we're getting a blazing fast application.

Also, Fauna takes care about scaling and backups (All data are sharded on three different locations on the globe). That means we can fully focus on writing business logic and don't have to worry anymore about infrastructure.

93k views93k
Comments