Paulo Lopes

Results 282 comments of Paulo Lopes

Internally we already have the concept of: https://github.com/vert-x3/vertx-web/blob/master/vertx-web/src/main/java/io/vertx/ext/web/impl/RoutingContextInternal.java#L30-L46 It could be possible to promote this internal API to be public and define the rules for the id. To keep the...

The file seems to be stored in the jar under: `/BOOT-INF/classes/webroot/` while we usually expect it under `/webroot/`. This is something related to spring class loaders i guess.

Already fixed by: https://github.com/vert-x3/vertx-web/pull/2035 but... A proper and correct fix should land after https://github.com/eclipse-vertx/vert.x/pull/4099 is merged and the required changes land here.

We can backport the "quick" fix to 4.1 if needed, it's not complex.

@ddavoren in 4.2.3 we do have jackson 2.13.1. Jackson is a widely used dependency across all vert.x modules, so its version must be aligned. The change required some internal changes...

Hi @fantasy0v0, the dependency on `node_modules` happens on the `install` command. This isn't really required to be `node_modules` at the time I decided to use it because i found it...

@fantasy0v0 yes, that is the vert.x behavior, JavaScript has a similar behavior: ```js let myPromise = new Promise(function(myResolve, myReject) { myResolve('OK'); // when successful myResolve('OK'); // when successful }); //...

I'm improving the init command to support ts, can you check if this template works for you? https://github.com/reactiverse/es4x/tree/develop/pm/src/main/resources/META-INF/es4x-commands/init/ts Be aware that it assumes versions that haven't been released yet so...

This is definitely interesting, I'm not sure how to handle it, though. In the example you mention, you have a file and a json payload. Given that we're speaking about...

Solving this would require having a similar module to browserify but which uses vertx http client instead of xhr. Once such module exists then an alias on the package json...