purs-imports

0.0.0 • Public • Published

purs-imports

A CLI that generates a Graphviz graph from a PureScript module.

Usage

Let's say we've got a PureScript module named Main.purs:

module Main (main) where

import Prelude

import Effect as Effect

main :: Effect.Effect Unit
main = pure unit

If we run purs-imports on Main.purs:

$ purs-imports Main.purs

We should get a graph like:

digraph imports {
  Main -> Effect;
  Main -> Prelude;
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i purs-imports

      Weekly Downloads

      1

      Version

      0.0.0

      License

      Apache-2.0

      Unpacked Size

      7.11 MB

      Total Files

      7

      Last publish

      Collaborators

      • joneshf