Nicholas Clark

Results 28 comments of Nicholas Clark

I would second this. Since Svelte now mentions this test runner and since they are using Vite for SvelteKit (which is ESM), the NPM downloads have skyrocketed.

Thanks @SPARTAN563! Ya, this bug has been biting us hard. Our project is in early prototype, and refactoring has become a pain. This should resolve the issue nicely! I'll let...

So far so good. Updating to `@next` immediately helped us find about a dozen bugs we had still managed to miss in the refactor, thanks so much!

I'd love to see this happen as well. I have my panel setup for MSFS but thought I would also be able to use it as a generic HID for...

@shawnmcknight I believe so. There are a few main stages I would like to consider in a normal subscription/WebSocket operation: 1. **onConnect** * This is where we _Authenticate_ a user...

Ok. After some more time looking into this, I've found that by simply adding a way to hook into both `context` and `onConnect` should do the trick. ```javascript this.apolloServer =...

This seems to satisfy our needs: ```javascript createAsyncIteratorResolver(actionName, tags = [], filter) { return { subscribe: filter ? withFilter( () => this.pubsub.asyncIterator(tags), async (payload, params, graphqlCtx) => { // Use...

In the above code, my biggest concern is how we are managing Moleculer context. Is it correct to create a context `onConnect`? Technically, every time `context` is called we are...

@shawnmcknight @Hugome I put this into Discord and then realized I should really add to the conversation here... After taking a break to work on a different part of our...