Blueboat, an open-source alternative to Cloudflare Workers
1–10 of 26 posts
Re: Blueboat, an open-source alternative to Cloudflare Workers
#2Re: Blueboat, an open-source alternative to Cloudflare Workers
#3I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
How about 0ms cold starts?
Is this actually open source cloudflare workers or just open source serverless functions?
Re: Blueboat, an open-source alternative to Cloudflare Workers
#4I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
To be honest, how Cloudflare Workers work is a bit of a mystery to me as I've only done some very basic prototyping with the service (and not really focusing on the "edge" aspect of them), but it seems like the important "stuff" that makes them what they are is how they are deployed.
I am REALLY going to show my ignorance here, but is there some chance that the idea is these "workers" are intended to be deployed in the users browser for example, as actual service workers or something? i.e. is this more of a framework for creating service workers vs running in the "backend"?
Re: Blueboat, an open-source alternative to Cloudflare Workers
#5Some distinctions:
1. Cloudflare Workers are Isolates, Blueboat are processes.
2. Cloudflare Workers are globally distributed and working in an anycast network, blueboat doesn't manage the network layer and are not distributed.
Re: Blueboat, an open-source alternative to Cloudflare Workers
#6I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
Same (blue) boat here. To be honest, how Cloudflare Workers work is a bit of a mystery to me as I've only done some very basic prototyping with the service (and not really focusing on the "edge" aspect of them), but it seems like the important "stuff" that makes them what they are is how they are deployed. I am REALLY going to show my ignorance here, but is there some chance that the idea is these "workers" are inten…
Re: Blueboat, an open-source alternative to Cloudflare Workers
#7I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
Same (blue) boat here. To be honest, how Cloudflare Workers work is a bit of a mystery to me as I've only done some very basic prototyping with the service (and not really focusing on the "edge" aspect of them), but it seems like the important "stuff" that makes them what they are is how they are deployed. I am REALLY going to show my ignorance here, but is there some chance that the idea is these "workers" are inten…
the only difference is that your browser is cloudflare and globally-distributed
Re: Blueboat, an open-source alternative to Cloudflare Workers
#8I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
In building complex SaaS apps, there's usually a constant flow of customer requests for custom features. Scripting, if managed very carefully [0], can provide an outlet for that and also allow people to glue together different features. AWS pushes people towards Lambda for customizing/gluing different AWS services.
A product could use AWS Lambda for its own scripting/glue, but that may end up being a little bit too free-form and depending on the use case Lambda cold start times may be unacceptable. So something like Blueboat could eventually be useful for running untrusted code to power customization of SaaS apps. This is especially the case if your service isn't marketed toward developers who can easily run their own Lambdas.
[0] Opening your app to scripting automatically exposes a huge API surface area which you'll likely have to support for a long time.
Re: Blueboat, an open-source alternative to Cloudflare Workers
#9This is open source serverless functions that implement Web API functions. Some distinctions: 1. Cloudflare Workers are Isolates, Blueboat are processes. 2. Cloudflare Workers are globally distributed and working in an anycast network, blueboat doesn't manage the network layer and are not distributed.
https://developers.cloudflare.com/workers/learning/security-...
Re: Blueboat, an open-source alternative to Cloudflare Workers
#10I thought the reason why Cloudflare Workers were great is that they utilize the many CDN points that Cloudflare owns. Or you can use Blueboat with say Fastly and achieve nearly the same thing?
Same (blue) boat here. To be honest, how Cloudflare Workers work is a bit of a mystery to me as I've only done some very basic prototyping with the service (and not really focusing on the "edge" aspect of them), but it seems like the important "stuff" that makes them what they are is how they are deployed. I am REALLY going to show my ignorance here, but is there some chance that the idea is these "workers" are inten…
Its not a server, but the promise a server will be there if someone hits that endpoint. Anything client side is not changed.