How to add socket-io-client to Meteor application?

Hey guys,
how can I add https://github.com/capriza/socket.io-client-0.9.16 to my Meteor application (on client side)? I’ve tried to add “socket.io.js” to my client folder, but this didn’t work properly because some functions didn’t work (WebSocket wasn’t defined).

Have you tried the meteor socket io package?

meteor add joncursi:socket-io-client

I can’t use it because I need version 0.9.16, so I have to add it by myself.

Really no answer? My current solution is to load the script via $.getScript() from the public folder, but I want a “integrated solution”. I’ve tried already to install it via bower, but that causes the same errors. I think it has something to do with the exports within socket-io-client?