cloudflare-workers
スター11
フォーク1
更新日2026年4月5日 15:06
Cloudflare Workers edge computing platform
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Cloudflare Workers edge computing platform
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | cloudflare-workers |
| description | Cloudflare Workers edge computing platform |
| model | inherit |
| triggers | [{"file_pattern":"wrangler.toml"},{"file_pattern":"functions/**/*.ts"}] |
Build edge functions and applications on Cloudflare's global network.
wrangler devexport interface Env {
KV_NAMESPACE: KVNamespace;
DB: D1Database;
}
export default {
async fetch(
request: Request,
env: Env,
ctx: ExecutionContext
): Promise<Response> {
const url = new URL(request.url);
if (url.pathname === '/api/data') {
const data = await env.KV_NAMESPACE.get('key');
return Response.json({ data });
}
return new Response('Not Found', { status: 404 });
}
};
/cloudflare-hono - Hono framework on Workers/typescript - TypeScript fundamentalsBiome JavaScript/TypeScript linter and formatter
Hono lightweight web framework on Cloudflare Workers
Laravel PHP framework best practices
MySQL database best practices and query patterns
Next.js with React 19 App Router patterns
React with TypeScript best practices