Skip to content

Instantly share code, notes, and snippets.

@betomoretti
betomoretti / binding.gyp
Last active January 17, 2018 18:37
Hello world example using a native extension implemented with NAPI
{
"targets": [
{
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"include_dirs" : [
"<!@(node -p \"require('node-addon-api').include\")"
],
"target_name": "hello_world",
"sources": [ "hello_world.cc" ],