0Pricing
Clojure Functional Programming & JVM Backend Development · レッスン

LeiningenとDeps.ednの基礎

プロジェクトの作成、依存関係管理、タスクの自動化に必要なLeiningenとDeps.ednの基礎を理解します。

「LeiningenとDeps.ednの基礎」はCoddyKit上の無料Clojure Functional Programming & JVM Backend Developmentレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはClojure Functional Programming & JVM Backend Development学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Clojure Functional Programming & JVM Backend Developmentコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Why Clojure Needs Build Tools

In Clojure, build tools are essential for automating tasks like managing dependencies, compiling code, running tests, and packaging your application. They simplify project setup and ensure consistency.

Without them, you'd manually download libraries, set up classpaths, and invoke the JVM, which quickly becomes cumbersome for any non-trivial project.

Leiningen: The Clojure Workhorse

Leiningen is a popular and mature build automation tool for Clojure projects. It's inspired by Maven and handles everything from creating new projects to deploying them.

Its primary configuration file is project.clj, a Clojure data structure itself, making it very flexible.

Creating a Leiningen Project

You can create a new Leiningen application project using the lein new command. This command quickly generates a standard directory structure with boilerplate code.

Run this command in your terminal:

lein new app my-lein-app

Inside project.clj

The project.clj file defines your project's metadata and configuration. Key elements include:

  • :dependencies: A list of external libraries your project needs.
  • :main: Specifies the main entry point for your application.
  • :version: Your project's current version.

It's written in Clojure syntax, allowing for powerful, dynamic configurations.

(defproject my-lein-app "0.1.0-SNAPSHOT"
  :description "A sample Leiningen project."
  :url "http://example.com/FIXME"
  :dependencies [[org.clojure/clojure "1.11.1"]]
  :main ^:skip-aot my-lein-app.core
  :target-path "target/%s")

First Run with Leiningen

After creating your project, Leiningen provides an easy way to run your application. The lein run command executes the main function specified in project.clj.

Here's the default core.clj content that lein new app generates. Try running it!

(ns my-lein-app.core
  (:gen-class))

(defn -main
  "The entry point for our Leiningen app."
  [& args]
  (println "Hello from Leiningen!"))

Deps.edn: The Official Tool

deps.edn is Clojure's official and more lightweight dependency management and build tool, introduced with Clojure 1.9. It focuses solely on managing dependencies and classpaths.

It uses EDN (Extensible Data Notation), a subset of Clojure, for its configuration, making it very readable and easy to parse.

Setting Up a Deps.edn Project

Unlike Leiningen, deps.edn doesn't have a new command to scaffold projects. You typically create the necessary files and directories manually.

A minimal project requires a deps.edn file in your project root and a source directory (e.g., src) for your code.

Inside deps.edn

The deps.edn file defines your project's dependencies and source paths. Key elements include:

  • :paths: A vector of directories where your source code is located.
  • :deps: A map of external libraries and their versions, typically using Maven coordinates.

It's simpler than project.clj, focusing on classpath construction.

{:paths ["src"]
 :deps {org.clojure/clojure {:mvn/version "1.11.1"}
        org.clojure/tools.cli {:mvn/version "1.0.206"}}}

First Run with Deps.edn

To run a deps.edn project, you use the clj command (the Clojure CLI tool). You specify the main namespace using -m.

Here's a simple core.clj file that can be run with clj -m my-deps-app.core. Try it out!

(ns my-deps-app.core
  (:gen-class))

(defn -main
  "The entry point for our deps.edn app."
  [& args]
  (println "Hello from deps.edn!"))

Leiningen vs. Deps.edn

Both Leiningen and deps.edn are excellent tools, but they serve slightly different philosophies:

  • Leiningen: An all-in-one project manager with extensive plugin support for various tasks (testing, deployment, etc.).
  • deps.edn: A simpler, more focused tool for dependency and classpath management, often used with other CLI tools for specific tasks.

Many modern Clojure projects use deps.edn for its simplicity and directness, sometimes alongside Leiningen.

Build Tool Knowledge Check

Consider the core purpose and configuration approach of Leiningen and deps.edn.

Recap: Leiningen & Deps.edn Basics

We've explored the fundamentals of Clojure's two primary build tools:

  • Leiningen: A full-featured tool using project.clj for configuration, offering project creation and task automation.
  • deps.edn: A lightweight, official tool using deps.edn for classpath and dependency management, typically used with the clj CLI.

Both are crucial for managing Clojure projects efficiently, allowing you to choose based on your project's needs.

よくある質問

「LeiningenとDeps.ednの基礎」レッスンは無料ですか?

はい。「LeiningenとDeps.ednの基礎」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Clojure Functional Programming & JVM Backend Developmentコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Clojure Functional Programming & JVM Backend Developmentコースには全4レッスンが含まれています。

「LeiningenとDeps.ednの基礎」で何を学びますか?

プロジェクトの作成、依存関係管理、タスクの自動化に必要なLeiningenとDeps.ednの基礎を理解します。 ブラウザで直接実行するハンズオンコードでClojure Functional Programming & JVM Backend Developmentを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Clojure Functional Programming & JVM Backend Developmentを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのClojure Functional Programming & JVM Backend Developmentは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。

「LeiningenとDeps.ednの基礎」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このClojure Functional Programming & JVM Backend Developmentレッスンでコードを書いて実行できますか?

はい。すべてのClojure Functional Programming & JVM Backend Developmentレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. LeiningenとDeps.ednの基礎
  2. 依存関係とプラグインの管理
  3. ビルド、テスト、デプロイ
  4. プロファイル、エイリアス、環境の管理
← Clojure Functional Programming & JVM Backend Developmentに戻る