Live data from Hacker News

Ripple – A TypeScript UI framework that takes the best of React, Solid, Svelte

github.com

1–10 of 74 posts

Re: Ripple – A TypeScript UI framework that takes the best of React, Solid, Svelte

#7
Looks quite nice, I'm not 100% sold on having flow exposed (for, if) and plain text always escaped (wrapped in {''}), I suppose at least it encourages not having magic strings everywhere. There's some other details that look interesting like the @use feature. I like the reactive prefix concept but having had so many reactive headaches I'm interested in how this plays out. Overall it's a wait and see project for me with no clear must haves, at least right now.

Re: Ripple – A TypeScript UI framework that takes the best of React, Solid, Svelte

#10
Since this is marked as a departure from HTML and has it's own syntax, I think this is a good point to improve upon JSX.

- Remove curly braces from props and children

     canBeInParanthesis()) />
    userName
    "Text contents"

- Add punning (like how { age: age } becomes { age } in JS)

    const age = 40;
    /
      // explicit boolean attributes
Post reply on HN