Hi Andrew, Try changing :optimizations to :simple to prevent the closure compiler from mangling the names.
I've written a couple of blog posts about this: http://blog.lauripesonen.com/why-isnt-my-nodecljs-app-working-in-advanced-mode/ http://blog.lauripesonen.com/get-your-advanced-mode-on-with-the-closurecompiler-externs-npm-module/ Lauri On 2 May 2014 00:36, 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. > -- ! Lauri -- 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.
