What is Haste?

Haste is an implementation of the Haskell functional programming language, geared towards web applications. Haste is based on the de facto standard GHC compiler, which means that it supports the full Haskell language, including GHC extensions and produces highly optimized code but comes with an extended set of standard libraries. Haste support modern web technologies such as WebSockets, LocalStorage, Canvas, etc. out of the box. In addition, Haste comes prepackaged with facilities for preemptive multitasking, working with binary data and other niceties.

A Haste program can be compiled into a single JavaScript file, much like traditional browser-side programs, or into a JavaScript file and a server-side binary, with strongly typed communication between the two. In essence, Haste lets you write your client-server web application as a single, type-safe program, rather than two separate programs that just happen to talk to each other over some web API as is traditional.

You don’t need to throw away all of your old code to start using Haste. In addition to the standard Haskell FFI, Haste provides its own flexible mechanism for easy Haskell-JavaScript integration, using fancy type magic to allow data of any type to be used by both Haskell and JavaScript code with minimal effort.

Haste programs are compact. While a certain increase in code size over hand-rolled JavaScript is unavoidable, an optimized but uncompressed Haste program is normally less than 3x the size of an equivalent hand-written program and the compiler takes special care to produce minifiable code, making the latency penalty of using Haste minimal.

Haste is developed at Chalmers University of Technology as free software under the three-clause BSD license. If your favorite feature is not yet implemented, why not ? You might also want to join the or our IRC channel #haskell-haste.

Getting started

To get started building type-safe, distributed web applications in Haskell:

  1. Download and install the Haste compiler for your operating system.

If you only want to write client-side applications and couldn’t care less about Haste’s client-server capabilities, you’re done. However, if you want to build your whole application using Haste.App, you have a few steps to go still.

  1. Install a GHC 7.10-based Haskell Platform.
  2. Install Haste.App according do the instructions on the Haste.App download page.