GithubHelp home page GithubHelp logo

mgttlinger / haskell-code-explorer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from alexwl/haskell-code-explorer

0.0 3.0 0.0 988 KB

Web application for exploring and understanding Haskell codebases

License: MIT License

Haskell 66.96% JavaScript 22.42% HTML 8.67% CSS 1.94%

haskell-code-explorer's Introduction

Haskell code explorer

Haskell code explorer is a web application for exploring and understanding Haskell codebases. It provides IDE-like code intelligence features such as types and documentation on hover, "go to definition", "find references" and semantic highlighting.

Examples :

Haskell code explorer

Haskell code explorer consists of an indexer, an HTTP server, and a JavaScript application. The indexer uses GHC API to create a data structure that contains detailed information about the source code of a Cabal package. The HTTP server reads that data structure into memory and responds to HTTP requests from the JavaScript application.

Motivation

Reading and understanding code is an essential part of the software development process. Understanding code in any statically typed language is much easier when code intelligence features (types on hover, go-to-definition, etc.) are available. Code intelligence for Haskell is especially useful because types are informative and precise (thanks to Haskell's purity and global type inference).

Features

  • Types (actual type, instantiated type, instance resolution tree) and documentation on hover. Types are interactive : left-click on type constructor -> go to definition, right click on type constructor -> show kind signature.
    Hover

  • Go to definition

  • Find references

  • Type of each expression
    Expression
    Select a piece of text to get the type of each Haskell expression inside the selection.

  • Semantic highlighting

Installation

git clone https://github.com/alexwl/haskell-code-explorer
cd haskell-code-explorer

To build Haskell code explorer Stack (https://docs.haskellstack.org/en/stable/README/) is needed.

At the moment Haskell code explorer supports GHC 8.2.2 and 8.0.2.

For GHC 8.2.2:

stack install

For GHC 8.0.2:

stack --stack-yaml=stack-8.0.2.yaml install

Indexing source code of a Cabal package

haskell-code-indexer executable is responsible for indexing packages (by default index is saved to .haskell-code-explorer directory).

A package should be built using either cabal-install or stack before indexing (cabal new-build,cabal build, or stack build command should be executed).

haskell-code-indexer requires globally installed GHC and cabal-install (cabal). The reason for this is that haskell-code-indexer uses cabal-helper library https://hackage.haskell.org/package/cabal-helper to get package build information. cabal-helper builds (at runtime) an executable linked against a version of Cabal library that was used to configure the package.

If there is no globally installed GHC on the system, then it is possible to use stack exec command (https://docs.haskellstack.org/en/stable/GUIDE/#exec) that adds a path to GHC binaries installed by Stack to PATH environment variable :

stack --resolver=lts-11.3 exec --no-ghc-package-path haskell-code-indexer -- INDEXER_OPTIONS

Examples :

Show all indexer options:

haskell-code-indexer -h

Index package :

haskell-code-indexer --package PATH

Index package with specific dist directory:

haskell-code-indexer --package PATH --dist dist-newstyle/build/x86_64-linux/ghc-8.2.2/hpath-0.9.2

Index package built by Stack:

haskell-code-indexer --package PATH --dist $(stack path --dist-dir)

Starting HTTP Server

haskell-code-server executable reads the package index created by haskell-code-indexer and starts the HTTP server. The HTTP server responds to API requests and serves static assets (JavaScript files that are in haskell-code-explorer/javascript/release directory).

Examples :

Show all server options :

haskell-code-server -h

Load the indexed package and start the server :

haskell-code-server --package PATH --port 8080 --js-path haskell-code-explorer/javascript/release

Load multiple indexed packages and start the server :

haskell-code-server --package PATH1 --package PATH2 --package PATH3 --port 8080 --js-path haskell-code-explorer/javascript/release

Open http://localhost:8080 in a browser to explore source code of the package.

haskell-code-explorer's People

Contributors

alexwl avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.