What problem does it solve? Migrating ASP.NET MVC applications to Node.js + React requires replacing SignalR real-time features, SQL Server linked-server queries, LiveLink/OpenText document integrations, and on-prem connectivity with modern equivalents, and doing this incorrectly leads to broken live updates, hidden authorization gaps, and fragile hybrid networking. ## Core Features & Use Cases - SignalR to WebSocket Migration: Maps hubs, groups, and client methods to ws or Socket.IO patterns with explicit message envelopes, per-socket authorization, and room management. - Postgres LISTEN/NOTIFY Event Bridge: Provides trigger-based and application-level notification patterns plus a reconnecting backend listener that fans events out to subscribed sockets and TanStack Query invalidation. - Enterprise Integration Adapters: Covers linked-server replacement via postgres_fdw/tds_fdw or integration services, LiveLink/OpenText Content Server adapter stubs, Azure Service Bus for async work, and ExpressRoute/VPN/Relay/APIM hybrid connectivity decisions. - Use Case: When migrating an MVC app whose dashboard refreshes via a SignalR hub backed by SQL Server change tracking, use this Skill to rebuild it as a ws gateway fed by Postgres NOTIFY triggers, with React hooks invalidating TanStack Query caches on each event. ## Quick Start Ask the AI to migrate the SignalR NotificationsHub in the legacy ASP.NET MVC app to a Node.js WebSocket gateway with Postgres LISTEN/NOTIFY events and authorized per-user subscriptions.