Search for 'the'
For details on the search query syntax, see the guide.
Total results: 2929, showing 841 - 864
Note: artifacts in italics are non-canonical forks. See the wiki for more details.
General purpose utilities for Clojure licensed under the GPL by Mike Anderson
SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.
The PostgreSQL Driver JDBC4
Sample Data for the open source NASA Common Metadata Repository (CMR)
Overarch provides a data model for the holistic description of a software system, opening multiple use cases on the model data.
A small library to check assertions. Includes original expression and the values in it.
The provisdom boot-new template
Simplified access to the Facebook Graph API.
A fast and complete ByteBuffer implementation using either ArrayBuffers in the browser or Buffers under node.js.
Utility function for the Component library
The java Deltacloud client
The core machinery of Alda
Iptables crate from the DomainDrivenArchitecture pallet project
This is the mysql implementation of the drift-db protocol.
A lightweight clojure wrapper around the smack jabber/XMPP library
This library contains the data specifications (clojure.spec) for offcourse projects
main library of the Protege Ontology Development Tool
Protocol Buffers for the RethinkDB database
Idiomatic Clojure wrapper for the Java Sound API.
The first minor release of webnf handler, a collection
of code to aid web handler development. There is:
- Browser middlewares
- to allow http method and header overrides from a browser form or uri
- for extremely pretty exception printing, with source locations
- user agent parsing
- Timer helpers
- Common dependencies
- Dataflow / Validation
This is the h2 implementation of the drift-db protocol.
A leiningen plugin that attempts to download the source code for all of a project's (transitive) dependencies
Common utils to ease the development
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.