Skip to content

Instantly share code, notes, and snippets.

@sagivo
Created September 30, 2015 16:47
Show Gist options
  • Save sagivo/9a63da630b9876b39539 to your computer and use it in GitHub Desktop.
Save sagivo/9a63da630b9876b39539 to your computer and use it in GitHub Desktop.
void Method(const FunctionCallbackInfo<Value>& args) {
v8::String::Utf8Value nameFromArgs(args[0]->ToString());
std::string name = std::string(*nameFromArgs);
std::string response = "hello " + name;
args.GetReturnValue().Set(Nan::New(response).ToLocalChecked());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment