Coder Social home page Coder Social logo

dot-clojure's Introduction

dot-clojure

This is my personal .config/clojure/deps.edn (or .clojure/deps.edn) file providing useful clj aliases drawn from a variety of projects. It is published to GitHub so I can keep all my computers sync'd up -- and to provide a range of examples that folks new to the Clojure CLI might find helpful.

Several git dependencies here assume you have at least Clojure CLI 1.11.1.1273!

In addition, my .config/clojure/tools/ (.clojure/tools/) folder is also here, containing the tools that I've installed globally, via the latest Clojure CLI (was 1.11.3.1463 when I last updated this) -- see Tool installation and invocation in the Clojure CLI Reference. As I add global tools, I am removing them as aliases.

The main alias I use here is :dev/repl which starts various combinations of REPL tooling. See The :dev/repl Alias below for more details.

Since it is my personal file, it may make assumptions about my own environment. For example, it uses "RELEASE" for several tools -- and for Clojure itself, currently 1.12.0-beta1 -- so I can always get the latest stable version of any dev/test tool I use. I make no effort at backward-compatibility and may add, delete, or change aliases as they benefit me personally. Caveat Programmer!

If you want a really well-documented, well-maintained alternative that actually tracks versions of tools, I would recommend you use the Practicalli Clojure deps.edn project instead!

With that caveat out of the way, here is some basic documentation about my tools and aliases (there are additional examples in the comments in the deps.edn file itself). Note: I have recently cleaned this file up and removed a lot of aliases I no longer use!

TL;DR: add the following dependency and then start a REPL with clj -M:dev/repl (optionally with other aliases to bring in more tooling):

:aliases
{:dev/repl
 {:extra-deps
  {io.github.seancorfield/dot-clojure
   {:git/tag "v1.0.2"
    :git/sha "6a3f903"}}
  :main-opts ["-e" "((requiring-resolve 'org.corfield.dev.repl/start-repl))"]}}

Basic Tools

These are installed via clojure -Ttools install ... and usable via clojure -T with the tool name.

  • antq -- the outdated dependencies checker:
    • clojure -Tantq outdated -- check the current project's dependencies,
    • clojure -A:deps -Tantq help/doc -- for more information and other functions.
  • clj-watson -- a software composition analysis scanner, based on the National Vulnerability Database: clj-watson
    • clojure -Tclj-watson scan :deps-edn-path '"deps.edn"' :output '"stdout"'
  • new -- the latest version of deps-new to create new CLI/deps.edn projects: [This uses a different (simpler!) templating system to clj-new, below, and therefore does not recognize Leiningen or Boot templates!]
    • clojure -Tnew app :name myname/myapp -- creates a new deps.edn-based application project,
    • clojure -Tnew lib :name myname/mylib -- creates a new deps.edn-based library project,
    • clojure -Tnew template :name myname/mytemplate -- creates a new deps.edn-based template project,
    • clojure -A:somealias -Tnew create :template some/thing :name myname/myapp -- locates a template for some/thing on the classpath, based on :somealias, and uses it to create a new deps.edn-based project,
    • clojure -A:deps -Tnew help/doc -- for more information and other functions.

And the older clj-new tool:

  • clj-new -- the latest stable release of clj-new to create new projects from (Leiningen and other) templates:
    • clojure -Tclj-new app :name myname/myapp -- creates a new deps.edn-based application project (using tools.build for the uberjar),
    • clojure -Tclj-new lib :name myname/mylib -- creates a new deps.edn-based library project (using tools.build for the jar),
    • clojure -Tclj-new template :name myname/mytemplate -- creates a new deps.edn-based template project (using tools.build for the jar),
    • clojure -Tclj-new create :template something :name myname/myapp -- locates a template for something and uses it to create a new project (which might be deps.edn-based or lein-based, depending on the template),
    • clojure -A:deps -Tclj-new help/doc -- for more information and other functions.

More tools will be added to this section over time (as more tools add :tools/usage to their deps.edn files).

Basic Aliases

Deploy jar files (if you don't have a build.clj file):

  • :deploy -- pulls in and runs the latest stable release of Erik Assum's deps-deploy and deploys the specified JAR file to Clojars, based on your pom.xml and the CLOJARS_USERNAME and CLOJARS_PASSWORD environment variables; clojure -X:deploy :artifact '"MyProject.jar"'

There are aliases to pull in various useful testing and debugging tools:

  • :test -- adds both test and src/test/clojure to your classpath and pulls in the latest stable version of test.check

  • :runner -- pulls in Cognitect Labs' test-runner project and runs any tests it can find

  • :eastwood -- pulls in the latest stable release of Eastwood on your src and test folders; use with :test above

  • :check -- pulls in Athos' Check project to compile all your namespaces to check for syntax errors and reflection warnings like lein check

  • :expect -- pulls in the latest stable release of expectations/clojure-test -- the clojure.test-compatible version of Expectations

  • :bench -- pulls in the latest stable release of Criterium for benchmarking your code

  • :deps+ -- adds tools.deps to your classpath (the default :deps alias replaces the default classpath) so you can use help/doc on namespaces within your project, e.g., clojure -X:deps+ help/doc :ns my.app.core

There are aliases to pull in and start various REPL-related tools:

  • :dev/repl -- depending on what is on your classpath, start Rebel Readline, with a Socket REPL (if requested -- note that "port 0" will dynamically select an available port and print it out), but SOCKET_REPL_PORT env var and socket-repl-port property override, saves port to .socket-repl-port file for next time;

    • usage:
      • clj -M:portal:dev/repl -- basic REPL with Portal or
      • clojure -M:rebel:dev/repl -- Rebel Readline REPL or
      • clojure -M:rebel:portal:dev/repl -- ...with Portal or
      • clojure -M:nrepl:dev/repl -- basic nREPL server or
      • clojure -M:nrepl:portal:dev/repl -- basic nREPL server with Portal middleware or
      • clojure -M:cider-nrepl:dev/repl -- CIDER nREPL server or
      • clojure -M:cider-nrepl:portal:dev/repl -- CIDER nREPL server with Portal middleware or
    • Also works with Figwheel Main (now that I've started doing ClojureScript!):
      • clojure -M:portal:fig:build:dev/repl or
  • :classes -- adds the classes folder to your classpath to pick up compiled code (e.g., see https://clojure.org/guides/dev_startup_time)

  • :socket -- starts a Socket REPL on port 50505; can be combined with other aliases since this is just a JVM option

  • :rebel -- starts a Rebel Readline REPL

  • :nrepl -- starts a (headless) nREPL server on a random available port; clojure -M:nrepl

  • :cider-nrepl -- starts a (headless) CIDER-enhanced nREPL server on a random available port; clojure -M:cider-nrepl

  • :datomic/dev.datafy -- adds datafy/nav support for Datomic objects via datomic/dev.datafy

  • :dbxray -- adds donut-party/dbxray to help visualize your database structure

  • :jedi-time -- adds datafy/nav support for Java Time objects via jedi-time

  • :portal -- pulls in the latest stable release of the Portal data visualization tool -- see the Portal web site for usage options

  • :reflect -- adds Stuart Halloway's reflector utility (best used with Portal)

There are aliases to pull in specific versions of Clojure:

  • :1.12 -- Clojure 1.12.0-beta1 -- see changes to Clojure in prerelease versions of 1.12.0
  • :1.11 -- Clojure 1.11.3 -- see changes to Clojure in version 1.11.3
    • :1.11.2 -- Clojure 1.11.2
    • :1.11.1 -- Clojure 1.11.1
    • :1.11.0 -- Clojure 1.11.0
  • :1.10 -- Clojure 1.10.3
    • :1.10.2 -- Clojure 1.10.2
    • :1.10.1 -- Clojure 1.10.1
    • :1.10.0 -- Clojure 1.10.0
  • :1.9 -- Clojure 1.9.0
  • :1.8 -- Clojure 1.8.0
  • ... back to :1.0 (note: :1.5 is actually Clojure 1.5.1 to avoid a bug in Clojure 1.5.0, and :1.2 is 1.2.1)

Note: the :master alias has been removed since it is rarely different from the most recent (alpha) release of Clojure.

To work with the Polylith command-line tool:

  • :poly -- the latest (stable) release of Polylith's poly tool, as a library from Clojars (previously, this was a git dependency) -- example usage:
    • clojure -M:poly shell -- start an interactive Polylith shell,
    • clojure -M:poly info :loc -- display information about a Polylith workspace, including lines of code,
    • clojure -M:poly create component name:user -- create a user component in a Polylith workspace,
    • clojure -M:poly test :dev -- run tests in the dev project context, in a Polylith workspace.
  • :poly-next -- the latest SNAPSHOT release of the poly tool (currently 0.2.20-SNAPSHOT).

Note: the EXPERIMENTAL :add-libs alias has been removed -- use the clojure.repl.deps in Clojure 1.12.0 Alpha 2 or later instead!

The :dev/repl Alias

The :dev/repl alias calls org.corfield.dev.repl/start-repl in the repl.clj file from this repo. That does a number of things (see the start-repl docstring for more details):

  • Optionally, starts a Socket REPL server (with the port selected via an environment variable, a JVM property, or a dot-file created on a previous run).
  • If both Portal and org.clojure/tools.logging are on the classpath, it patch tools.logging to also tap> every log message in a format that Portal understands and can display (usually with the ability to go to the file/line listed in the log entry); call (dev/toggle-logging!) to turn this tap>'ing on and off.
  • If Portal 0.33.0 or later is on the classpath, use the Portal middleware with nREPL (if CIDER or nREPL are on the classpath). If using Portal 0.40.0 or later, this also adds the Portal Notebook middleware.
  • Starts Figwheel Main, if present on the classpath, else
  • Starts Rebel Readline, if present on the classpath, else
  • Starts a CIDER-enhanced nREPL Server, if cider-nrepl is present on the classpath, else
  • Starts an nREPL Server, if present on the classpath.

Note 1: since the repl.clj code uses requiring-resolve, it requires at least Clojure 1.10.0!

Note 2: if the Portal middleware is added to nREPL/CIDER, all evaluated results will be tap>'d (if the Portal UI is open and listening); my VS Code/Calva setup has additional configuration for working with Portal when the middleware is enabled!

Use with Figwheel

If you are doing ClojureScript development with Figwheel (figwheel-main) then you can do something like:

clojure -M:portal:fig:build:dev/repl

You'll get the regular Figwheel build REPL (for ClojureScript, which uses Rebel Readline) and a browser open on your application, plus a Socket REPL on an available port (or whatever your env says, for Clojure evaluation).

Connect to the Socket REPL, write your code as .cljc files, and you'll have the full power of your editor, Portal, and Figwheel! What you evaluate in your editor will be treated as Clojure code (and can be tap>'d into Portal, for example). What you evaluate at the REPL itself will be treated as ClojureScript code (and will affect your application instead).

License

Copyright © 2018-2023 Sean Corfield

Distributed under the Apache Software License version 2.0.

dot-clojure's People

Contributors

djebbz avatar seancorfield avatar slipset avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dot-clojure's Issues

Question about Chlorine REPL & REBL

Hi I just followed your great dot-closure file and YouTube videos about Atom, Chlorine & REBL.
I can eval expressions in terminal repl, and result is sent to rebl well.

I can connect Chlorine to the same repl server at same port 50505, however the evaluated expressions won't send to rebl at all. There seems no special config to make this work in your videos. What could be the possible issue? Thanks.

Combined Reveal/Rebel Readline startup

Code from @didibus

:repl {:extra-deps {com.bhauman/rebel-readline {:mvn/version "RELEASE"}
                               org.clojure/clojure {:mvn/version "RELEASE"}
                               vlaaad/reveal {:mvn/version "RELEASE"}}
                  :main-opts  ["-e" "(require,'rebel-readline.core),(require,'rebel-readline.clojure.line-reader),(require,'rebel-readline.clojure.service.local),(require,'vlaaad.reveal)(rebel-readline.core/with-readline-in,(rebel-readline.clojure.line-reader/create,(rebel-readline.clojure.service.local/create)),(vlaaad.reveal/repl,:prompt,(fn[])))"]}

Add comments with examples and links

To make this a better resource to share with others, add comments containing examples of how to use the various aliases and links back to the various project repositories.

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.