Roaders

Results 117 comments of Roaders

yes... That could be useful and should be fairly easy to implemet as well. If you do a PR I'll take a look.

it's probably an issue with that version of TS. I don't think I have checks running for 4.8 yet.

yes, Typescript does not follow semantic versioning so doing a compatible upgrade can actually break your app. I usually have `~` dependency ranges for TS rather than `^`. I will...

So I have added TS 4.8 and 4.9 to the testing list and all seems fine. Perhaps my compatibility test code is not complete enough. Can you share a repo...

I intend to submit a PR to resolve this issue. If it's not merged I'll release my own version of this node (which obviously isn't great having multiple copies of...

There is no callback arg on spawn so it can't be used with the Promisify util to return a promise.

Some thoughts on this. Some questions that we will have to answer when we come to implement this: - Will a sub agents appear to the other applications as separate...

Ok, that all makes sense. It seems that sub agents are fully self contained agents that have all the features of a normal agent. The only difference is that there...

I had missed that the `getSubAgent ` function was to be added to `DesktopAgent`. I had thought that it would be a function at the same level as `getAgent()`

I might have missed some discussion on this then. Are there any documents on this? It sounds like only 1 interface (the desktop agent created by `getAgent()`) will communicate from...