Install
Please confirm you are human
This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.
A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.
News
How to Setup Cloudflare Workers for Serverless Compute
3+ day, 19+ hour ago (484+ words) I’ve spent a long time looking for a decent yet simple cloud compute solution, and I think Cloudflare Workers solved my issue. I’ve been working on an API project that needs some persistent compute infrastructure and database access. Cloudflare’s generous…...
OpenAPI Spec & TypeScript Clients
3+ day, 22+ hour ago (224+ words) Machine-readable OpenAPI 3.1.0 spec for the Minds API. Generate typed TypeScript clients or pipe the JSON straight into your LLM. The Minds public API ships a machine-readable OpenAPI 3.1.0 spec. Build typed clients or give the JSON to an LLM for routes with…...
How we rebuilt Cloudflare Workers’ module registry for Node.js compatibility
4+ day, 21+ hour ago (902+ words) We’ve rewritten the module registry in workerd, the core open-source component of the Workers runtime, to be faster, more standards-compliant, and more closely aligned with Node.js' module registry. Over the past few years, we’ve been adding support for more…...
Building a Zero-Dependency Validation API on Cloudflare Workers
1+ week, 9+ hour ago (236+ words) I wanted a small side project that could actually run itself once shipped — no cron jobs to babysit, no upstream API to go down at 3am and take my uptime with it. That constraint led somewhere specific: an API that validates…...
Express.js-এ Zero-Boilerplate OpenAPI: Zod ও Fluent Routing দিয়ে এন্ড-টু-এন্ড টাইপ-সেফ ডকুমেন্টেশন ইঞ্জিন
1+ week, 2+ day ago (704+ words) কেমন হতো যদি আমরা অত্যন্ত ক্লিন ও ডিক্লারেটিভ উপায়ে রাউট ডেফিনিশনের সাথেই Swagger ডক্স যুক্ত করতে... Tagged with swagger,…...
How to Connect Codex to a Custom Responses API Provider and Verify the Route
1+ week, 6+ day ago (813+ words) Changing an API base URL is not enough to prove that Codex is using the provider you intended. Codex is an agentic client. It needs more than a model that can return text. The provider must support the Responses API…...
What I learned turning a ZIP file into an x402 API on Cloudflare Workers
2+ week, 16+ hour ago (838+ words) I wanted to sell a small digital product without building accounts, checkout pages, license-key emails, or a database of customers. The product was straightforward: a ZIP archive containing 300 English and Latin American Spanish game UI messages, plus JSON, CSV, Godot…...
Nuxt server routes with Hono RPC-style type safety, no rewrite
2+ week, 5+ day ago (780+ words) Here is a Nuxt route written the way the docs recommend, and the code that calls it: There is nothing wrong with this. h3 ships getValidatedRouterParams and readValidatedBody, they take any Standard Schema validator, and Nuxt's typed $fetch infers the success…...
Building a Production-Ready REST API Client with Dio
3+ week, 3+ day ago (143+ words) A robust client should define: Add Dio to pubspec.yaml. Do not expose DioException throughout the entire application. Now the rest of the application can reason about application failures rather than transport-specific details. Suppose the API returns: Cancel when the…...