This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-03-14
Channels
- # aleph (4)
- # announcements (10)
- # babashka (21)
- # beginners (67)
- # biff (7)
- # calva (4)
- # clojure (40)
- # clojure-europe (11)
- # clojure-gamedev (17)
- # clojure-losangeles (3)
- # clojure-madison (1)
- # clojure-nl (1)
- # clojure-norway (78)
- # clojure-uk (3)
- # clojurescript (83)
- # core-typed (18)
- # cursive (1)
- # datalevin (2)
- # datomic (2)
- # gratitude (2)
- # hyperfiddle (56)
- # introduce-yourself (1)
- # london-clojurians (1)
- # matcher-combinators (10)
- # membrane (161)
- # polylith (16)
- # portal (4)
- # reitit (4)
- # releases (3)
- # ring (2)
- # shadow-cljs (9)
- # squint (2)
- # timbre (10)
- # xtdb (14)
- # yamlscript (1)
I created a minimal browser extension to show the shadow-cljs UI as a panel in the browser devtools in case anyone is interested. dunno how long approval is going to take, until then you can just load manually if you want https://github.com/thheller/shadow-cljs-ext
I'm trying to use helia
package from cljs. After npm install helia
I'm simply (:require ["helia" :as h] ...
and I'm getting this error Error: No "exports" main defined in .../node_modules/helia/package.json
The package.json has this export key:
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
}
This export format isnt supported or I'm doing something wrong?Error: No "exports" main defined in
is not a shadow-cljs error, so I'm not sure where you get it from?
easy to verify if you run node -e 'require("helia")'
. I suspect that gives the same error