scotty VS dhall-lang

Compare scotty vs dhall-lang and see what are their differences.

scotty

Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp (Official Repository) (by scotty-web)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
scotty dhall-lang
19 113
1,689 4,131
0.7% 0.5%
8.0 6.0
5 days ago about 2 months ago
Haskell Dhall
BSD 3-clause "New" or "Revised" License 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.

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.

dhall-lang

Posts with mentions or reviews of dhall-lang. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-03.
  • Apple releases Pkl – onfiguration as code language
    14 projects | news.ycombinator.com | 3 Feb 2024
    Fail to see how this is any different than Dhall (https://dhall-lang.org/) other than it produces plists too.
  • Pkl, a Programming Language for Configuration
    12 projects | news.ycombinator.com | 2 Feb 2024
    Kubernetes config is a decent example. I had ChatGPT generate a representative silly example -- the content doesn't matter so much as the structure:

    https://gist.github.com/cstrahan/528b00cd5c3a22e3d8f057bb1a7...

    Now consider 100s (if not 1000s) of such files.

    I haven't given Pkl an in depth look yet, but I can say that the Industry Standard™ of "simple YAML" + string substitution (with delicate, error prone indentation -- since YAML is indentation sensitive) is easily beat by any of:

    - https://jsonnet.org/

    - https://nickel-lang.org/

    - https://nixos.org/manual/nix/stable/language/index.html

    - https://dhall-lang.org/

    - (insert many more here, probably including Pkl)

  • Why the fuck are we templating YAML? (2019)
    27 projects | news.ycombinator.com | 23 Jan 2024
  • Is Htmx Just Another JavaScript Framework?
    9 projects | news.ycombinator.com | 11 Jan 2024
    There are underpowered languages / tools, that can only solve a problem for which they are intended poorly. But not all limited tools are like that.

    Say, eBPF is prominently not Turing-complete, which allows to guarantee that a eBPF program terminates, and even how soon. Still eBPF is hugely useful in its area.

    Or, say, regular expressions are limited to regular languages; in particular, they famously [1] cannot process recursive structures, like trees. Still tools like grep / ag / rg are mightily useful.

    Yes, I agree that YAML is underpowered for proper k8s configuration! But it's also too powerful for its own good in other aspects [2]. I wish Google used Dhall [3] or their own purely functional config language (FCL? I already forgot the name) instead of YAML; sadly, they did not.

    [1]: https://stackoverflow.com/a/1732454/223424

    [2]: https://ruudvanasseldonk.com/2023/01/11/the-yaml-document-fr...

    [3]: https://dhall-lang.org/

  • 10 Ways for Kubernetes Declarative Configuration Management
    23 projects | dev.to | 1 Jan 2024
    Dhall: Dhall is a programmable configuration language that combines features like JSON, functions, types, and import capabilities. Its style leans towards functional programming, so if you're familiar with functional-style languages such as Haskell, you might find Dhall to be quite intuitive.
  • Berry is a ultra-lightweight dynamically typed embedded scripting language
    10 projects | news.ycombinator.com | 7 Oct 2023
    I've been thinking along these lines but more 'strongly validated' than statically typed in the sense that you'd be better off being able to load the entire config and then produce a list of problems (and should be able to offer good editor support if done correctly).

    Though https://dhall-lang.org/ demonstrates that you can statically type quite a lot of configuration to great advantage, which appears to be programmatically embeddable in multiple languages per https://docs.dhall-lang.org/howtos/How-to-integrate-Dhall.ht...

  • What Is the Point of Decidability
    1 project | news.ycombinator.com | 5 Oct 2023
    > Where practical is in the sense of an engineer (or in their terms, a CS practitioner),

    Configuration processing. E.g. I'd like my yamls to be decidable, though I'd settle for guaranteed to halt[1].

    [1] https://dhall-lang.org/

  • What Is Wrong with TOML?
    15 projects | news.ycombinator.com | 13 Sep 2023
    Maybe you'd like jsonnet: https://jsonnet.org/

    I find it particularly useful for configurations that often have repeated boilerplate, like ansible playbooks or deploying a bunch of "similar-but" services to kubernetes (with https://tanka.dev).

    Dhall is also quite interesting, with some tradeoffs: https://dhall-lang.org/

    A few years ago I did a small comparison by re-implementing one of my simpler ansible playbooks: https://github.com/retzkek/ansible-dhall-jsonnet

  • Show HN: FlakeHub – Discover and publish Nix flakes
    2 projects | news.ycombinator.com | 22 Aug 2023
  • Home Blog Better configuration languages – A talk about Dhall [video]
    1 project | news.ycombinator.com | 17 Aug 2023
    And to checkout Dhall: https://dhall-lang.org/

What are some alternatives?

When comparing scotty and dhall-lang you can also consider the following projects:

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

cue - CUE has moved to https://github.com/cue-lang/cue

reroute - Another Haskell web framework for rapid development

jsonnet - Jsonnet - The data templating language

json - Haskell JSON library

cue - The home of the CUE language! Validate and define text-based and dynamic configuration

scotty-tls - Run your Scotty apps over TLS

terraform - Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

scotty-session - Adding session functionality to scotty

jsonlogic - Go Lang implementation of JsonLogic

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

nix-gui - Use NixOS Without Coding