Johann Pardanaud
Johann Pardanaud
This could be done with a `Pipe` class added to a JS function: ```php use Nesk\Rialto\Data\JsFunction; use Nesk\Rialto\Data\Pipe; // Create a new pipe to transfer values from JS to PHP...
The actual option name is confusing. This: https://github.com/nesk/rialto/blob/e51cd3106cdf046a11fd18cef9a48e7f5bac71d3/src/ProcessSupervisor.php#L41-L42 should become: ```php // Node's executable path 'node_path' => 'node', ``` **Note:** all occurences of `executable_path` should be replaced [in the documentation](https://github.com/nesk/rialto/blob/master/docs/api.md#options).
Once the `create` method has been deprecated and Rialto is ready for a new major release, the former should be removed from the library. Requires [method chaining](https://github.com/nesk/rialto/issues/4) to be implemented....
Currently, the scoped variables in JS functions are assignable. There is no reason to allow this behavior, the `const` keyword should used instead of `var` in scoped variable declarations: https://github.com/nesk/rialto/blob/21a21181249ca0c09268c84fc93e2650849a37f1/src/node-process/Data/Unserializer.js#L48
I see in the codebase that the WebSocket server has some size limitations for its payloads. More specifically, [the message size is limited to 128 MiB.](https://github.com/denoland/deno/blob/429759fe8b4207240709c240a8344d12a1e39566/ext/websocket/lib.rs#L97-L98) It would be great...
**Is your feature request related to a problem? Please describe.** When using the `log` module with Deno Deploy, the output is not "native" in the dashboard: ![Screenshot 2022-09-12 at 21-21-33...
They say "a picture is worth a thousand words", so here it is: Now try to switch between dark and light modes on your OS, it should behave like this:...
Arrow already has an `EitherNel` typealias: ```kotlin typealias EitherNel = Either ``` What about `EitherNes`? ```kotlin typealias EitherNes = Either ``` I suppose it was not already present because I...
`Window::is_accelerated()` and `Window::render_buffer_id()` methods were missing in the C API, I've added them with the functions `ulWindowIsAccelerated()` and `ulWindowGetRenderBufferId()`.
This is missing, especially for enums and sealed classes. - `isInstanceOf` - `isNotInstanceOf`