▲ | mirzap 3 days ago | |
It has nothing to do with architecture, but rather understanding how the DOM works. The DOM is notoriously slow, so you should never render a huge number of rows at once. You can render millions of rows in plain JavaScript without impacting performance. Here, I have recreated your JS example with searching and filtering and it does not crash. It's trivial to reuse a similar approach with the real backend and real events from the event source. https://htmlpreview.github.io/?https://gist.githubuserconten... *Update: Here is 1 million rows table with search, filtering and pagination. In plain Javascript: https://htmlpreview.github.io/?https://gist.githubuserconten... |