Re: Clojure and Python Flask

2021-01-09 Thread alexandr...@gmail.com
This shouldn't be a problem - you can send all Flask responses as JSON and it will work fine in CLJS. >From Flask, have a look at https://stackoverflow.com/questions/13081532/return-json-response-from-flask-view In Clojurescript, use for instance https://github.com/r0man/cljs-http to read the

Clojure and Python Flask

2021-01-09 Thread Pascal Dutilleul
Does somebody has experience serving ClojureScript (Re-Frame) through Python Flask? Or even better integrating a Clojure app within an existing Flask app ? I need to add a new module to an existing Flask app and I’d like at least the frontend to be ClojureScript. What are the possibilities? K