What is the difference between templates/cloudflare-workers
and templates/cloudflare
#9641
-
What is the difference between |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The latter use Cloudflare Pages, which is the recommended way to deploy full stack web applications. Workers and Pages are almost the same, but their usages are different to fit different jobs, e.g. Pages have CI integration, static files uploading, etc, but cannot use Cron jobs or email handler. Most functions, like KV, R2, D1, work in both products. It may change, because Cloudflare is unifying these two products. https://blog.cloudflare.com/pages-and-workers-are-converging-into-one-experience May this helps you! |
Beta Was this translation helpful? Give feedback.
The latter use Cloudflare Pages, which is the recommended way to deploy full stack web applications.
Workers and Pages are almost the same, but their usages are different to fit different jobs, e.g. Pages have CI integration, static files uploading, etc, but cannot use Cron jobs or email handler.
Most functions, like KV, R2, D1, work in both products.
It may change, because Cloudflare is unifying these two products.
https://blog.cloudflare.com/pages-and-workers-are-converging-into-one-experience
May this helps you!