Eric Hynds

Results 7 comments of Eric Hynds

Some anecdotal evidence here fwiw.. I tested my app using siege with and without this module, flooding it with 1000 simultaneous requests over 100k requests. Unsurprisingly it created 1k sockets...

Yes, I get that, poor word choice. My point was that 1k sockets were created and recycled over the course of my test and this module holding references to them...

Yeah, one limitation of this plugin is that it requires a trailing semicolon since the regex is non-greedy. Until I can figure out how to fix that (pulls welcome) I...

Possible dupe of #10? I just pushed an update to npm with #10's bug fix - can you give it a spin?

Take a look at grunt-groundskeeper which uses esprima instead of a simple regex. It'll probably address these use cases.

The trade off with that regex is that you cannot use a semi-colon inside the actual console text (like `console.log('some; message');`, which I tend to do a lot.

Hey, thanks for this. Can you add unit tests?