Has anyone successfully used the @textile/threads-client sdk for connecting to ThreadDB from within a cloudflare worker? I am getting the following error from the wrangler cli:
EvalError: Code generation from strings disallowed for this context
at Function (<anonymous>)
at worker.js:114:246327
at createCommonjsModule (worker.js:114:878)
at Module../node_modules/@textile/threads-client/dist/esm/index.js (worker.js:114:246268)
at __webpack_require__ (worker.js:663:367)
at Module../node_modules/@textile/threaddb/dist/esm/index.js (worker.js:60:776)
at __webpack_require__ (worker.js:663:367)
at Object../lib/schema-store.ts (worker.js:582:2297)
at __webpack_require__ (worker.js:663:367)
at Object../pages/api/schema/[schemaId].ts (worker.js:585:2352)
According to cloudflare/wrangler-legacy#1268 cloudflare workers does not allow running eval. I quickly checked the node_modules/@textile/threads-client/dist/esm/index.js and it seems to be full of eval usages 😕 (I am using the @textile/hub package)
yarn why @textile\threads-client
yarn why v1.22.10
warning ..\..\package.json: No license field
[1/4] Why do we have the module "@textile\\threads-client"...?
[2/4] Initialising dependency graph...
[3/4] Finding dependency...
[4/4] Calculating file sizes...
=> Found "@textile/threads-client@2.2.0"
info Reasons this module exists
- "@textile#hub#@textile#hub-threads-client" depends on it
- Hoisted from "@textile#hub#@textile#hub-threads-client#@textile#threads-client"
Now I tried favoring the cjs/browser bundles over esm via webpack config and I am receiving the following:
Uncaught
EvalError: Code generation from strings disallowed for this context
at Function (<anonymous>)
at Object../node_modules/@textile/threads-client-grpc/threads_pb.js (worker.js:148:169)
at __webpack_require__ (worker.js:1080:254)
at Object../node_modules/@textile/threads-client/dist/cjs/index.js (worker.js:154:1660)
at __webpack_require__ (worker.js:1080:254)
at Object../node_modules/@textile/hub-threads-client/dist/cjs/index.js (worker.js:112:151)
at __webpack_require__ (worker.js:1080:254)
at Object../node_modules/@textile/grpc-authentication/dist/cjs/index.js (worker.js:76:684)
at __webpack_require__ (worker.js:1080:254)
at Object../node_modules/@textile/buckets/dist/cjs/buckets.js (worker.js:49:567)
Uncaught (in response)
Error: EvalError: Code generation from strings disallowed for this context
Uncaught (in response)
Error: EvalError: Code generation from strings disallowed for this context
I assume the issue here is the google grpc usage 😕 (edited)
Has anyone successfully used the @textile/threads-client sdk for connecting to ThreadDB from within a cloudflare worker? I am getting the following error from the wrangler cli:
According to cloudflare/wrangler-legacy#1268 cloudflare workers does not allow running eval. I quickly checked the node_modules/@textile/threads-client/dist/esm/index.js and it seems to be full of eval usages 😕 (I am using the @textile/hub package)
I assume the issue here is the google grpc usage 😕 (edited)