Sung Jeon

Results 57 comments of Sung Jeon

I don't think this is a bug for both sides. Please don't get mad at me; I was also confused by the error. However, `*` is a valid shell syntax...

Is this RFC about having a .wasm binary for this crate, or having a WASM target-compatible library that serves as other library's dependency? If the latter is the choice, there...

I found that this crate can be built to WASM target with wasm-bindgen feature enabled and default features (mmap) disabled. (Probably intended) So I think it could be used like...

It seems like [Google Cast also uses mDNS](https://github.com/hensm/fx_cast/blob/master/app/src/bridge/components/discovery.ts#L35) to discover other Chromecast in the network, so this could (theoretically) allow the Tailscale nodes to cast to connected Chromecast built-in Android...

It won't make sense anyway. N-API is Node-js-only feature that doesn't work on the web and wasm-bindgen is already doing a good job in this field.

This is quite problematic for Webpack usage as well. The workaround mentioned above doesn't work for Webpack since Webpack converts `require` calls to a dummy responds with `MODULE_NOT_FOUND`. ```js //...

Just created a Webpack loader to resolve this issue: https://github.com/BasixKOR/node-rs-loader I think ncc could use similar solutions, although I'm unsure my solution works generally.

> use some tool (babel?) to transpile node-modules @hoeck Yeah, It seems like Jest allows to do this with `transformIgnorePatterns` so I think I'll try this option. > you can...

I rebased the deepkit branch and it should be okay, please lmk if anything is a bit off

Fixed some remaining rebase issues and uses guard and deserializeFunction now! Unfortunately 'should throw on missing attributes' test is breaking though.