Search for 'the'
For details on the search query syntax, see the guide.
Total results: 2961, showing 889 - 912
Note: artifacts in italics are non-canonical forks. See the wiki for more details.
A (Clojure) ring adapter for the Cloud Function Java Runtime on Google Cloud Platform
A Clojure library for the Apache Kafka distributed streaming platform.
Clojure API for the Parrot AR.Drone 2.0.
By John Wiseman / jjwiseman@gmail.com / http://twitter.com/lemonodor
Protocol Buffers for the RethinkDB database
A library for interacting with the AWS Cognito User Pools API
A small library to check assertions. Includes original expression and the values in it.
Utility function for the Component library
Simplified access to the Facebook Graph API.
A Ring middleware that adds X-Clacks-Overhead header to the response
A lightweight clojure wrapper around the smack jabber/XMPP library
main library of the Protege Ontology Development Tool
A Clojure(Script) library for on-line accumulation of rank-based statistics using the t-digest
The protocol for custom rendering in gorilla REPL.
An experimental Clojure(ish) to Javascript compiler similar to
[clojurescript](https://github.com/clojure/clojure-contrib/tree/master/clojurescript/). The library also provides several tools to assist you with integrating cljs into your workflow. All this in about 1k lines. Viva Clojure!
# Usage
Use the `cljs.core/to-js` function to turn a list (representing some
code) into javascript, like so:
(to-js '((fn [x] (alert x)) "hello world"))
-> function(x){alert(x);}("hello world");
(to-js '(-> ($ "<div />")
(.css {:backgroundColor "blue" .
:border "dashed white 5px"})
-> (function(){var out = $("<div />");
out.css({backgroundColor:"blue",border:"dashed white 5px"});
return out}())
Neat, huh?
In addition to the compiler, cljs provides several tools to make working with cljs in the context of a web project easier:
1. [cljs.watch](#cljs.watch) provides a mechanism for automatic recompilation on source changes. Used by either `lein cljs-watch` or `(use 'cljs.watch) (start-watch-project "./project.clj")`. Cljs output is declared in your project.clj file, under the :cljs key.
2. [cljs.stitch](#cljs.stitch) takes care of stitching the collection of source files that make up a library into a coherent javascript file.
For more examples, please see the [cljs.test.core](#cljs.test.core) namespace.
The core machinery of Alda
Common utils to ease the development
The java Deltacloud client
A Clojure library similar to garden with focus on simplicity and comfort of the programmer.
A Clojure implementation of the Yelp API
Some wrappers around the Web Audio API
Get and fake the arity of any Clojure function
lein-template for writing cross platform Om-Next components for the browser and for mobile devices using React Native
"Backwards compatible alternative to clojure's
defmulti/defmethod, with about 1/10 the method lookup overhead,
performance roughly comparable to protocols."
Designed to create data workflows with different stations where the processing can be done. The assembly line can easily be extend with new stations, you can run it up to a specific station, pause it, resume it and execute it asynchronously.