pointful alternatives and similar packages
Based on the "Development" category.
Alternatively, view pointful alternatives based on common mentions on social networks and blogs.
-
stgi
A user-centric visual STG implementation to help understand GHC/Haskell's execution model. -
haskell-lsp
Haskell library for the Microsoft Language Server Protocol -
criterion
A powerful but simple library for measuring the performance of Haskell code. -
structured-haskell-mode
Structured editing minor mode for Haskell in Emacs -
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
inline-c
Write Haskell source files including C code inline. No FFI required. -
inline-java
Haskell/Java interop via inline Java code in Haskell modules. -
gi-atk
Generate Haskell bindings for GObject-Introspection capable libraries -
fourmolu
A fourk of ormolu that uses four space indentation and allows arbitrary configuration. Don't like it? PRs welcome! -
lambdabot
A friendly IRC bot and apprentice coder, written in Haskell. -
lambdabot-core
A friendly IRC bot and apprentice coder, written in Haskell. -
scion
OLD, DEPRECATED: Use this instead https://github.com/haskell/haskell-ide-engine -
threadscope
A graphical tool for profiling parallel Haskell programs
Access the most powerful time series database as a service
Do you think we are missing an alternative of pointful or a related project?
Popular Comparisons
README
pointful

Stand-alone command-line version of the pointful plugin for Lambdabot.
This tool transforms Haskell expressions from the implicit pointfree style to the explicit pointful style. This makes it easier to understand such expressions.
For example, consider the expression max 100 . uncurry max
, which is in pointfree style. In pointful style, this becomes \ tuple -> max 100 ((uncurry max) tuple)
. With a little additional investigation around uncurry max
, it can be determined that this expression takes a 2-tuple and returns the maximum of its elements and 100.
Installation
cabal install pointful
Usage
$ pointful "max 100 . uncurry max"
\ c -> max 100 ((uncurry max) c)
Credits
Pointful plugin code taken from Lambdabot. Originally written by Thomas Jäger (?).