API for graph - tools.deps.graph 1.1.85-SNAPSHOT (in development)


Full namespace name: clojure.tools.deps.graph

Overview





Public Variables and Functions



-main

function
Usage: (-main & args)
Create deps graphs. By default, reads deps.edn in current directory, creates deps graph,
and shows using a viewer. Use ctrl-c to exit.

Options:
  -d DEPSFILE - deps.edn file to read, default=deps.edn
  -t - Trace mode, will output one image per expansion step
  -f TRACEFILE - Trace file mode - read trace file, don't use deps.edn file
  -o FILE - Output file, in trace mode required and will create N images
  -a - Concatenated alias names when reading deps file
  --trace-omit - Comma-delimited list of libs to skip in trace images
  --size - Include jar size in dep graph nodes

    
    
    Source
  


graph

function
Usage: (graph opts)
Create deps graphs. By default reads deps.edn in current directory, creates deps graph,
and shows using a viewer. Use ctrl-c to exit.

Options:
  :deps Path to deps file (default = "./deps.edn")
  :trace Flag to use trace mode (default = false)
  :trace-file Path to trace.edn file to read
  :output Output file path
  :trace-omit collection of lib symbols to omit in trace mode (default = nil)
  :size Flag to include sizes in images (default = false)

    
    
    Source
  


parse-opts

function
Usage: (parse-opts args)
Parse the command line opts to make-classpath

    
    
    Source
  


parse-syms

function
Usage: (parse-syms s)
Parses a concatenated string of libs into a collection of symbols
Ex: (parse-libs "org.clojure/clojure,org.clojure/test.check")
Returns: [org.clojure/clojure org.clojure/test.check]

    
    
    Source
  
Logo & site design by Tom Hickey.
Clojure auto-documentation system by Tom Faulhaber.