���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/addons/hello-world/ |
#include <node.h> #include <v8.h> static void Method(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); args.GetReturnValue().Set(v8::String::NewFromUtf8( isolate, "world", v8::NewStringType::kNormal).ToLocalChecked()); } // Not using the full NODE_MODULE_INIT() macro here because we want to test the // addon loader's reaction to the FakeInit() entry point below. extern "C" NODE_MODULE_EXPORT void NODE_MODULE_INITIALIZER(v8::Local<v8::Object> exports, v8::Local<v8::Value> module, v8::Local<v8::Context> context) { NODE_SET_METHOD(exports, "hello", Method); } static void FakeInit(v8::Local<v8::Object> exports, v8::Local<v8::Value> module, v8::Local<v8::Context> context) { auto isolate = context->GetIsolate(); auto exception = v8::Exception::Error(v8::String::NewFromUtf8(isolate, "FakeInit should never run!", v8::NewStringType::kNormal) .ToLocalChecked()); isolate->ThrowException(exception); } // Define a Node.js module, but with the wrong version. Node.js should still be // able to load this module, multiple times even, because it exposes the // specially named initializer above. #undef NODE_MODULE_VERSION #define NODE_MODULE_VERSION 3 NODE_MODULE(NODE_GYP_MODULE_NAME, FakeInit)