Alexis H. Munsayac

Results 119 comments of Alexis H. Munsayac

> I posted a workaround in [remix-run/remix#2987 (comment)](https://github.com/remix-run/remix/issues/2987#issuecomment-1155106420) I can't say if that's a workaround since it only works on a single environment.

https://github.com/snowpackjs/esm-hmr/blob/152fffe555e9281822553b495edbc95ccb6a41b2/src/client.ts#L131-L137 It uses module versioning and dynamic imports to "reload" modules without deleting the module cache. The loaded content is then passed to `import.meta.hot.accept` for consumption. Also, commenting this for...

Hi! Just stopping by to ask some questions regarding the API design of these features: - If our intent for `signal` is to return a tuple, why do we need...

@marvinhagemeister those are some good points, thank you!

After having a [working PoC I made 6 months ago](https://github.com/LXSMNSYC/solidtude), I manage to pull a working Partial Hydration implementation by only using SolidJS components through [rigidity](https://github.com/lxsmnsyc/rigidity). Of course, this requires...

@tylerbrostrom he was mentioning it for the sake of the "Partial Hydration" topic :) @aadamsx I've made a repo to collect resources about Partial Hydration and Islands Architecture, if you...

Some helpful resource (from React). - React marks [`contentEditable`, `draggable`, `spellCheck` and `value`](https://github.com/facebook/react/blob/main/packages/react-dom/src/shared/DOMProperty.js#L293-L306) as those properties that would be convered into `"true"` and `"false"` when written as eg. `` and...

With `data-*`, how does `dataset` property work with raw boolean values?

I think we should follow the convention of [handling booleans for specific attributes](https://github.com/solidjs/solid/issues/1101#issuecomment-1173285797), just for consistency. It's just a small price to pay.