Nicola Del Gobbo

Results 6 issues of Nicola Del Gobbo

Hi @lovell , I worked on this native addon and I ported it to **[N-API](https://nodejs.org/dist/latest-v8.x/docs/api/n-api.html)** You can find my work here: [https://github.com/NickNaso/64/tree/napi](https://github.com/NickNaso/64/tree/napi) If you want experiment with N-API you can...

enhancement

Hi @charliegerard I watched your talk at JSConfEU and I tried to port this module to N-API using its C++ wrapper **[node-addon-api](https://github.com/nodejs/node-addon-api/)**. You can find my work here: [https://github.com/NickNaso/Epoc.js/tree/napi](https://github.com/NickNaso/Epoc.js/tree/napi) If...

Node-API is an ABI stable API independent from Node.js version. The build of a native add-on needs only the headers file for Node-API so it's not necessary download all the...

Might it be time for a new version of Node-API? We added the following new features: - node_api_symbol_for (https://github.com/nodejs/node/blob/master/src/js_native_api.h#L96) - node_api_create_syntax_error (https://github.com/nodejs/node/blob/master/src/js_native_api.h#L120) - node_api_throw_syntax_error (https://github.com/nodejs/node/blob/master/src/js_native_api.h#L377) - node_api_get_module_file_name (https://github.com/nodejs/node/blob/master/src/node_api.h#L276)

This PR contains initial work to port **hiredis** module to new N-API

Hi everyone, I'm opening a new PR about the N-API porting because I want work on this work and I don't have write access to the previous PR (https://github.com/bnoordhuis/node-iconv/pull/189) -...