You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
marko can easily do streaming ssr and marko 6 adds resumablity
marko syntax is comically concise:
let/txt="Hello"input:=txtp -- the text is ${txt}
vs Svelte 5:
<script>lettxt=$state("Hello")</script><inputbind:value={txt}/><p>the text is {txt}</p>
or React:
import{useState}from"react"exportdefaultfunctionApp(){const[txt,setTxt]=useState("Hello")return(<><inputvalue={txt}onChange={e=>setTxt(e.target.value)}/><p>the text is {txt}</p></>)}
the marko 6 alpha releases this month
Marko Run doesn't let you define routes like @[username] in SvelteKit it has to be just $username so we need to find a way around that
marko can easily do streaming ssr and marko 6 adds resumablity
marko syntax is comically concise:
vs Svelte 5:
or React:
the marko 6 alpha releases this month
Marko Run doesn't let you define routes like
@[username]
in SvelteKit it has to be just$username
so we need to find a way around thathttps://markojs.com/playground/v6/
The text was updated successfully, but these errors were encountered: