Re: [ClojureScript] Re: What is the up to date summary of cljs macro definition/usage as of 2850?

2015-02-28 Thread Peter West
Hi Thomas, These changes work. However, if in fancy.core I try to :refer to the function I am interested in, the behaviour reverts always using the runtime. That is, if I change the ns in fancy.core to: (ns fancy.core (:require ;;[fancy.fancy :as fancy] [fancy.fancy :refer [fun]]

Fwd: [ClojureScript] ClojureScript/Reagent Job Opportunity

2015-02-28 Thread Marc Fawzi
CC: clojurescript-j...@googlegroups.com -- Forwarded message -- From: Kirill Ishanov Date: Sat, Feb 28, 2015 at 7:30 PM Subject: [ClojureScript] ClojureScript/Reagent Job Opportunity To: clojurescript@googlegroups.com Hi there, I work as the only front-end developer for a start

[ClojureScript] ClojureScript/Reagent Job Opportunity

2015-02-28 Thread Kirill Ishanov
Hi there, I work as the only front-end developer for a start-up (well-funded, stealth-mode, Menlo Park CA) which is building network fabric management software. The whole front-end is a mid-size SPA written in ClojureScript & Reagent which sits on top of REST-like API + WebSockets for telemetr

Re: [ClojureScript] cljs.nodejs namespace is undefined

2015-02-28 Thread David Nolen
Anything that involves piggieback is not a minimal example. Please create one that does not involve it so we can determine that this isn't a piggieback problem. Thanks, David On Sat, Feb 28, 2015 at 1:44 PM, Christopher Bui < christopher@folkrobots.com> wrote: > On Tuesday, February 24, 2015

Re: [ClojureScript] cljs.nodejs namespace is undefined

2015-02-28 Thread Christopher Bui
On Tuesday, February 24, 2015 at 8:54:45 PM UTC-6, David Nolen wrote: > A minimal failing project would be helpful to isolate the piggieback issues. > > > Thanks, > David > > > On Tue, Feb 24, 2015 at 12:26 AM, Christopher Bui > wrote: > (:require [cljs.nodejs :as node]) I quickly threw this

Re: [ClojureScript] Exit code when run tests with cljs.test.

2015-02-28 Thread Andrey Antukh
2015-02-28 15:15 GMT+01:00 Antonin Hildebrand : > Andrey, thank you for packaging it and sharing as a library. > > Just for record, my solution for phantomjs-based test runner: > > > https://github.com/binaryage/cljs-devtools/blob/23a850807c7d8cb4c5030a943cbe15bd7db1ff86/test/runner.cljs#L15 > >

Re: [ClojureScript] Exit code when run tests with cljs.test.

2015-02-28 Thread Antonin Hildebrand
Andrey, thank you for packaging it and sharing as a library. Just for record, my solution for phantomjs-based test runner: https://github.com/binaryage/cljs-devtools/blob/23a850807c7d8cb4c5030a943cbe15bd7db1ff86/test/runner.cljs#L15 https://github.com/binaryage/cljs-devtools/blob/23a850807c7d8cb4

Re: [ClojureScript] Exit code when run tests with cljs.test.

2015-02-28 Thread Andrey Antukh
I have just created cljs-testrunners package for solve it and not repeat the same code in all packages that need a return code properly set. https://github.com/funcool/cljs-testrunners Maybe it can be useful to some one. Cheers. Andrey 2015-02-27 23:37 GMT+01:00 Andrey Antukh : > Ok, will try

[ClojureScript] How to resolve function given it's string name

2015-02-28 Thread Georgi Danov
I am doing basic RPC framework and want to be able to marshal Records. Given that I send over the wire some identifier that allows me to get hold of string representation of fully qualified name of the record, I want to be able to invoke it's constructor. For the moment I am using hand-written m