New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lumo-cljs

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lumo-cljs - npm Package Compare versions

Comparing version 1.8.0-beta to 1.8.0

2

package.json
{
"name": "lumo-cljs",
"version": "1.8.0-beta",
"version": "1.8.0",
"description": "Fast, cross-platform, standalone ClojureScript REPL",

@@ -5,0 +5,0 @@ "author":

@@ -49,2 +49,8 @@ <img src="./logo/full.png" alt="lumo logo" title="lumo" align="right" width="150" height="150" />

If you get a [permission failure](https://github.com/anmonteiro/lumo/issues/206), try this:
```
$ npm install -g lumo-cljs --unsafe-perm
```
_Note: the installed binary will be named `lumo` rather than `lumo-cljs`_

@@ -98,20 +104,12 @@

The Lumo compiler is completely asynchronous whereas the ClojureScript compiler
is sync. This means that you can pass a callback in:
The following example also shows how to use multiple source folders.
```clojure
(require '[lumo.build.api :as api])
(require '[lumo.build.api :as b])
(api/build
(api/inputs "src1" "src2") ;; variadic
{:output-to "out/main.js"}
(fn [result]
(if-let [err (:error result)]
(println (.-stack err))
(do-something-else result))))
(b/build
(b/inputs "src1" "src2") ;; variadic
{:output-to "out/main.js"})
```
The above example also shows how to use multiple source folders. The compiler
returns a map containing an `:error` key if something went wrong.
## Building

@@ -118,0 +116,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc