Live data from Hacker News

The Firefox UI Is Now Built with Web Components

briangrinstead.com

21–30 of 260 posts

Re: The Firefox UI Is Now Built with Web Components

#23
post #20

can it cause perfomance issue ? I know for example the devtool is written in react and it's a lot slower than chrome devtools (I don't know how chrome devtool is written) and the javascript debugger is sometime not even usable because it's so slow.

Chrome DevTools use Web Components: https://github.com/ChromeDevTools/devtools-frontend

Re: The Firefox UI Is Now Built with Web Components

#24
post #20

can it cause perfomance issue ? I know for example the devtool is written in react and it's a lot slower than chrome devtools (I don't know how chrome devtool is written) and the javascript debugger is sometime not even usable because it's so slow.

I believe the developer consoles for all three major desktop browsers (Chrome, Firefox, and Safari) are written using web technologies.

Re: The Firefox UI Is Now Built with Web Components

#27
post #20

can it cause perfomance issue ? I know for example the devtool is written in react and it's a lot slower than chrome devtools (I don't know how chrome devtool is written) and the javascript debugger is sometime not even usable because it's so slow.

Using web components or something else is only one small part of the performance question. They could be using both web components and React for all we know. They could be using any number of JavaScript libraries that could be harming performance. They could be using raw DOM manipulation which could be either very fast or somewhat slow depending on how well it was implemented. All we can say is that using JavaScript in general is slower than using C++ but they weren't using C++ before anyways.

Re: The Firefox UI Is Now Built with Web Components

#28
post #20

can it cause perfomance issue ? I know for example the devtool is written in react and it's a lot slower than chrome devtools (I don't know how chrome devtool is written) and the javascript debugger is sometime not even usable because it's so slow.

chrome devtools are also written in javascript (although I'm not sure which framework if any they use). You can even debug the chrome devtools with chrome devtools (I think the same applies to firefox, although I've never accidentally gotten into that state like I have in chrome).

Re: The Firefox UI Is Now Built with Web Components

#30
post #20

can it cause perfomance issue ? I know for example the devtool is written in react and it's a lot slower than chrome devtools (I don't know how chrome devtool is written) and the javascript debugger is sometime not even usable because it's so slow.

Chrome devtools is also a JS application: https://github.com/ChromeDevTools/devtools-frontend.
Post reply on HN