Replies: 6 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Astro creates component from custom .astro format which is equivalent to .tsx and can input any .jsx or any framework as child component https://astro.build/ |
Beta Was this translation helpful? Give feedback.
-
deno fresh does exactly that returninh html from call to a page route which contains jsx |
Beta Was this translation helpful? Give feedback.
-
frameworks like nextjs also return html, but to be clarified if it is not bloated woth client side navigation and vdom, of if those can be disabled |
Beta Was this translation helpful? Give feedback.
-
Note about opinion on Astro I think what Astro has, which is to me the most interesting, is to allow functional programming with html components, e.g. manipulate html with "pure" javascript on the server. When I say "pure" javascript, I mean that all tricks someone learns in js, nodejs are applicable (functions abstractions => components with parameters) and the programing flow can scale naturally |
Beta Was this translation helpful? Give feedback.
-
How to create a ready html component from jsx ? (this is not about runtime hydrating an html tag with js)
Beta Was this translation helpful? Give feedback.
All reactions