#180
C+
Rank #229
Microfeed
A lightweight, self-hostable content/feed CMS for podcasts, newsletters, and blogs built entirely on Cloudflare Workers. Its standout trait is a truly serverless architecture (Workers + KV + R2 + D1) that eliminates traditional server ops at the cost of platform lock-in.
54.3
/ 100
β Full Stack
JavaScript/TypeScript running entirely on Cloudflare Workers, with Cloudflare KV for key-value data, R2 for media storage, and D1 (SQLite at the edge) for structured data. No traditional server process exists β everything is edge functions.
π Scaling Analysis
Scales infinitely within Cloudflare's edge network with zero ops burden, but that scalability is entirely borrowed from the platform rather than the app's own design β it cannot be self-hosted at scale on arbitrary infrastructure like Nexlayer's Kubernetes cluster without significant rearchitecture.
π Running on Nexlayer
Poor fit for Nexlayer's pod model since it has no container image or standalone server binary β it expects the Cloudflare Workers runtime, not a `<podName>.pod:<port>` addressable process. Porting it would require rewriting the KV/R2/D1 calls against a Postgres/Redis/object-storage pod, which is effectively a rewrite rather than a deploy.