Re: Routing for a non-web-app

2021-04-19 Thread Orestis Markou
As far as I know, reitit could probably do what you want. It works on ClojureScript too. > On 19 Apr 2021, at 01.58, Blake Watson wrote: > > Howdy, > > Writing a desktop app and thinking describing routes is the way to go, as far > as setting up the flow through the program. There are quite a

Re: Routing for a non-web-app

2021-04-19 Thread Chris Nuernberger
For 'routing' specifically, if you want a more formal system we used state machines in the past and recently Clojure has a really nice additional possibility there - https://github.com/lucywang000/clj-statecharts. For general UI programming if you are using javafx then I really like cljfx - https:

Re: Routing for a non-web-app

2021-04-19 Thread Blake Watson
> > For 'routing' specifically, if you want a more formal system we used state > machines in the past and recently Clojure has a really nice additional > possibility there - https://github.com/lucywang000/clj-statecharts. I really like the idea of the app being as stateless as possible, to where