Inferno: A fast, React-like JavaScript library for building UIs
41–50 of 128 posts
Re: Inferno: A fast, React-like JavaScript library for building UIs
#42Still feel like we're talking past each other a bit here. Some portion of your UI logic is going to have to translate that data into the corresponding UI output, whether it be HTML elements or Android Views or iOS NSWhateverThingsTheyUse. With a virtual DOM, that's a two step process: your component is responsible for doing the "data -> desired UI structure" translation, and then the VDOM layer is responsible for tra…
See: https://news.ycombinator.com/item?id=11837249
https://www.reddit.com/r/climateskeptics/comments/4kc1m8/por...
Re: Inferno: A fast, React-like JavaScript library for building UIs
#43Shameless plug, I know, but I bet Inferno doesn't come close to my latest framework when it comes to the notorious task of writing a TODO app: https://github.com/ErikWittern/TODOit
I'm asking this as the author of domvm [1] and a 60 LOC todo implementation [2] that also exposes a usable API.
Re: Inferno: A fast, React-like JavaScript library for building UIs
#44Shameless plug, I know, but I bet Inferno doesn't come close to my latest framework when it comes to the notorious task of writing a TODO app: https://github.com/ErikWittern/TODOit
i saw this come up yesterday on reddit and asked myself if this was joke. 70 lines of code is a lot of code? i don't get it :/ I'm asking this as the author of domvm [1] and a 60 LOC todo implementation [2] that also exposes a usable API. [1] https://github.com/leeoniya/domvm [2] https://leeoniya.github.io/domvm/demos/todo-alt.html
Re: Inferno: A fast, React-like JavaScript library for building UIs
#45Still feel like we're talking past each other a bit here. Some portion of your UI logic is going to have to translate that data into the corresponding UI output, whether it be HTML elements or Android Views or iOS NSWhateverThingsTheyUse. With a virtual DOM, that's a two step process: your component is responsible for doing the "data -> desired UI structure" translation, and then the VDOM layer is responsible for tra…
Interesting. If you go to this user's comments, their other comments are from reddit as well. Possible way to farm karma by picking the top voted comment on reddit and reposting it onto HN? See: https://news.ycombinator.com/item?id=11837249 https://www.reddit.com/r/climateskeptics/comments/4kc1m8/por...
Strange.
Re: Inferno: A fast, React-like JavaScript library for building UIs
#46Re: Inferno: A fast, React-like JavaScript library for building UIs
#47Re: Inferno: A fast, React-like JavaScript library for building UIs
#48Re: Inferno: A fast, React-like JavaScript library for building UIs
#49What does isomorphic library mean in the context of Javascript ecosystem ?
Re: Inferno: A fast, React-like JavaScript library for building UIs
#50What is this solving?