Kmono is a suite of tools and API's for working in Clojure (mono)repos. It aims to meet Clojure where it's at by providing a better understanding of deps.edn projects.
This project was built with a focus on improving the experience of working in Clojure monorepos but works great in standalone projects too.
deps.edn
in a 'Clojure native' way without having to
pull all alias definitions into root deps.edn
tools.build
programs to build and release
monoreposdeps.edn
dependencies during local development. Useful
for providing local paths to in-development libs without committing.brew install kepler16/tap/kmono
You can use the below script to automatically install the latest release
bash < <(curl -s https://raw.githubusercontent.com/kepler16/kmono/master/install.sh)
Or alternatively binaries for various platforms can be pulled directly from the Releases page.
tools.build
which contains
API's for building jar artifacts or simplifying the use of tools.build
in a kmono workspace.❯ kmono
NAME:
kmono - A cli for managing clojure (mono)repos
USAGE:
kmono [global-options] command [command options] [arguments...]
VERSION:
4.2.0
COMMANDS:
cp Produce a classpath string from a clojure project
repl Start a clojure repl
exec Run a command in each package
run Run an alias in project packages
GLOBAL OPTIONS:
-d, --dir S Run commands as if in this directory
-?, --help
Take a look at the example project to get a better idea of the type of project structures kmono is built to support and for references on how to correctly use the kmono API's and integrate it into your own project.
One of the things that kmono enables is integration into your editor by acting as a drop-in replacement for clojure -Spath
which is used by default by clojure-lsp.
If we instead use kmono cp
to generate the classpath then your clojure-lsp server will be able to provide better
analysis.
;; .lsp/config.edn
{:project-specs [{:project-path "deps.edn"
:classpath-cmd ["kmono" "cp"]}]}
local lspconfig = require('lspconfig')
lspconfig.clojure_lsp.setup {
init_options = {
["project-specs"] = {
{
["project-path"] = "deps.edn",
["classpath-cmd"] = { "kmono", "cp" },
},
},
},
}
Package-specific configurations are done within each deps.edn
file under the :kmono/package
key:
:kmono/package {;; maven artifact's group
:group com.example
;; the package name which is also used as maven's artifactId
;; this is optional and inferred from a package's dir name
:name my-lib}
Can you improve this documentation? These fine people already did:
Artem Medeu, Julien Vincent & Alexis VincentEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close