There are externs files for nodejs around. Eg: https://github.com/dcodeIO/node.js-closure-compiler-externs
You should be able to these as externs in the cljsbuild section of your project.clj. However - cljsbuild has a capability of picking up externs automatically from a depenency if they are packaged in the correct folders. Has anyone packaged these up into a jar on clojars? On Fri, May 2, 2014 at 12:36 AM, Andrew Chambers <[email protected]>wrote: > How does one call nodejs libraries from clojurescript? > > Trying any variation of (.readFileSync (js/require "fs") "filename") fails > because of the clojurescript compiler name mangling of the readFileSync > function call. > > I hacked a solution by using js/eval but that doesn't seem good. > > -- > Note that posts from new members are moderated - please be patient with > your first post. > --- > You received this message because you are subscribed to the Google Groups > "ClojureScript" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/clojurescript. > -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
