https://github.com/mhuebert/re-view
Tools for building reactive user interfaces in ClojureScript.
https://github.com/mhuebert/re-view
clojurescript dataflow react
Last synced: 17 days ago
JSON representation
Tools for building reactive user interfaces in ClojureScript.
- Host: GitHub
- URL: https://github.com/mhuebert/re-view
- Owner: mhuebert
- License: mit
- Created: 2016-02-29T12:00:05.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T20:26:56.000Z (over 2 years ago)
- Last Synced: 2025-04-14T08:09:27.604Z (17 days ago)
- Topics: clojurescript, dataflow, react
- Language: Clojure
- Homepage: https://re-view-web.firebaseapp.com
- Size: 2.35 MB
- Stars: 42
- Watchers: 4
- Forks: 3
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Re-View

Re-View is a library for building React apps in ClojureScript. It's a beginner-friendly tool that is also suitable for demanding, production-grade apps.
Website: [https://re-view.io](https://re-view.io)
## Objectives
- Readable code
- Precise and transparent reactivity/dataflow
- Convenient access to React lifecycle methods - do not try to hide the React component model
- A smooth 'upgrade continuum': simple components are extremely simple to create, while 'advanced' components are created by progressively adding information to simple components (no need to switch paradigms along the way)## Motivation
Existing tools in the ClojureScript ecosystem, although excellent for their respective use cases, were found to be either too magical or too verbose for my particular needs. Re-View was originally "programmed in anger" (but with lotsa love) during the development of a [reactive-dataflow coding environment](http://px16.matt.is/).
## Getting started
Start by reading the [website](https://re-view.io) or the [quickstart](https://github.com/braintripping/re-view/tree/master/re_view#quickstart).
For the impatient, build an example app using our lein template:
```clj
lein new re-view my-example-app;
cd my-example-app;
lein figwheel;
;; open browser window to http://localhost:5300
```## What's in this repo?
core + utilities
- [/re_view](https://github.com/braintripping/re-view/tree/master/re_view), the main thing you will use -- a ClojureScript view library built on top of React
reusable components
- [/re_view_material](https://github.com/braintripping/re-view/tree/master/material), implementations of Google's Material Design components
- [/re_view_prosemirror](https://github.com/braintripping/re-view/tree/master/prosemirror), wrapper around [ProseMirror](http://prosemirror.net/)docs & examples
- [/website](https://github.com/braintripping/re-view/tree/master/website), the source code for https://re-view.io
- [/docs](https://github.com/braintripping/re-view/tree/master/docs), the docs that re-view.io reads from