Open n1ru4l opened 3 years ago
I ran into the same issue. Is this related to protocolbuffers/protobuf-javascript#25?
Would it be possible to replace the grpc library with another one, like this pure JS implementation: https://www.npmjs.com/package/@grpc/grpc-js (in a reasonable amount of time)?
I haven't tested any other serverless functions provider. Does anyone have experiences with other providers?
I made a little more research and it seems like Google Closure Compiler generates the eval
s when building the google-protobuf
dependency. I'm fiddling around with it right now and see, if there is a way to avoid them, but it's not the most pleasant experience.
I've also been asking on the CF Workers Discord server whether there is any way to upload such functions that involve unsafe eval, but I got an answer that it's not possible.
Thanks for digging into this @Tarnadas. I did some research as well, and the closest thing I've come up with is actually just trying to use sed, awk, or similar to remove those lines from the built code. Not ideal, but possibly doable?
I managed to fix the issue with some nasty Webpack transformations, which basically removed all eval and Function usages, but I stumbled across the next issue using Websockets on CF Workers. I don’t think this is easy to solve either, which is why I gave up.
Do you know if it is possible to use ThreadDB in another serverless environment?
Unfortunately, we haven't tested this elsewhere. Maybe @andrewxhill has some thoughts, but I think this usage just hasn't really been on our radar?
Right, I believe we did some tests with the pure js grpc library in the past. I'm trying to recall what the blockers were, it may have been around the unary type requests?
The issue was with the bidi calls. Unfortunately, I think this is still an issue. @Tarnadas, if you are interested, there is the possibility that you might be able to do this via some other means... perhaps if you only need a limited set of APIs, the pure gRPC route is possible?
@n1ru4l @Tarnadas great find! You saved me a few days of work! I stumble on almost the same issue w Avro-js / Avsc - CF CSP is blocking some generated eval-like code. Also hackable by nasty transformation but 100% would avoid it ...
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 https://github.com/cloudflare/wrangler/issues/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 :confused: (I am using the @textile/hub package)
I assume the issue here is the google grpc usage :confused: (edited)