
React Server Components and the Next.js App Router enable streaming and smaller client bundles, but only when used correctly. This article explores six common mistakes that block streaming, bloat hydration, and create stale UI in production.

Gil Fink (SparXis CEO) joins PodRocket to break down today’s most common web rendering patterns: SSR, CSR, static rednering, and islands/resumability.

@container scroll-state: Replace JS scroll listeners nowCSS @container scroll-state lets you build sticky headers, snapping carousels, and scroll indicators without JavaScript. Here’s how to replace scroll listeners with clean, declarative state queries.

Explore 10 Web APIs that replace common JavaScript libraries and reduce npm dependencies, bundle size, and performance overhead.
Would you be interested in joining LogRocket's developer community?
Join LogRocket’s Content Advisory Board. You’ll help inform the type of content we create and get access to exclusive meetups, social accreditation, and swag.
Sign up now
4 Replies to "What’s new in Vuex 4"
Your action ActionTypes.GET_ACTORS does not require payload. Why you give payload, when calling it ? 🙂
What would be the changes needed for namespaced modules?
I’ve been wondering maybe reactive store is more Typescript oriented, like this:
https://github.com/shemeshg/PWorkbook
(regarding Vuex) “The only way to change a store’s state is by explicitly committing mutations.”
That is not quite correct. Vuex store is mutable. If one change a property of an object loaded from Vuex store to some component the property would be also changed in the store.