Andy Damevin
Andy Damevin
Some NodeJS dev-server don't allow to set the websocket port for for hot reload. Currently those websocket connection are not forwarded by Quinoa. Some other dev-server like Vite allow to...
Currently the [QuarkusPlaywrightManager](https://github.com/quarkiverse/quarkus-quinoa/blob/main/testing/src/main/java/io/quarkiverse/quinoa/testing/QuarkusPlaywrightManager.java) is not giving a lot of flexibility for consumers (hard coded browser and options). Also it would be nice to have a doc (or links) to setup...
@tsegismont had this great idea to make this quicker and easier to install. I am not sure if that's possible at all but it's for sure worth a try!
Now that we have support for NodeJS and NPM install, adding yarn should be a piece of cake: ```properties quarkus.quinoa.package-manager-install=true quarkus.quinoa.package-manager-install.node-version=16.17.0 quarkus.quinoa.package-manager-install.yarn-version=1.22.19 ``` Default download root: https://github.com/yarnpkg/yarn/releases/download/
Now that we have support for NodeJS and NPM install, adding pnpm should be a piece of cake: ```properties quarkus.quinoa.package-manager-install=true quarkus.quinoa.package-manager-install.node-version=16.17.0 quarkus.quinoa.package-manager-install.pnpm-version=7.12.0 ``` Default download root: https://registry.npmjs.org/pnpm/-/
Currently, it is not possible to configure `historyApiFallback` on: - `react-scripts start` (from RCA). - `ng dev` - `vite dev` Since Quinoa is relying on having a 404 when a...
It would be nice in dev-mode if a change in the package.json would trigger a new install before the build.
Not sure what it should contain?
This is referenced there: https://github.com/angular/angular-cli/issues/2375 For some obscure reason, the workaround is to replace `ng serve` by `ng serve --host 0.0.0.0` to make it work. To reproduce, start `ng serve`...
For [Quarkus Quinoa](https://github.com/quarkiverse/quarkus-quinoa) (using the core part of this for installing Node.js), I would like to use Vert.x as http client, currently the factory is locked by package protection.