Yulong Wang

Results 218 comments of Yulong Wang

I will update the prebuilt binary for node10 later

@jjhesk there was a bug to invalidate the workaround for this issue on Node 8.10.0 with Napa.js 0.2.0. Please update to 0.2.1 and have a try.

Hi @nveenjain , currently `Buffer` is not supported by Napa.js (https://github.com/Microsoft/napajs/blob/master/docs/api/transport.md#--transportable-types). This is because `Buffer` is a built-in Node.js type -- it's not only a type that used to access...

Hi @vsdigitall thanks for the feedback. Currently Napa.js is using JSON.stringify/JSON.parse in object transportation because of the following reasons: - It's simple and straightforward. - It has a well-defined behavior...

greetings @tansvanio could you please let me know the node version and napa version that you are using?

I haven't developed vscode extension before. I guess this error is because of node module version. Basicly Node requires an addon to be built upon the same NODE_MODULE_VERSION. Electron uses...

To support node native addon is a big topic that can talk about. In short, to support node native addon in napajs worker, we need to load and initialize node...

currently the pre-built binaries are built upon stdlib 6.x, which may need some runtime dependencies to be installed before running on some OS. Please consider [rebuild from source](https://github.com/Microsoft/napajs/wiki/build-napa.js) or see...

Improving node API compatibility (such as to support Buffer) is what we are currently working on. Some features are just simple to support in Napa - those are implemented in...

Hi @Meigyoku-Thmn thanks for the feedback. If you try to run the example multiple times, you may found the output may be different. This is because `console.log()` is not thread-safe....