├── foobar.cljs └── README.md /foobar.cljs: -------------------------------------------------------------------------------- 1 | (ns foobar) 2 | 3 | (def github-language 4 | "By adding this file, I am trying to trick github into labeling this 5 | repo as 'clojure'.") 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Clojurescript TodoMVC Examples by Library 2 | 3 | - [**Bract** + ClojureScript](https://github.com/bract/demo.todomvc) 4 | - [clojurescript](https://github.com/dfuenzalida/todo-cljs) 5 | - [**Hoplon**](https://github.com/hoplon/demos/tree/master/todoFRP) 6 | - [**Om**](https://github.com/swannodette/todomvc/tree/gh-pages/labs/architecture-examples/om) 7 | - [Om || Reagent + **Ampere**](https://github.com/condense/ampere/tree/master/examples/todomvc) 8 | - [**Om Next**](https://github.com/swannodette/om-next-demo) 9 | - [Om Next + **Untangled**](https://github.com/untangled-web/untangled-todomvc) 10 | - [Om Next + Datascript + Datomic](https://github.com/madvas/todomvc-omnext-datomic-datascript) 11 | - [**Precept**](https://github.com/CoNarrative/precept/tree/master/examples/todomvc) 12 | - [**Reagent**](https://github.com/reagent-project/reagent/tree/master/examples/todomvc) 13 | - [Reagent + **Carry**](https://github.com/metametadata/carry/tree/master/examples/todomvc) 14 | - [_Reagent + Datascript + **Posh**_](https://github.com/mpdairy/posh-todo) 15 | - [_Reagent + Elm Architecture_ (Re-alm)](https://github.com/vbedegi/re-alm/tree/master/examples/todomvc) 16 | - [Reagent + **Keechma**](https://github.com/keechma/keechma-todomvc) 17 | - [Reagent + **Re-frame**](https://github.com/Day8/re-frame/tree/master/examples/todomvc) 18 | - [Reagent + **Re-frankenstein**](https://github.com/chpill/re-frankenstein/tree/master/examples/todomvc) 19 | - [**Rum** + **Datascript**](https://github.com/tonsky/datascript-todo) 20 | - [**Quiescent**](https://github.com/levand/todomvc/tree/gh-pages/architecture-examples/quiescent) 21 | - [Vdom](https://github.com/sj4/todomvc) 22 | 23 | **Bold** = by author of library 24 | 25 | *Italics* = Not quite a TodoMVC example, but still a todo example 26 | 27 | # Contributing 28 | 29 | Please file an issue if: 30 | 31 | * An example should be removed. 32 | * An example should be replaced with a different example. 33 | 34 | Please send a pull request if: 35 | 36 | * You'd like to add an example of a new library. 37 | * You'd like to add an example of an existing library showing something new (such as the use of datascript) 38 | --------------------------------------------------------------------------------