Liking cljdoc? Tell your friends :D

Clojure Debug

Repository

Clojars Project

Documentation

Install

Follow instructions on the Clojars page

Usage

On fn or defn append -input, -output, -io, -group or -group-io to wrap function to log stuff in the console

-(ns hello)
+(ns hello
+  (:use [debug.macro]))
 
-(defn my-function
+(defn-group-io my-function
   [arg]
   (do-stuff arg))

Check more on the documentation

Demo

Check the demo folder

Contributing

Deploy a new version

rm --force pom.xml
export CLOJARS_USERNAME=username
export CLOJARS_PASSWORD=password
clj -M:release

Backlog

  • Clojars
  • Backlog
    • [ ] docstring support
    • [ ] add tests
    • [ ] debug rum components
      • using why-did-you-render ?
      • in another package ?

License

MIT License

Can you improve this documentation?Edit on GitLab

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close