Pete Cornish

Results 76 comments of Pete Cornish

To simplify things here, there's a new `loadAsJson()` function for stores in [v3.39.0](https://github.com/outofcoffee/imposter/releases). Using that, the example is now: ```js var personsStore = stores.open('persons'); var persons = personsStore.loadAsJson('persons'); respond().withContent(persons); ```...

Hi @rnestler, you're most welcome :) Thank you for your contributions. We've released [v3.40.0](https://github.com/outofcoffee/imposter/releases), which has an improved `js-graal` plugin. This one has Nashorn compatibility turned off and new plumbing...

Hi @rnestler, thanks to your excellent repro cases, we've tracked down the bug causing the error. [Version 4.0.0](https://github.com/outofcoffee/imposter/releases) switches to GraalVM as the default JavaScript engine, and it also has...

Hi @rnestler, your solution is a good one. Using the CLI avoids the container itself restarting, just the JVM process inside 👍

Thanks for the suggestion, @dhoffer. I'm happy to make it non-static; but might retain a static builder method for others who want to use it. WDYT?

Thanks very much for highlighting the issue and for the suggested fix. I'll have a look at incorporating this into the project. Would you mind providing an example router configuration...