6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
(let [app (Express.call)
|
|
port 3000]
|
|
(app.get "/" ->[req res next] (res.send "Hello World!"))
|
|
(app.listen port ->(print "kiss-express listening at http://localhost:$port")))
|
|
|