tapir VS scotty

Compare tapir vs scotty and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
tapir scotty
14 19
1,288 1,689
1.7% 0.8%
9.8 8.0
6 days ago 5 days ago
Scala Haskell
Apache License 2.0 BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tapir

Posts with mentions or reviews of tapir. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-21.
  • what library/framework should I use for backend development?
    3 projects | /r/scala | 21 Feb 2023
    You're not confined to the usual suggestions below (play, http4s). There's a ton of options. (I wrote test cases using a bunch of different frameworks a few years ago at https://github.com/hohonuuli/msdemos). Having written services using a variety of frameworks in production, I would strongly suggest using one that auto-generates API docs (openapi, swagger) for you. That will save you a huge amount of time later on. For heavier services, like the one at https://fathomnet.org/, I tend to the Java side (Quarkus is my current top choice, but Micronaut and Helidon are both great). For everything else I use Scala. My go-to right now is tapir using a vertx backend. See https://tapir.softwaremill.com/
  • Micronaut vs others(Spring Boot, Quarkus and co.)
    5 projects | /r/java | 10 Nov 2022
    Tapir is a Scala framework. (which runs on the JDK) Since the recent release of version 1.0, it's become my go to for many projects. It doens't provide much in the way of integrations with 3rd party frameworks, but I actually prefer that. It does autogenerate great swagger docs though.
  • Programming language comparison by reimplementing the same transit data app
    6 projects | news.ycombinator.com | 23 Oct 2022
    I do wonder where the recommendation to use http4s for beginners came from. http4s is a very capable library (and if you care much about composition it is excellent), but I wouldn't describe the documentation as beginner friendly.

    A slightly better starting point for scala 3 + type-safe server building is tapir e.g. https://github.com/softwaremill/tapir/blob/master/examples3/... . With that, you get a declarative definition of your endpoints (+ error types, auth, etc.) that you can use for both servers and clients, which comes very handy when writing integration tests of course.

    > absolutely ridiculous the fetishization of extremely complex FP and type-level hacking that goes on in the ecosystem

    An alternative way to look at it is that there is a lot of essential domain complexity that gets encoded via the type system to let the compiler do the hard work. That "extremely complex FP" does not arrive out of nowhere - I really recommend at least skimming through the slides from rossabaker, the http4s designer, that motivate where the core type signature comes from https://rossabaker.github.io/boston-http4s/#2

    I suppose one of the "features" that I like about the (typelevel) community is that the approach of "worse is better" is not taken, and a lot of effort is expended to make things correct, modular and orthogonal. This has the drawback of increased upfront complexity, that anecdotally pays off the moment your compiler does not error and the program runs as intended.

  • Scala.js AWS Lambda, using Scala 3
    6 projects | /r/scala | 13 Sep 2022
    Did you try tapir? There is a module for deploying aws lambda with Scala js. Not sure whether it is compatible with Scala 3, I am sticking with Scala 2 until Scala 3 gets more mature.
  • Library recommendations?
    4 projects | /r/scala | 9 Sep 2022
    I'm aware, but it's a design decision that was made on purpose, and which I find in practice not a big problem at all.
  • Monorepo: seeking for an advice for bi-lang project
    7 projects | /r/scala | 31 Jul 2022
    Backend is source of truth for types on frontend (backend generated OpenAPI definition with tapir, frontend takes it with orval)
  • Experienced dev new to Scala looking for a quick answer to get me on the right track - Advice on *standard* Scala framework stack to quickly set up a web-app backend ;
    2 projects | /r/scala | 3 Jul 2022
    In all cases I would strongly suggest to have a look at Tapir, regardless of the server implementation that you pick.
  • tAPIr 1.0 release [INFOGRAPHIC]
    1 project | /r/scala | 15 Jun 2022
    Check the infographic below, to see this tool history, functionalities and more. Make sure, to take tAPIr for a spin here and share your feedback with us in the comment section!
  • Scala vs Kotlin for REST API
    1 project | /r/scala | 11 Apr 2022
    Tapir is awesome, and you can pick the server backend according to your preferred ecosystem (for instance http4s + doobie, Zio + Quill, Akka + Slick, ...)
  • Resources for learning about http4s and Typelevel ecosystem?
    3 projects | /r/scala | 2 Feb 2022
    Finally I would strongly recommend having a look at Tapir. Even if you don't need to share endpoints or generate OpenAPI documentation, it provides a really neat abstraction on top of http4s.

scotty

Posts with mentions or reviews of scotty. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-08.
  • haskell todo list app (beginner)
    3 projects | /r/haskell | 8 Jun 2023
    I would suggest checking out scotty for the http server - it uses warp by default, and is very beginner-friendly.
  • HLS issues an error for Setup.hs and Spec.hs (using hspec-discover)
    2 projects | /r/haskellquestions | 20 Nov 2022
    Here's the current commit I'm working with: https://github.com/scotty-web/scotty/commit/3ed8586c046b46dc42740e8ac2e7fe712e84191d
  • School of Haskell: Basics
    12 projects | news.ycombinator.com | 11 Nov 2022
    If you're not a fan of the ruby-on-rails / swiss army knife approach that IHP takes, check out Scotty. Add Lucid for Html rendering, and Selda for Postgres. (There are other options for any of these tools if you prefer)

    - Scotty (simple web routing) https://hackage.haskell.org/package/scotty

  • Use Haskell from Nodejs
    1 project | /r/haskell | 5 Nov 2022
    Writing a Haskell webserver (maybe using scotty) and call it from node.
  • Programming language comparison by reimplementing the same transit data app
    6 projects | news.ycombinator.com | 23 Oct 2022
  • How to change state in a webserver application
    1 project | /r/haskell | 18 Sep 2022
    I've been looking for this as well, and found the globalstate.hs example in the scotty github repository. It uses a ReaderT of a TVar and shows how to update or read shared state in memory.
  • Suggestions for "dashboard" graphics libraries?
    4 projects | /r/haskell | 13 Aug 2022
    I've found htmx and hyperscript talking to scotty to be an easy way to get something like this going while retaining the joys of Haskell on the backend and avoiding the pains of Haskell on the frontend.
  • Web development in Haskell
    7 projects | /r/haskell | 9 Aug 2022
    Finally, to add my opinion in the context of some other posts: I'd suggest Scotty (and probably other libraries I'm less familiar with) before Servant in particular, as Servant is a lot to absorb if you're also trying to build fluency in Haskell at the same time. Similarly, I'd advocate for Elmish (disclaimer, it's written by (very talented programmers other than myself at) my company) over Halogen, at least based on the last time I tried Halogen--I found it pretty complex as well. Don't get me wrong, I think Servant and Halogen are both great, just...complex.
  • Building a REST API with Haskell
    2 projects | dev.to | 11 Jul 2022
    This is an example of REST API built with Scotty a web framework of Haskell and PostgreSQL a relational database. It's a simple API to manage products.
  • Options for a frontend of demo for a toy app
    6 projects | /r/haskell | 13 Jun 2022
    Not that I'm much of an expert, but if you're talking about a very barebones static single-page-app, then you could very easily get by just using blaze-html to put your elements on the page, and then scotty is a basic web framework you could use to serve up your app.

What are some alternatives?

When comparing tapir and scotty you can also consider the following projects:

smithy4s - https://disneystreaming.github.io/smithy4s/

lucid - Clear to write, read and edit DSL for writing HTML

http4s-jwt-auth - :lock: Opinionated JWT authentication library for Http4s

reroute - Another Haskell web framework for rapid development

distage-example - Example project built using distage, tagless final, http4s, doobie and zio

json - Haskell JSON library

scala-http-client - Extends the akka-http-client with retry logic, error handling, logging and signing

scotty-tls - Run your Scotty apps over TLS

pfps-shopping-cart - :shopping_cart: The Shopping Cart application developed in the book "Practical FP in Scala: A hands-on approach"

scotty-session - Adding session functionality to scotty

AkkaGRPC - Akka gRPC

fluid - 🐙 Code-generated, Auto-versioned, & Smart Web APIs