English 中文(简体)
Any clojurescript tutorials? [closed]
原标题:

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 8 years ago.

Are there already some good tutorial on ClojureScript? I would like to try it out, but don t know where to start exactly.

最佳回答
问题回答

Take a look at the newly released ClojureScript One project. It is an example of a webapp written in ClojureScript and Clojure. Great piece of information describing the project can be found at their wiki pages.

Here s a screencast showing ClojureScript REPL in action.

I ve put up a first steps blog post/tutorial aimed at getting GUI elements working here: http://boss-level.com/?p=102 . It also gives a brief intro to how to structure your project directory to interact with Clojurescript, as well as how to delve about within the Closure Library GUI elements.

Not exactly tutorials but I found both Justin Grants Convex hull demo and the SVG graphing library Apogee helpful.

You can find a gentle introduction to ClojureScript at https://github.com/magomimmo/modern-cljs

This is an older question, but I am gradually building up a library of sample code that I hope is helpful:

I am starting to make some demo videos of Clojurescript. I am a terrible presenter but I hope it helps:

http://www.youtube.com/watch?v=lX6isnBn6mY

Sierra and VanderHart s ClojureScript: Up and Running is a good book. One might feel that there s not enough content to justify the price, but sometimes good content is worth paying for, even when there s not a lot of it, if it s what you need.





相关问题
How to improve Clojures error messages

I ve been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java errors, like null ...

clojure rmi classpath problem

I am trying to use clojure to implement a "plugin" for some vendor supplied software. Here is a little background on the vendor supplied software. It expects me to implement a particular interface ...

Help translating this Java codeblock to Clojure?

I m getting my feet wet with Clojure, and trying to get used to functional programming. I ve been translating various imperative functions from other languages into their Clojure equivalents -- and ...

Is functional Clojure or imperative Groovy more readable?

OK, no cheating now. No, really, take a minute or two and try this out. What does "positions" do? Edit: simplified according to cgrand s suggestion. (defn redux [[current next] flag] [(if flag ...

taking java method names as function arg in clojure

All, I want to create a function that takes a symbol representing a java method and applies it to some object: (user=> (defn f [m] (. "foo" (m))) When I execute this, I get a result much ...

how to efficiently apply a medium-weight function in parallel

I m looking to map a modestly-expensive function onto a large lazy seq in parallel. pmap is great but i m loosing to much to context switching. I think I need to increase the size of the chunk of work ...

热门标签