portkey

Portkey: from REPL to Serverless in one call
qqq 2017-11-01T13:49:42.000432Z

https://github.com/cgrand/enliven <-- this looks like a templating library ...

qqq 2017-11-01T13:50:18.000344Z

I'm looking for something where I can write todo.cljc --- compile it twice, have the .cljs file do reagent + gui, and the .clj file do portkey/lambda/dynamodb

cgrand 2017-11-01T17:07:17.000599Z

Templating was the first step (and the only that gets implemented)

tatut 2017-11-01T17:30:06.000440Z

that doesn’t sound like a particularly good idea, having all your UI views and controls and the database in the same ns and file

tatut 2017-11-01T17:30:16.000742Z

from an app architecture point of view

tatut 2017-11-01T17:30:28.000795Z

perhaps nice for proof of concepts or quick demos though

qqq 2017-11-01T18:16:14.000630Z

it makes more sense to me to divide into "app" rather than "server/client" - a single ns makes it easy to see what each GUI action does to the server, and how server data is rendered int eh GUI