▲ 2 r/IndieDev+2 crossposts

JS Days 2026 — free virtual JavaScript conference, Sept 16-17

Sharing this in case it's useful to anyone here — JS Days 2026 is a two-day virtual conference for JavaScript developers, running September 16–17.

Day one opens with a keynote followed by sessions on separate tracks, roughly every hour. Day two focuses on low-code development, UI development, and React, with both tracks streamed live alongside Q&A and discussion rooms.

Topics across the two days include:

  • Building AI agents with JavaScript and React
  • Generating apps on top of existing databases
  • Dashboards for supply chain and fleet management
  • Case study on building a recruitment application
  • AI-powered UI components
  • Techniques for handling large datasets in the browser
  • Making AI analytics usable for enterprise JS developers

Speakers are a mix of Sencha engineers, independent developers, and a few outside guests. It's free, fully virtual, and expected to draw a few thousand attendees based on past years.

Agenda and speaker list: https://www.jsdays.io

I'm involved with organizing it, happy to answer questions about any of the sessions.

u/Frontend_DevMark — 22 days ago

The hidden cost of component sprawl: Why our Fortune 500 client's UI audit revealed $2.3M in technical debt

Last month I completed a UI component audit for a major financial services company, and the results were staggering. They had 847 different button implementations across 23 applications, with 156 unique date picker variants that behaved differently under edge cases.

This wasn't a startup with cowboy coding practices. This was a mature enterprise with strict development standards, code reviews, and architectural oversight. Yet over five years of development, their component ecosystem had fractured into an unmaintainable mess that was costing them serious money.

Here's what the audit revealed and why most enterprises are sitting on similar time bombs:

The real numbers behind component chaos:

- 847 button variants consuming 2,847 developer hours annually in maintenance

- 156 date pickers with 23 different timezone handling approaches

- 89 data grid implementations, none sharing validation logic

- Average bug fix taking 3.2x longer due to component inconsistency

- 34% of support tickets traced to UI component edge cases

What you're missing without comprehensive coverage:

Every custom component you build needs accessibility compliance, keyboard navigation, screen reader support, RTL text handling, and cross-browser testing. We found components that worked perfectly in Chrome but broke focus management in Safari, or handled ARIA labels inconsistently across similar widgets.

The data grid situation was particularly brutal. Teams had rebuilt pagination, sorting, filtering, and export functionality dozens of times. Each implementation handled large datasets differently - some froze the browser at 10K rows, others had memory leaks with virtual scrolling, and most lacked proper loading states.

The maintenance multiplication effect:

Here's the math that kills you: if you have 50 custom components and need to update for a new accessibility standard, you're looking at 50 separate updates, testing cycles, and deployment windows. We calculated they were spending 40% more time on component maintenance than feature development.

Cross-team knowledge transfer was another hidden cost. When developers switched teams, they faced learning curves for each team's component variants. New hire onboarding stretched from 2 weeks to 6 weeks just to understand the component landscape.

What actually worked:

The teams that had standardized on comprehensive component libraries (whether internal or external) showed 60% faster feature delivery and 75% fewer UI-related bugs in production. Their components handled edge cases consistently because someone had already solved those problems once.

The audit convinced their CTO to consolidate on a single comprehensive library rather than continuing to build everything in-house. Sometimes the "not invented here" syndrome costs more than the licensing fees.

I work with Ext JS at Sencha, and while I'm obviously biased toward our solution, the key insight applies regardless of which library you choose: comprehensive beats custom every time in enterprise environments. Happy to discuss specific audit findings or answer questions about component standardization strategies.

reddit.com
u/Frontend_DevMark — 4 months ago

We had a client dashboard that was choking on large datasets - think financial trading data, inventory systems, that kind of thing. Users were literally walking away from their desks during 15+ second load times when filtering or sorting half a million rows.

The challenge wasn't just volume - these grids needed real-time updates, complex filtering, grouping, and export capabilities. Standard virtualization approaches were hitting walls around 50K rows before performance degraded noticeably.

Here's what actually moved the needle:

1. Buffered rendering with intelligent chunking

Instead of rendering all visible rows at once, we implemented progressive loading in 1000-row chunks. This dropped initial render from 12 seconds to under 2 seconds immediately.

```javascript

// Key config that made the difference

bufferedRenderer: {

trailingBufferZone: 50,

leadingBufferZone: 200,

synchronousRender: false

}

```

2. Server-side pre-aggregation

Moved heavy lifting to the database layer. Pre-calculated common groupings and filters server-side, then cached results. This reduced data transfer by 70% and eliminated client-side processing bottlenecks.

3. Column virtualization for wide datasets

For grids with 50+ columns, only rendering visible columns cut memory usage in half. Combined with lazy column loading, this handled datasets that were both deep AND wide.

4. Smart data binding and dirty checking

Disabled automatic data binding updates during bulk operations. Batched updates and only triggered re-renders after operations completed. Went from 200ms per row update to 5ms.

Results after optimization:

- Initial load: 780ms average (down from 15+ seconds)

- Sorting 500K rows: 340ms

- Memory usage: 60% reduction

- Scroll performance: 60fps maintained

The biggest limitation we hit was browser memory constraints around 1M+ rows - eventually you need pagination or server-side virtualization no matter what. Also learned that mobile performance is a completely different beast with these datasets.

What worked best was the combination approach rather than any single technique. The buffered rendering gave us the foundation, but the server-side optimizations and smart data handling made the real difference.

I work with Ext JS daily at Sencha, and these patterns apply across most enterprise grid scenarios. Happy to dive deeper into any of these techniques if you're dealing with similar performance challenges.

reddit.com
u/Frontend_DevMark — 4 months ago