Search code examples
node.jsasp.net-core-signalr

Where I can found the SignalR core polyfills for Node


In the SignalR npm package says, that in order to use from Node we should include some polyfills

The following polyfills are required to use the client in Node.js applications:

XmlHttpRequest - always

WebSockets - to use the WebSockets transport

EventSource - to use the ServerSentEvents transport

btoa/atob - to use binary protocols (e.g. MessagePack) over text transports (ServerSentEvents)

And the question is, have anybody a link to those polyfills?


Solution

  • For future references:

    The answer seems to be here