Search for 'the'
For details on the search query syntax, see the guide.
Total results: 2951, showing 889 - 912
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.
A Clojure implementation of the Yelp API
Get and fake the arity of any Clojure function
Idiomatic Clojure wrapper for the Java Sound API.
A leiningen plugin that attempts to download the source code for all of a project's (transitive) dependencies
Some wrappers around the Web Audio API
A library for handling TGraphs. Includes the functional query
API FunQL and the transformation APIs FunML and FunTL.
Everything's totally pre-pre-pre-alpha and subject to frequent, incompatible
changes. Ok, you've been warned, but have fun anyway. :-)
ATTENTION: This is the final release. This library will be continued under
the new name FunnyQT (funnyqt).
Common utils to ease the development
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.
Simple text tokenizing filter using the Lucene tokenizer
A library for interacting with the DocuSign eSignature API
JNI Bindings for ATLAS BLAS and LAPACK library. Neanderthal needs
to find both JNI and the native jar (or nar) for the specific operating system you use.
The protocol for custom rendering in gorilla REPL.
lein-template for writing cross platform Om-Next components for the browser and for mobile devices using React Native
A library and microservice for providing UK organisational data services (ODS), providing
detailed information about organisations within health and social care within the UK.
A (Clojure) ring adapter for the Cloud Function Java Runtime on Google Cloud Platform
Boot task to do operations on files within the fileset (move, copy, etc).
cats.match provides pattern matching for the monads in the clojure cats library.
Clojure bindings to the Hubspot API.
Ring middleware that augments :params according to the specified Accept request-header field.
Reify, manipulate and replay the lexical environment in Clojure
A CloudWatch reporter for the metrics-clojure library
A handful of Clojure utilities for easing project integration with the OpenTracing API