ClojureScript is a dialect of Clojure that compiles to JavaScript.

learn more… | top users | synonyms

1
vote
0answers
11 views

ClojureScript map lookup slow

I have a simple map: (def my-map {[1 2 3] 1 [1 2 4] 5 [3 4 2] 3 [4 5 3] 3 [5 2 5] 6 [9 2 1] 5 [8 3 1] 6}) that I use for performing lookups. This performs rather poorly, ...
1
vote
3answers
36 views

Extending the constructor of a deftype in clojurescript

When creating a type via deftype in clojurescript: (deftype SomeObject [a b c] Object (update [_] (set! (.-a _) 5) (set! (.-b _) 6) )) Is there a possibility to ...
3
votes
2answers
85 views

how would a loop with a nested return be implemented in clojure?

I'm playing around with a crafty tutorial here: http://buildnewgames.com/introduction-to-crafty/ and am wondering how this particular function be implemented in clojurescript/clojure var ...
7
votes
2answers
130 views

Improve performance of a ClojureScript program

I have a ClojureScript program that mainly performs math calculations on collections. It was developed in idiomatic, host-independent Clojure, so it's easy to benchmark it. To my surprise (and ...
1
vote
0answers
77 views

Is the architectural model in the Clojure Pedestal framework an operational transform similar to Google Wave?

Reading through the Pedestal presentation (and reading the sample source code) - I see a model based on transforms and operations. Is it true that Pedestal uses an operational transform similar to ...
2
votes
0answers
28 views

how would the (<map> <key>) calling convention be implemented for js-objects?

I would like to be able to use (js-obj) like a hash-map so that (def a (js* "{'a': 1, 'b':2}")) (a :a) ;=> 1 I tried doing this: (extend-type object IFn (-invoke ([o k] (aget o ...
2
votes
2answers
67 views

How to use defmacro instead of eval?

I have come up with the below function, which works as intended but it uses eval which is horrible, and does not exist in ClojureScript where i intend to use it. (defn path [d p] (eval (concat ...
2
votes
2answers
151 views

Implementing Clojure on top of V8 engine

I am just wondering if it would make sense to implement Clojure on top of Googles V8 Javascript engine. I never use Java interoperability. I also am learning ClojureScript. So I could see an advantage ...
1
vote
1answer
33 views

IE9 does not accept unicode string in Javascript

I tried to run my webapp with IE 9 (it already runs well in Firefox and Chrome) and I continuously get The error Script1014: Invalid Character The debugger yields one line of code that contains ...
2
votes
1answer
30 views

How is the defprotocol macro defined in clojurescript?

I'm trying to figure out where is the source code the defprotocol macro is defined. in the cljs.core source: https://github.com/clojure/clojurescript/blob/master/src/cljs/cljs/core.cljs The ...
1
vote
1answer
100 views

Writing in Meteor using ClojureScript

Is there currently a solution for integrating ClojureScript with Meteor? I want to build a Meteor application and between the flavors of JavaScript (JavaScript, CoffeeScript, TypeScript, LiveScript ...
1
vote
1answer
28 views

Locating unmatched delimiters in Clojurescript

occasionally I find myself in a situation where I mismatch these friends here: {}()[]. Using leininingen and cljsbuild I have a hard time tracking down the error source. Usually it boils down to ...
0
votes
1answer
36 views

WebSQL in ClojureScript?

I'm having some trouble formatting a ClojureScript wrapper for websql. The main problem is that JavaScript uses tx and err arguments for websql that work without being defined. When the ...
1
vote
2answers
42 views

Using Closure Templates with Clojurescript

Is it possible to use Google Closure Templates with Clojurescript? I have looked around but haven't found any informaiton regarding this.
0
votes
1answer
31 views

Adding a Clojurescript protocol to a Google Closure element

How can i extend a Google Closure element using Clojurescript protocols. I tried this but it doesn't seem to work: (ns my-stuff.main (:require [goog.dom :as dom)) (defprotocol ds ...
2
votes
1answer
69 views

How to create Button Elements in ClojureScript?

I'm trying to create new elements in ClojureScript and it doesn't appear to be working. I'll start up by showing an example that I found here. (let [dom6238 (.createElement js/document "a")] ...
1
vote
2answers
58 views

Why can't I call seq functions in a sequence generated by js->clj?

Although I can get turn a simple js object into a clojure object with something like; -> "{a: 2, b: 3}" js* js->clj) I'm apparently not being able to do so with a particular object, ...
5
votes
2answers
161 views

Can I compile ClojureScript without the Google Closure lib?

I'm a huge fan of Clojure and ClojureScript, and I would generally prefer to use ClojureScript over other alternatives for my projects, but one thing that sometimes holds me back from using it, ...
3
votes
1answer
91 views

How does one start programming with Clojure in Windows?

I know it is possible to use CounterClockwise inside Eclipse, but I have been trying to get Leiningen to work so that I could use ClojureScript. I downloaded leiningen using git clone. It then says ...
0
votes
1answer
24 views

how to output individual files to a specified directory for cljsbuild

Using cljsbuild, I can compile all my .cljs files to one file. However, I wish to be able to pick a directory for output and have each .cljs file compile into its own .js file. How can this be ...
4
votes
2answers
150 views

How do I approach a javascript/clojurescript wrapper library for an api?

I'm primarily a Python developer, but I've been trying to learn Clojure/ClojureScript lately. As practice, I want to write a ClojureScript wrapper for Reddit's API. Most of my confusion is due to ...
0
votes
1answer
37 views

check if attribute with a specific value is present in zip/node using zip-filter library or another one

am new at clojure and would like to know how to check if an attribute with a specific value is present in a zip/node using the zip-filter library. Let us say I have the following xml content in a ...
1
vote
1answer
69 views

compiling clojurescript and angularjs in advanced mode

I am having problems with getting a simple clojurescript program to compile right in advanced mode. For example, here is a simple program (ns cljs-basics.core) (.write js/document "hello, cljs") ...
6
votes
1answer
232 views

Client side web frameworks for Clojure

I am new to Clojure development but am interested in it. Right now I am looking to use it for web development. I ran across a bunch of different projects that could be used for a client side MVC. I ...
3
votes
0answers
100 views

How can I dynamically develop interactively against a HTML page in LightTable?

I have tried the LightTable and I can run Clojure commands just fine, but I can't figure out how to show a webpage within the IDE and execute ClojureScript commands against the DOM of the webpage ...
1
vote
1answer
20 views

Arity of a function

Is there a way in clojurescript to check what the available arity implementations of a given cljs function are?
2
votes
3answers
87 views

Different behavior of get in Clojure and in ClojureScript

Here is the difference: clj> (get 42 :anything) ; => nil cljs> (get 42 :anything) ; => Error: No protocol method ILookup.-lookup defined for type number: 42 I don't know if this is a ...
3
votes
1answer
48 views

Clojure: Qualified keyword inside a macro that resolves in caller's namespace?

Is it possible to have a qualified keyword inside a macro resolve in the caller's namespace? For example: (ns a) (defmacro m [] `(do ::k)) And in another namespace: (ns b) (use 'a) (m) In this ...
1
vote
1answer
79 views

clojurescript: touch events and Domina

I'm having trouble getting the 'touch' or 'changedTouches' list out of the touchstart event in Domina. Here's my :require stuff: (ns myproj (:require-macros [hiccups.core :as h]) (:require ...
1
vote
0answers
65 views

Clojure/ClojureScript double function undeclared

I'm writing a function that's part of a Clojure/ClojureScript crossover, and I'd used the double function. When I compile this with cljsbuild, it complains that double is an undeclared var. WARNING: ...
11
votes
1answer
365 views

Why are clojure protocol methods often wrapped by functions?

Often when I see clojure protocols in a library, the protocol methods will be wrapped in a function, often with little added functionality. e.g.: (defprotocol Pfoo (foo-method [this])) (deftype ...
2
votes
1answer
66 views

Using a Clojure/ClojureScript crossover library

I'm working on a library that works with both Clojure and ClojureScript. Here's the project.clj for the library: (defproject libtest "0.1.0-SNAPSHOT" :description "FIXME: write description" :url ...
4
votes
1answer
138 views

Creating & using libraries in both Clojure and ClojureScript

I've just written some ClojureScript code, only to find out that I couldn't access one of the libraries listed in my project.clj's dependencies. Is this correct, i.e. that you can't use Clojure ...
0
votes
0answers
37 views

Javascript refactoring framework [closed]

I am currently creating a javascript refactoring framework in clojurescript. Because Javascript is a dynamic language and has no static type info I've used an points-to analysis to infer type info ...
1
vote
1answer
65 views

pretty printing in cljs

I am trying to pretty print a JSON from clojurescript, on the browser's console. I found the following link - JSON pretty print using JavaScript The above link provides the following js - ...
1
vote
1answer
77 views

Accessing “this” in Clojurescript

Is there a way to access the "this" object in clojurescript? I am having issues with event propagation when I wrap an icon with an anchor and try to attach a handlder to the anchor. Without access to ...
0
votes
1answer
63 views

In jQuery, how do i pass an event to a parent anchor if needed?

I am in clojurescript using jQuery but the answer should be the same for cljs and js I think. I have a helper function which creates creates an anchor element then puts an icon element inside of it. ...
2
votes
2answers
85 views

google-closure compiler advanced optimization is munging navigator.battery.level causing TypeError

I'm using ClojureScript to retrieve battery levels with: navigator.battery.level Which works fine when using the simple and whitespace optimization. But when using advanced optimization mode the ...
1
vote
0answers
86 views

Integration clojurescript into a javascript framework

I would like to use Clojurescript to write a component within a Javascript framework but I can't work out how to create the constructor and call global variables within the object. The framework ...
2
votes
2answers
187 views

How can I pass edn to clojurescript from clojure without making ajax request (i.e. via hiccup-generated page)

I'm developing RIA with clojure and clojurescript. Backend uses hiccup to generate a resulting html, like (html5 [:head (include-js "/js/my-cljs-generated.js")] [:body ... ]) How can I pass ...
0
votes
0answers
240 views

ClojureScript & Node.js Workflow [closed]

I have been working on some projects in Clojure for the last couple of months. Now I started a new project that will require a webserver. So I figured that this would be a good opportunity to learn ...
1
vote
1answer
88 views

Compiling external JS files with Cljsbuild in ClojureScript

I'm trying to compile some JS libraries that we have with lein-cljsbuild to integrate them in our ClojureScript code base. First I added some goog.provide in top of each file, and the files are ...
2
votes
1answer
47 views

How to use different JS output for different pages?

Let's say I have two pages which share much code, many libraries etc., but have some differences. For a concrete example, I include jQuery and in each page have different function in "document ready" ...
2
votes
1answer
92 views

How to define a clojurescript function in the javascript global namespace at compile time?

I'm looking for a way to define Clojurescript functions in the Javascript global namespace at compile time. What I mean by compile-time is that I want the Clojurescript compiler to output this: ...
3
votes
3answers
91 views

Is there an if-clojurescript macro?

Is there a macro for clojure and clojurescript which would allow you to insert different expressions depending on whether the file is being compiled in clojure or clojurescript? (if-clojurescript ...
2
votes
1answer
146 views
2
votes
2answers
81 views

Manipulating java objects from clojure

am new at clojure and would like to interact with java objects using clojure. If I have well understood, one can reach this interaction using defprotocol. What I concretely try to do is the ...
0
votes
1answer
26 views

Finding symbols and namespaces in Clojurescript

Is there an equivalent way in Clojurescript to get ns-map, ns-public etc and find what namespaces are available ?
2
votes
1answer
77 views

CouchDB Clojure client API available?

Does anyone know of a good CouchDB client API for Clojure. I'm currently using Clutch although since it's relatively new there doesn't seem too be much documentation.
0
votes
1answer
26 views

Fn does not update the DOM, except when called from a browser-attached REPL

I'm porting a TODO app from vanilla JavaScript into ClojureScript. So far so good, except for this innocent looking function: ;; loop the @todo-list, write each todo at the end of the <body> ...

1 2 3 4