# Context - dev in [cloudflare worker](https://developers.cloudflare.com/workers/) - import and use `statsig-node` - we want internaly use native api as [explained here](https://developers.cloudflare.com/workers/runtime-apis/nodejs/#nodejs-compatibility) # Bug - to use native api, we have to activate [compatibility mode](https://developers.cloudflare.com/workers/runtime-apis/nodejs/#enable-nodejs-with-workers) without add polyfill - when we activate this option the worker expects an import like `node:...` - there is transitively an import without prefix  - so we can not use your lib with native prefix import # Analysis You use `sha.js` which use `safe-buffer` which uses native node Buffer api without node prefix import `node:buffer` 