HackerTrans
トップ新着トレンドコメント過去質問紹介求人

franjo_mindek

no profile record

投稿

Building a full-stack app with Wasp, an agent-friendly web framework

wasp.sh
2 ポイント·投稿者 franjo_mindek·3 か月前·3 コメント

Testing a compiler-driven full-stack web framework

wasp.sh
50 ポイント·投稿者 franjo_mindek·9 か月前·17 コメント

コメント

franjo_mindek
·9 か月前·議論
Do note that we are moving away from the custom DSL part. We will move our configuration to TypeScript which:

1) Frees us from maintaining a DSL (parsing, LS, ..).

2) Uses something familiar to most web developers.

3) Actually expands our configuration features. E.g. with TypeScript we can change the configuration depending on env vars.

Though we want to keep the same level of abstraction as in DSL. Doing that with great DX is what we want to tackle.
franjo_mindek
·9 か月前·議論
We recently did explore Phoenix as an inspiration, and we really liked how docs work in the Elixir ecosystem. We can't really copy everything, but we could copy e.g. automatic docs generation for the API (and JS/TS has solutions for that that even Phoenix uses e.g. https://hexdocs.pm/phoenix/js/index.html). I love the fact that API docs and code comments can't get out of sync that way.

Still parts of the docs have to be handmade, and those are usually not supported directly by the ecosystem, so you have to build your own solutions.