Micah Rairdon
Micah Rairdon
To add onto the great work @jeremymcgee73 did already on this I wanted to share this from a similar project NodePS from @TLaborde. He had some really great code here...
That's a fair point. I like your suggestion on validating it for Windows. On a side note for Linux support we could add a recommendation and instructions for wrapping the...
@awickham10 - The Read-Host would block the thread yes. Add this instead and it should work for you: ```powershell while ($Polaris.Listener.IsListening) { Wait-Event callbackeventbridge.callbackcomplete } ```
Hi @pcgeek86, Thanks for submitting the issue! We do have a method better than sleep but it isn't documented very well. Polaris uses a callback bridge to fire events so...
@TylerLeonhardt - What do you think about adding a `-Wait` parameter?
Hey thanks for moving this over Tyler. This one really has me curious. You're version is fine so that shouldn't be an issue. I honestly had lots of trouble getting...
Hey @this-is-mihai, Our current tests cover these versions of PowerShell and these Operating Systems:  Knowing under the hood we rely on HttpListener I would say that in theory this...
Hey @loomanss - The return statement would work from a standard route but from a middleware I believe you are going to need the changes I introduced in #192. Not...
I would treat it the same as if you were trying to scale node or php-fpm and use a reverse proxy like nginx or IIS to handle load balancing between...
@TylerLeonhardt if I'm off here let me know but after reviewing the code in the PR and the suggestions I think this would be better viewed as an awesome project...