Results 254 comments of M.K.

Just for the record, some people seem to have managed to [use websockets in apache with wstunnel](http://stackoverflow.com/questions/27526281/websockets-and-apache-proxy-how-to-configure-mod-proxy-wstunnel).

> you need proxy support in your websocket library What features will that consist of? Can I test all those features on a per-app level, independent of which ws lib...

I'll share my idea since I couldn't finish my research on it: A lot of web apps have their websockets behind very few, short URL prefixes like `/ws/` (http://api.example.com/ws/chat). If...

Update on my research (it's on the back burner though): We could probably write a module like fdpass to get the socket descriptors. We'd then have to exfiltrate the connection's...

@annymosse [How to install Passenger Standalone](https://www.phusionpassenger.com/library/install/standalone/install/oss/) Once you have that running, it gives a web server. You'll want to ensure it is not reachable directly from the outside. To achieve...

In my app I have some data collection paths like `/api/log/client_jserr/` where I'd prefer to get all requests, even after the client has given up waiting, so I'd like an...

Looks like with this PR it will accept strings only? In that case it would break for people who use the work-around of supplying the element.

https://www.npmjs.com/package/ratchet-v2-pmb I hope it helps. :-)

Could you provide an example JS program that also prints messages before and after each file operation, in order to easily check order of execution? If the issue only applies...

Sorry for sending that IIFE suggestion too early. Example code for the custom config use case: ``` js 'use strict'; var fs = require('fs'), config, defaultConfig = require('../package.json').defaultConfig; try {...