Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmeenan/cf-workers
Collection of Cloudflare Workers
https://github.com/pmeenan/cf-workers
Last synced: about 1 month ago
JSON representation
Collection of Cloudflare Workers
- Host: GitHub
- URL: https://github.com/pmeenan/cf-workers
- Owner: pmeenan
- License: mit
- Created: 2018-12-10T15:25:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T14:14:45.000Z (over 5 years ago)
- Last Synced: 2024-10-30T07:46:34.090Z (3 months ago)
- Language: JavaScript
- Size: 150 KB
- Stars: 155
- Watchers: 21
- Forks: 23
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cloudflare - Performance Optimized Workers - Collection of worker scripts, generally focused on performance optimizations. (Workers / Recipes)
- awesome-cloudflare - Performance Optimized Workers - Collection of worker scripts, generally focused on performance optimizations. (Workers / Recipes)
README
# Cloudflare Workers
Collection of Cloudflare Worker scripts, generally focused on performance optimizations.* [streaming-optimizations](streaming-optimizations) - Combined set of scripts to operate on streaming responses. This is a subset of the optimizations that doesn't include any workers that need the full HTML response to work.
* [optimization-pack](optimization-pack) - Collection of all optimizations in a single worker. This operates on blocking responses and processes the full HTML with no streaming which can cause pages that rely on early flushing to perform slower (rare but worth being aware of).
* [cache-bypass-on-cookie](cache-bypass-on-cookie) - Bypass an upstream cache (including the Cloudflare cache) for requests with specific cookies or in specific URL paths.