laggingreflex

Results 52 comments of laggingreflex

Was having a similar problem but with copyTpl. What worked for me was: ```js this.fs.copyTpl( from, to, {}, // context {}, // templateOptions { globOptions: {dot: true} } ) ```...

I've created a simpler wrapper around it to make it easier to use. Check it out: [simple-socket-stream]. The same API for sever and client makes it easy for either of...

Yes please. I needed to do `this.timeout = xxx` inside a describe suite.

I'd like to be able to define it per file or pattern: ```json "github.copilot.customInstructions": { "*.md": "Use '*' for list items." "journal.md": "Use YYYY-MM-DD" } ``` Or maybe even by...

Yep, that certainly seems a better option. I'll rework the PR.

So it basically returns "reserved" instead of "closed" for those ports, right? Can you give a use case where such a distinction would be important? I'm also concerned, since this...

Thanks for the detailed explanation! Ok so it seems the keyword 'reserved' is not really necessary in your use case, right? You only just wanna know if it's 'open' or...

> However, I think returning 'open' for excluded ports may be a breaking change too, since originally it returned 'closed'. Good point, but I would consider that a fix rather...

> If the main objective is just finding a free, bindable port, it would be fine. Hmm, what other use cases are you thinking might be there? As far as...

> Maybe someone can use this package to detect whether some server program is running (they can do this check without this package by sending arbitrary request... but just in...