kovax-react 0.7: Next.js App Router, kovax-react/server, and jest-axe in every test
The release of kovax-react 0.7.0 introduces several enhancements aimed at improving production ergonomics. Key features include clear distinctions between Server and Client components, automated accessibility checks, and improved bundle size transparency. This version addresses common user questions from the previous release without adding new runtime dependencies.
- ▪Kovax-react 0.7.0 is now available on npm.
- ▪The update focuses on production ergonomics, including clear Server vs Client boundaries for the App Router.
- ▪Automated accessibility checks using jest-axe are now included in component tests.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3931546) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Aleksey Alekseev Posted on May 20 kovax-react 0.7: Next.js App Router, kovax-react/server, and jest-axe in every test #react #nextjs #rsc #a11y kovax-react 0.7.0 is on npm. After 0.6 shipped product UI (Avatar, Menu, Pagination, breakpoint hooks), 0.7 focuses on production ergonomics: clear Server vs Client boundaries for the App Router, automated a11y checks in Jest, and bundle size transparency per entry point.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).