Ring is de-facto standard API for clojure HTTP applications, similar to Ruby's Rack and Python's WSGI.
We're going to use it with http-kit webserver.
Create new Leiningen project:
lein new app myapp
Add http-kit dependency to project.clj
:
:dependencies [[org.clojure/clojure "1.8.0"]
[http-kit "2.1.18"]]
Add :require
for http-kit to core.clj
:
(ns test.core
(:gen-class)
(:require [org.httpkit.server :refer [run-server]]))
Define ring request handler. Request handlers are just functions from request to response and response is just a map:
(defn app [req]
{:status 200
:headers {"Content-Type" "text/html"}
:body "hello HTTP!"})
Here we just return 200 OK with the same content for any request.
Start the server in -main
function:
(defn -main
[& args]
(run-server app {:port 8080}))
Run with lein run
and open http://localhost:8080/
in browser.
Luminus is a Clojure micro-framework based on a set of lightweight libraries. It aims to provide a robust, scalable, and easy to use platform. With Luminus you can focus on developing your app the way you want without any distractions. It also has very good documentation that covers some of the majour topics
It is very easy to start with luminus. Just create a new project with the following commands:
lein new luminus my-app
cd my-app
lein run
Your server will start on the port 3000
Running lein new luminus myapp
will create an application using the default profile template. However, if you would like to attach further functionality to your template you can append profile hints for the extended functionality.
To add a profile simply pass it as an argument after your application name, eg:
lein new luminus myapp +cljs
You can also mix multiple profiles when creating the application, eg:
lein new luminus myapp +cljs +swagger +postgres