This repository was archived by the owner on Nov 2, 2020. It is now read-only.

Description
I was trying to find out examples of websocket client which use perMessageDeflate option.
But I couldn't find any example using even any other option.
Is it possible to make PermessageDeflate false in client side?
I'm trying to connect 3rd party websocket api and they set perMessageDeflate true.
But what I want is perMessageDeflate option false because receiving data is small.
I tried new WebSocket('url', {perMessageDeflate : false}); but didn't work
I really want to use your library because it's so fast even in client perspective.
Always thanks for great library.