FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Modern Angular/NgRx Debugging Tool
How-ToWeb Development

Modern Angular/NgRx Debugging Tool

via Dev.to WebdevLemonAdam1mo ago

GitHub Repository If you've ever debugged an NgRx app by console.log across reducers and effects, this post is for you. You should use NgRx DevTool , a real-time visual debugger for NgRx applications. It runs as a standalone UI that connects to your app over WebSocket. No browser extension, no permissions, no setup headaches. npm install @amadeus-it-group/ngrx-devtool Setup in 2 minutes Add the meta-reducer and provider to your app config: import { provideNgrxDevTool , createDevToolMetaReducer } from ' @amadeus-it-group/ngrx-devtool ' ; export const appConfig : ApplicationConfig = { providers : [ provideStore ( reducers , { metaReducers : [ createDevToolMetaReducer ()] }), provideEffects ([ YourEffects ]), provideNgrxDevTool ({ wsUrl : ' ws://localhost:4000 ' , trackEffects : true , }), ] }; Start the DevTool server: npx ngrx-devtool Open localhost:3000 and start your Angular app. Done. What you get Action Monitoring Every dispatched action shows up in real time. User actions get a blu

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
17 views

Related Articles

How-To

Start Here: Learning to develop your own way with SCSIC

Medium Programming • 12h ago

Vibe Coding Isn’t for Everyone (And That’s the Point)
How-To

Vibe Coding Isn’t for Everyone (And That’s the Point)

Medium Programming • 13h ago

Sometimes We Make Mistakes (Meta’s Cost $80 Billion)
How-To

Sometimes We Make Mistakes (Meta’s Cost $80 Billion)

Medium Programming • 13h ago

Gate.io vs KuCoin — Which Crypto Exchange Is Better? (2026)
How-To

Gate.io vs KuCoin — Which Crypto Exchange Is Better? (2026)

Dev.to Beginners • 15h ago

How to Build a Real Multi-Agent Engineering Workflow With oh-my-claudecode
How-To

How to Build a Real Multi-Agent Engineering Workflow With oh-my-claudecode

Medium Programming • 15h ago

Discover More Articles