Hi Guys , I need to create a small enough project ...
# kobweb
a
Hi Guys , I need to create a small enough project for local hackathon using compose-web , It will make around 5-10 API calls and have around 4-5 screens , should I use wasm target or kobweb for this ? What exactly are the pros and cons of either frameworks?
c
Kobweb is DOM-based, so if you know HTML and CSS, you will feel most at home. If you're stuck on something, you can use regular HTML and CSS solutions, simply adapting the syntax. WASM is still very experimental (e.g. you need to enable it in the browser settings) so it's complicated to deploy to users. I haven't used it myself, but if I understand correctly, it uses similar components to Android.
👍 1
d
If you'd like to see some examples of Kobweb making API calls, try calling
kobweb create examples/todo
and
kobweb create examples/chat
🙌 1