Jonathan Hall
Jonathan Hall
My use case is a router to run in the browser, for a single-page app (and compiled with GopherJS). so in that case, your path prefix matching is perfect, because...
No, at present this library only supports reading apkg files. If you wish to add that functionality, I would be happy to review a PR, but it's not functionality I...
> I have a plan to create another small open source tool which will allow me to: That sounds like a very interesting project... good luck! I'd love to see...
> Nope we do not, Can you elaborate? Why do we not care? This seems to have the potential to break expected behavior, if stdout isn't flushed before exit.
Does output to stdout not normally block in Go?
My concern, without any attempt to test this, is that something like this might lead to lost output, particularly in tests running in Node.js (which I think is only place...
@Lekensteyn Thanks for testing that. Your approach of using `process.stdout.write` makes sense to me.
I think I agree with @nevkontakte. Making a new function version for every function that might panic will be very noisy, and cumbersome to use. My preference is for a...
> So I would typically like to call instanceof in order to check the JS error type, but apparently it's not supported as is in gopherjs, it seems that jsbuiltin...
> I guess the next step is to implement a generic way to call a JS function returning a promise, so that we don't have to create a channel, implement...