In google cloud functions it is easy to shell out and even run native linux binaries using child_process.execSync(command)
, which is how I was able to get gcf.cr
to run native crystal code in google cloud functions.
Playing around with Cloudflare Workers at a glance this doesn't seem to be possible as it seems I can't even do require('child_process');
.
Does Cloudflare Workers not allow shelling out? If so then it's usefulness greatly diminishes for me unfortunately.