This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-05-05
Channels
- # aws-lambda (1)
- # beginners (294)
- # boot (35)
- # cider (19)
- # cljs-dev (39)
- # cljsrn (7)
- # clojars (48)
- # clojure (266)
- # clojure-android (1)
- # clojure-brasil (1)
- # clojure-france (2)
- # clojure-greece (5)
- # clojure-italy (7)
- # clojure-mexico (1)
- # clojure-russia (24)
- # clojure-spec (10)
- # clojure-uk (31)
- # clojurescript (134)
- # consulting (7)
- # cursive (69)
- # datomic (20)
- # emacs (57)
- # events (2)
- # figwheel (2)
- # hoplon (1)
- # jobs-discuss (19)
- # luminus (33)
- # lumo (18)
- # mount (1)
- # off-topic (32)
- # om (5)
- # onyx (27)
- # pedestal (15)
- # re-frame (12)
- # reagent (28)
- # rum (2)
- # schema (2)
- # spacemacs (9)
- # unrepl (2)
- # untangled (7)
- # vim (5)
- # yada (4)
https://github.com/pmq20/node-compiler/blob/master/README.md Constant updating in node is real
@cfleming older versions have archived binaries on the github release page
no absolute need to build from git 馃檪
Upgraded lumo to 1.4.1 but it does no longer wait when I start a simple web server:
(def http (nodejs/require "http"))
(-> (.createServer http (fn [req res]
(doto res
(.writeHead 200 {"Content-Type" "text/plain"})
(.end "Hello from ClojureScript"))))
(.listen 8080 "127.0.0.1"))
(println "Running on port 8080")
But instead just exits, can I somehow make it stay alive?@vikeri from the repl or from a script?
@pesterhazy From a script
can reproduce locally
probably related to this commit? https://github.com/anmonteiro/lumo/commit/09bc54061b4bf178eb97f4c1382baf2f30cf31b1
works with 1.2.0
getting node to exist properly seems to be thorny issue 馃檪
@vikeri sorry that was a bad regression
If you're on a mac, do brew install --HEAD lumo
@anmonteiro Ok I鈥檒l try it!
It'll take a long while to install, but that's expected
@vikeri let me know if it's affecting more people and I'll make a release
@anmonteiro Can confirm that the latest HEAD works
馃憤 thanks