msgpack-context-aware

1.0.4 • Public • Published

node-msgpack-context-aware is same to msgpack, just except that one of the bugs has been fixed to make the module context-aware;

issue:

rpo

The following erro occurred when i use msgpack in worker-thread

[2023-06-09T15:59:10.621] [ERROR] default - thread error: Error: Module did not self-register: 'xxxxxx\node_modules\msgpack\build\Release\msgpackBinding.node'.
    at Module._extensions..node (node:internal/modules/cjs/loader:1338:18)
    at Module.load (node:internal/modules/cjs/loader:1117:32)
    at Module._load (node:internal/modules/cjs/loader:958:12)
    at Module.require (node:internal/modules/cjs/loader:1141:19)       
    at require (node:internal/modules/cjs/helpers:110:18)
    at Object.<anonymous> (H:\company\sg2\tsgf\node_modules\msgpack\lib\msgpack.js:6:14)
    at Module._compile (node:internal/modules/cjs/loader:1254:14)      
    at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
    at Module.load (node:internal/modules/cjs/loader:1117:32)
    at Module._load (node:internal/modules/cjs/loader:958:12) {        
  code: 'ERR_DLOPEN_FAILED'
}

solution

reference

change this to new

// NODE_MODULE(msgpackBinding, init);
// fix: make the module context-aware that it needs to reolace NODE_MODULE
NODE_MODULE_INIT()
{
    init(exports);
}

thanks for all help, Stevie, fathyb, and brother Tao

addition

Context-aware addons

Readme

Keywords

none

Package Sidebar

Install

npm i msgpack-context-aware

Weekly Downloads

3

Version

1.0.4

License

none

Unpacked Size

1.84 MB

Total Files

91

Last publish

Collaborators

  • mrprotein