https://github.com/brunobonacci/machina
A Clojure library to manage application state as a state machine.
https://github.com/brunobonacci/machina
Last synced: about 1 year ago
JSON representation
A Clojure library to manage application state as a state machine.
- Host: GitHub
- URL: https://github.com/brunobonacci/machina
- Owner: BrunoBonacci
- License: apache-2.0
- Created: 2018-12-11T19:01:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-01T11:51:17.000Z (over 6 years ago)
- Last Synced: 2025-03-15T15:29:33.452Z (over 1 year ago)
- Language: Clojure
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# machina
[](https://clojars.org/com.brunobonacci/machina)   [](https://jarkeeper.com/BrunoBonacci/machina)
A Clojure library to manage application state as a state machine.
**WORK IN PROGRESS**
## Usage
In order to use the library add the dependency to your `project.clj`
``` clojure
;; Leiningen project
[com.brunobonacci/machina "0.1.0-SNAPSHOT"]
;; deps.edn format
{:deps { com.brunobonacci/machina {:mvn/version "0.1.0-SNAPSHOT"} }}
```
Current version: [](https://clojars.org/com.brunobonacci/machina)
Then require the namespace:
``` clojure
(ns foo.bar
(:require [com.brunobonacci.machina :as x]))
```
coming soon...
## License
Copyright © 2015 - 2018 Bruno Bonacci - Distributed under the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0)