Search for '➛ acc6.top purchasing a Reddit account'
For details on the search query syntax, see the guide.
Total results: 7788, showing 2497 - 2520
Note: artifacts in italics are non-canonical forks. See the wiki for more details.
A component to run flyway migrations on system start.
A library for interacting with the DocuSign eSignature API
A Clojure client for the PuppetDB REST API
JSON Tree Library which is a part of jsonTreeViewer
A library for creating CloudFormation templates.
Generate a BUGS Bioscience landing page
A CloudWatch reporter for the metrics-clojure library
A Clojure library encapsulating the REST API of the PEAppTransaction Logging Framework.
A pure dialect of Clojure with content-addressed modules
A distributed rate-limiting service on top of Redis.
Clojure functions that are general-purpose enough to be useful elsewhere but haven't found a home in a nice library yet.
qu is a data platform created by the CFPB to serve their public data sets.
A reusable Storm bolt for making arbitrary HTTP requests.
A Clojure 3D Game Engine Wrapper, Powered By jMonkeyEngine
A clj-http middleware to prevent SSRF attacks
A Jig extension that provides support for core.async
A combined Clojure/ClojureScript project with basic ring support and a weasel based browser REPL
a library for convering numbers into short alphanumeric IDs
A handful of Clojure utilities for easing project integration with the OpenTracing API
A composable library for co-located CSS on Om/Untangled UI components
A simple leiningen plugin for managing sql migrations
A library for calculating part/routing end dates and CCRs
Instant formatter to render time that has passed or is left since/to a certain event
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.