Last active
June 13, 2018 07:18
-
-
Save a7ul/7bced1b7f3092453b830978a39e600e3 to your computer and use it in GitHub Desktop.
blog-on-node-addons-second
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//index.js | |
const testAddon = require('./build/Release/testaddon.node'); | |
module.exports = testAddon; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* cppsrc/main.cpp */ | |
#include <napi.h> | |
Napi::Object InitAll(Napi::Env env, Napi::Object exports) { | |
return exports; | |
} | |
NODE_API_MODULE(testaddon, InitAll) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment