Earlier quoted context omitted.
> As for Edge it is already in development, and to be honest it doesn't matter with its insignificant market share. Er, really? I use Edge. It's just what's standard on the Windows machine I bought. I can't imagine that it has insignificant market share...
Check how many BUILD 2018 videos presentations were done in Chrome and how many were using Edge. As for actual market share, http://gs.statcounter.com/browser-market-share
Evergreen: a React UI Framework built by Segment
231–240 of 309 posts
Re: Evergreen: a React UI Framework built by Segment
#232Earlier quoted context omitted.
I've been using Blueprint and pairing it with Basscss for some responsive assistance and it's been successful (and a lot of fun).
Can you elaborate on how this works? Thanks!
I use Basscss' grid and flex helper classes to define how my I can create a 3-column responsive layout with something like:
There's also a couple of other helpers like `max-width-*` which ensure responsiveness as the screen grows larger. Things like adding the `Classes.FILL` (which causes a button/control to go full width of its container) are useful for making things seem more like mobile (where buttons often are full width of the device, minus padding)All in all, while it's a slight bummer than Blueprint isn't just responsive out of the box, I haven't really found that to be a deterrent to getting things done.
Re: Evergreen: a React UI Framework built by Segment
#233Earlier quoted context omitted.
Problem is, web components don't provide the same thing as frameworks like React. And the performance question still hasn't been solved. React was released in 2013, has only had minor breaking chanhes since then, and doesn't show any signs of disappearing anytime soon.
Lit-html is faster than react + vdom - and has 6kb instead of 60kb. And back in the time everyone used jquery, the arguments are always the same.
Re: Evergreen: a React UI Framework built by Segment
#234Earlier quoted context omitted.
This doesn't happen for me, it is pretty quick. I am in India and on a 40 Mbps connection.
My connection is fast enough too. I'm on Firefox though, so maybe that's the "issue", if their framework is designed to work mostly on Chrome and not the other browsers.
Just tried it in Firefox 62 on Ubuntu. Works good there too.
Re: Evergreen: a React UI Framework built by Segment
#235I wish people would stop making UI frameworks in , and instead make it web components based with vanilla JS/very light lib dependency, so that everyone can enjoy the benefit. React is becoming a bubble of its own, and it's exclusive.
I agree very much. However there are two points that make it difficult : - Virtual Dom. It simplifies a lot the creation of components. And components that are made for a VDOM are very different from those made without VDOM in mind. - Data Binding. There are multiple ways to bind data to your components, once again this might influence the way components are made. Those are not standard, some people like VDOM other n…
Re: Evergreen: a React UI Framework built by Segment
#236Earlier quoted context omitted.
Lit-html is faster than react + vdom - and has 6kb instead of 60kb. And back in the time everyone used jquery, the arguments are always the same.
Where's the benchmark showing this?
New version of repeat is interesting:
Re: Evergreen: a React UI Framework built by Segment
#237Great, another UI framework that will not work with Vue, Marko, Angular, LitElement or basicly anything else than react. When will the trend stop :/ Can't we embrace web components already and have those UI frameworks work in all popular solutions out there? Every time something new comes out existing solutions are being rewritten from scratch.
I suppose since it's open source, then there is nothing stopping anyone from porting it to Vue?
Re: Evergreen: a React UI Framework built by Segment
#238Earlier quoted context omitted.
I think you confused multiple things together - why do you bring webcomponents.org the website into discussion, it has no relation here. Web components are a low-level primitive - they are clunky to use directly. Polymer and LitElement - are libraries - you can author WC's with them. And yes they are different (I used both), but you don't really have to migrate from one to another. Web components are not divided - Li…
Thanks for links you provided. Don't know what you mean by saying it has no relation; I've been using that site for searching components while developing my PWA based on Polymer. I can install components with yarn or npm just fine, using instructions and examples from there.
Re: Evergreen: a React UI Framework built by Segment
#239Earlier quoted context omitted.
Where's the benchmark showing this?
https://stefankrause.net/js-frameworks-benchmark8/table.html - thats old lit release there vs react 16 (react pre 16 would be slower and everyone agrees its generally fast already), on slack channel I believe I saw newer release benchmarks that are better (it also depends at which specific test you look at). New version of repeat is interesting: https://slack-files.com/T03PF4L4C-FCY51FZAB-c2fcf32931
Re: Evergreen: a React UI Framework built by Segment
#240Earlier quoted context omitted.
Lit-html is faster than react + vdom - and has 6kb instead of 60kb. And back in the time everyone used jquery, the arguments are always the same.
heh, I've worked for companies that hit the max on cookie size (which I think is around 60kb). For an entire framework to be 60kb would be amazing for these companies :)