Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Lumo is a standalone ClojureScript environment that runs on Node.js and the V8 JavaScript engine. It starts up instantaneously and has out-of-the-box access to the entire Node.js ecosystem.
Lumo also provides a ClojureScript build API, making it possible to compile ClojureScript projects entirely without the JVM, thanks to the experimental JavaScript version of the Google Closure Compiler.
Read the announcement blog post and our pledge!
If you enjoy Lumo, consider backing or sponsoring the project on
Platform | Status |
---|---|
macOS | |
Linux | |
Windows |
npm is a package runner that comes with node6+. You can try lumo "without install" with:
npx -p lumo-cljs lumo
$ npm install -g lumo-cljs
If you get a permission failure, try this:
$ npm install -g lumo-cljs --unsafe-perm
Note: the installed binary will be named lumo
rather than lumo-cljs
$ brew install lumo
Note: If you want to install a binary built from master, run brew install --HEAD lumo
(at your own responsibility).
$ docker pull anmonteiro/lumo:latest
$ docker run -it anmonteiro/lumo
$PATH
.Enter lumo
at the command line to launch it.
Check out lumo -h
for usage instructions and supported command line options.
Lumo can compile ClojureScript code as of version 1.2.0
. See the introductory
blog post.
It is still considered experimental, given the relatively new Google Closure
Compiler port to JavaScript,
but it aims to be at feature parity with the JVM ClojureScript compiler.
The build API mirrors the ClojureScript one. Please reference its
Quick Start and the
Compiler Options. You
can basically just replace the namespace with lumo.build.api
:
(require 'lumo.build.api)
(lumo.build.api/build "src" {:output-to "out/main.js"})
The following example also shows how to use multiple source folders.
(require '[lumo.build.api :as b])
(b/build
(b/inputs "src1" "src2") ;; variadic
{:output-to "out/main.js"})
To build Lumo from source:
boot release
.build/lumo
(or build\lumo.exe
if you're
on Windows).See CONTRIBUTING.md.
Support us with a monthly donation and help us continue our activities. [Become a backer]
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
Copyright © 2016-2017 António Nuno Monteiro
Distributed under the Eclipse Public License (see LICENSE).
1.10.0 (2019-04-09)
Important Note: This version is broken and was released by mistake. Do not use.
FAQs
Fast, cross-platform, standalone ClojureScript REPL
The npm package lumo-cljs receives a total of 41 weekly downloads. As such, lumo-cljs popularity was classified as not popular.
We found that lumo-cljs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.