hdevtools

Persistent GHC powered background server for FAST haskell development tools

https://github.com/schell/hdevtools/

Version on this page:0.1.2.1
LTS Haskell 11.22:0.1.7.0
Stackage Nightly 2018-09-28:0.1.7.0
Latest on Hackage:0.1.8.0

See all snapshots hdevtools appears in

MIT licensed by Bit Connor
Maintained by [email protected]
This version can be pinned in stack with:hdevtools-0.1.2.1@sha256:6383bb6dd26287a483fe8658da3a02627ac9a976f131b299f3bee0435be57dc3,3340

Module documentation for 0.1.2.1

There are no documented modules for this package.

hdevtools is a backend for text editor plugins, to allow for things such as syntax and type checking of Haskell code, and retrieving type information, all directly from within your text editor.

The advantage that hdevtools has over competitors, is that it runs silently in a persistent background process, and therefore is able to keeps all of your Haskell modules and dependent libraries loaded in memory. This way, when you change only a single source file, only it needs to be reloaded and rechecked, instead of having to reload everything.

This makes hdevtools very fast for checking syntax and type errors (runs just as fast as the ':reload' command in GHCi).

In fact, syntax and type checking is so fast, that you can safely enable auto checking on every save. Even for huge projects, checking is nearly instant.

Once you start using hdevtools and you get used to having your errors shown to you instantly (without having to switch back and forth between GHCi and your editor), and shown directly on your code, in your editor (without having to wait forever for GHC to run) you will wonder how you ever lived without it.

In addition to checking Haskell source code for errors, hdevtools has tools for getting info about identifiers, and getting type information for snippets of code.