binaryen VS scotty

Compare binaryen vs scotty and see what are their differences.

binaryen

DEPRECATED in favor of ghc wasm backend, see https://www.tweag.io/blog/2022-11-22-wasm-backend-merged-in-ghc (by tweag)

scotty

Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp (Official Repository) (by scotty-web)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
binaryen scotty
9 19
2,007 1,689
- 0.7%
3.4 8.0
over 1 year ago 5 days ago
Haskell Haskell
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.

binaryen

Posts with mentions or reviews of binaryen. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-13.
  • Building problems for using `Asterius` to compile Haskell to Webassembly.
    1 project | /r/haskell | 15 Sep 2022
    I've encountered a building problem when using asterius to compile a multi-packages cabal project, the detail could be found here, any suggestions?
  • Options for a frontend of demo for a toy app
    6 projects | /r/haskell | 13 Jun 2022
    ghcjs is the way to go for you, and soon it might be asterius. i do not know how hard it is to set ghcjs up without a framework. but frameworks like obelisk (based on reflex-dom), shpadoinkle, and miso automate that for. i personally like obelisk for its functional reactive programming but it can get awkward and get in your way. so if gui programming is just a means to the end of this one small application and you are not really interested in it nor functional reactive programming, shpadoinkle or miso might suit you better. miso implements the elm architecture (also "TEA", "functional model view controller") and shpadoinkle implements something directly equivalent to the elm architecture. but shpadoinkle achieves more composable widgets by minimalizing the elm architecture. so i recommend shpadoinkle for its better concept although miso is more mature.
  • hint: Runtime Haskell interpreter
    6 projects | /r/haskell | 1 May 2022
    Also, hint uses unsafeCoerce, and thus implicitly relies on an assumption about how values are represented at runtime. Namely, if a program P is interpreting an expression E of type A, hint assumes that the value of type A produced by the ghc interpreter has the same representation as the values of type A which are manipulated by program P. This is not guaranteed to be the case, since P has been compiled by the compiler portion of ghc while E has been evaluated by the interpreter portion of ghc. This means the ghc devs had to carefully craft their compiler and interpreters to match. When targetting the browser, a Haskell-to-js or Haskell-to-wasm compiler such as Asterius modifies ghc's code-generator so it produces js or wasm code. You would thus also need to tweak the interpreter so that it produces js or wasm values which match what the modified code-generator outputs. Or you could restrict yourself to the hint's less expressive eval :: String -> String API.
  • M1Pro Woes
    3 projects | /r/haskell | 8 Feb 2022
    We found a post where someone had a similar issue (here), but the fix in that issue doesn't help: using `ar` from `binutils` causes link errors like this instead:
  • Pandoc in the browser w/ lua (possible contract gig?)
    4 projects | /r/haskell | 16 Jan 2022
    https://github.com/tweag/asterius/issues/851 (asterius has a demo, but no source, and I -assume no lua filter support)
  • It seems like every top tier team I work in insists on Yarn over NPM, almost unanimously it seems like all of these killer devs know Yarn is the industry standard on serious projects. Why do all documentation across the web default to npm installation instructions and assume you're using npm?
    1 project | /r/webdev | 1 Dec 2021
    All modern ones support Haskell: https://github.com/tweag/asterius
  • Is GHCJS stuck on GHC 8.6.5?
    3 projects | /r/haskell | 17 Apr 2021
    Another option is Asterius. I'm not familiar with the current state, and it's not had active development for about 3 months now, either, so it may be in the same boat? But I think the big disadvantage of Asterius is that there's just a lot less usage, and therefore a lot less testing with the whole Haskell ecosystem, versus GHCJS which has been a fixture for a while and where loads of people have thought about compatibility for years.
  • Haskell to JS
    4 projects | /r/haskell | 22 Jan 2021
    Check out asterius
  • WebAssembly Studio
    5 projects | news.ycombinator.com | 31 Dec 2020
    I've played around with Haskell via the Asteruis project : https://github.com/tweag/asterius

    Also emscripten of course, for C/C++.

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 binaryen and scotty you can also consider the following projects:

proposals - Tracking WebAssembly proposals

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

ajhc - A fork of jhc. And also a Haskell compiler.

reroute - Another Haskell web framework for rapid development

pcf - A small compiler for PCF

json - Haskell JSON library

hyper-haskell-server - The strongly hyped Haskell interpreter.

scotty-tls - Run your Scotty apps over TLS

dhall - Maintainable configuration files

scotty-session - Adding session functionality to scotty

haste-compiler - A GHC-based Haskell to JavaScript compiler

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