Claude Cursor Skill

js-backend-expert

Expert-level skill for Node.js 24+ (LTS), Bun 1.2+, and Deno 2.x backend development. Covers Express 5, Fastify 5, Hono v4, NestJS, Prisma 6, Drizzle ORM, WebSockets, BullMQ, OpenTelemetry, and microservices in English and Indonesian.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download roedyrustam-vibes-plug-skills_js-backend-expert-5a27cfb.zip · 4 KB
Part of roedyrustam/vibes-plug — 10 skills

Install

skills CLI npx skills add https://github.com/roedyrustam/vibes-plug/tree/main/skills/js-backend-expert
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install roedyrustam-vibes-plug@llmmart
Git git clone https://github.com/roedyrustam/vibes-plug.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole roedyrustam/vibes-plug collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

JS Backend Expert (Node.js 24 LTS / Bun 1.2 / Deno 2.x Edition)

English | Bahasa Indonesia


English

Description

Production-grade guidance for building fast, scalable, and resilient JavaScript/TypeScript backend APIs, microservices, and serverless functions across Node.js 24 (LTS), Bun 1.2+, and Deno 2.x. Covers high-throughput frameworks (Fastify 5, Hono, Express 5, NestJS), type-safe ORMs (Drizzle, Prisma 6), Hono RPC for type-safe full-stack communication, Edge Runtime patterns, WebSockets, BullMQ background jobs, graceful shutdown handling, and self-healing test pipelines.

Trigger Conditions

  • Bootstrapping or refactoring a Node.js, Bun, or Deno backend application or microservice.
  • Writing RESTful, GraphQL, WebSocket, or SSE (Server-Sent Events) API endpoints.
  • Developing web servers using Fastify 5, Hono, Express 5, or NestJS.
  • Building type-safe full-stack apps with Hono RPC or tRPC.
  • Deploying backend logic to Edge Runtimes (Cloudflare Workers, Vercel Edge).
  • Interacting with databases using Drizzle ORM, Prisma 6, or Kysely.
  • Setting up background job processing with BullMQ and Redis.
  • Implementing rate limiting, CORS, Content Security Policy (CSP), and JWT/Session authentication.
  • Writing backend tests using Vitest, Supertest, or Node's native node:test runner with automated self-healing.

Runtime Matrix (Node.js 24 vs Bun 1.2 vs Deno 2.x)

Feature / Runtime Node.js 24 (LTS) Bun 1.2+ Deno 2.x
Module Standard Native ESM / CJS Native ESM / CJS Native ESM
.env Loading Native --env-file Native Native
TypeScript Execution Native --experimental-strip-types / tsx Native (Zero-config) Native (Zero-config)
HTTP Server node:http / Fastify Bun.serve() / Hono Deno.serve() / Hono
Native WebSockets Built-in (WebSocket) Built-in (Bun.serve) Built-in (Deno.upgradeWebSocket)
Package Manager npm / pnpm bun (built-in) npm / jsr
Test Runner node:test / Vitest bun test deno test
Edge Deploy Vercel Serverless Railway / Fly.io Deno Deploy

Framework Guidance

1. Fastify 5 (High-Throughput & Schema Validation)

Use Fastify for performance-critical REST APIs. Always validate input using TypeBox or Zod:

import Fastify from 'fastify';
import { z } from 'zod';

const app = Fastify({ logger: true });

app.post('/api/users', async (request, reply) => {
  const bodySchema = z.object({
    email: z.string().email(),
    name: z.string().min(2),
  });
  const data = bodySchema.parse(request.body);
  return reply.status(201).send({ status: 'created', user: data });
});

2. Hono (Multi-Runtime & Hono RPC)

Use Hono for cross-runtime backends. The killer feature in 2026 is Hono RPC — end-to-end type-safe API calls without code generation:

// server.ts
import { Hono } from 'hono';
import { zValidator } from '@hono/zod-validator';
import { z } from 'zod';

const app = new Hono()
  .get('/health', (c) => c.json({ status: 'ok' }))
  .post(
    '/users',
    zValidator('json', z.object({ name: z.string(), email: z.string().email() })),
    async (c) => {
      const body = c.req.valid('json');
      const user = await db.user.create({ data: body });
      return c.json(user, 201);
    }
  );

export type AppType = typeof app;
export default app;

// client.ts — fully type-safe, no codegen needed
import { hc } from 'hono/client';
import type { AppType } from './server';

const client = hc<AppType>('http://localhost:3000');
const res = await client.users.$post({ json: { name: 'Alice', email: 'alice@example.com' } });
const user = await res.json(); // Fully typed!

3. NestJS (Enterprise Architecture)

Use NestJS for large-scale, enterprise-grade applications. It enforces a strict modular architecture (Controllers, Providers, Modules) inspired by Angular.

  • Dependency Injection: Leverage built-in DI for testable, loosely coupled services.
  • TypeScript First: Decorators (@Controller(), @Get()) provide clean, declarative routing.
  • Under the Hood: By default uses Express, but can be switched to Fastify for higher performance using platform-fastify.

4. Express 5

Express 5 natively catches rejected promises in async route handlers — eliminating the need for express-async-errors. While less opinionated than NestJS and slower than Fastify, its ecosystem is unparalleled. Ideal for teams migrating legacy apps.

5. Edge Runtime (Cloudflare Workers / Vercel Edge)

For ultra-low latency at the edge, use Hono (runs natively on all edge platforms):

// Cloudflare Worker
export default {
  async fetch(request: Request, env: Env): Promise<Response> {
    return app.fetch(request, env);
  }
};

Edge Runtime restrictions: No Node.js built-ins (fs, path), limited memory, no long-running processes. Use fetch, Web Crypto API, and Cloudflare KV/D1/R2.


Type-Safe Data Layer (Drizzle ORM & Prisma 6)

  • Drizzle ORM: Prefer for zero-overhead, SQL-like TypeScript query building in serverless/edge applications.
  • Prisma 6: Prefer for complex relational schema modeling, auto-generated TypeScript client, and rich prisma studio tooling.
  • Connection Pooling: Always use connection poolers (PgBouncer, Supavisor, Neon Hyperdrive) when deploying serverless handlers.

Background Jobs (BullMQ + Redis)

import { Queue, Worker } from 'bullmq';
import { Redis } from 'ioredis';

const connection = new Redis({ maxRetriesPerRequest: null });
const emailQueue = new Queue('email', { connection });

// Enqueue
await emailQueue.add('welcome-email', { userId: '123' }, { delay: 1000 });

// Worker
const worker = new Worker('email', async (job) => {
  await sendWelcomeEmail(job.data.userId);
}, { connection, concurrency: 5 });

Graceful Shutdown & Resilience

Never terminate the process abruptly. Clean up database pools, HTTP listeners, and Redis queues:

const shutdown = async (signal: string) => {
  console.log(`Received ${signal}. Shutting down gracefully...`);
  await server.close();
  await dbPool.end();
  await worker.close();
  process.exit(0);
};

process.on('SIGTERM', () => shutdown('SIGTERM'));
process.on('SIGINT', () => shutdown('SIGINT'));

Orchestration & Integration

  • Upstream Orchestrator: Executes during Phase 4 of zero-to-prod-orchestrator or after backend decision lock in brainstorming.
  • API Contracts & Specs: Delegate OpenAPI / GraphQL / gRPC design to api-design-expert and TypeScript type generation to typescript-expert.
  • Database & ORM Layer: Delegate schema design, migrations, and pooling to database-orm-expert.
  • Authentication & Security: Delegate JWT/OAuth2 flows to authentication-identity-expert and environment secret security to zero-trust-secret-vault.
  • Durable Async Jobs: Delegate fault-tolerant long-running workflows to async-queue-temporal-expert.
  • Error Resilience: Implement error handling patterns and circuit breakers via error-resilience-expert.
  • Automated Testing & Self-Healing: Delegate test suites to e2e-testing-expert and autonomous terminal stack trace fixing to autonomous-tdd-debugger. Update change logs via prd-architect.

Bahasa Indonesia

Deskripsi

Panduan tingkat produksi untuk membangun API backend JavaScript/TypeScript yang cepat, skalabel, dan tangguh di lingkungan Node.js 24 LTS, Bun 1.2+, dan Deno 2.x. Mencakup framework berkinerja tinggi (Fastify 5, Hono v4, Express 5, NestJS), ORM type-safe (Drizzle, Prisma 6), Hono RPC untuk komunikasi full-stack type-safe, pola Edge Runtime, WebSocket, background jobs (BullMQ), OpenTelemetry, penanganan graceful shutdown, dan pipeline pengujian self-healing.

Kondisi Pemicu

  • Merancang atau merefaktor aplikasi backend Node.js, Bun, atau Deno.
  • Menulis endpoint RESTful, GraphQL, WebSocket, atau SSE.
  • Membangun web server dengan Fastify 5, Hono, Express 5, atau NestJS.
  • Membangun aplikasi full-stack type-safe dengan Hono RPC atau tRPC.
  • Men-deploy logika backend ke Edge Runtime (Cloudflare Workers, Vercel Edge).
  • Berinteraksi dengan database menggunakan Drizzle ORM, Prisma 6, atau Kysely.
  • Mengatur background job dengan BullMQ dan Redis.

Matriks Runtime

Node.js 24 sebagai LTS terbaru, Bun 1.2+ untuk performa maksimal dan zero-config TypeScript, Deno 2.x untuk keamanan bawaan dan kompatibilitas npm.

Panduan Framework

1. Fastify 5 — Kinerja Tinggi & Validasi Skema

Gunakan untuk REST API dengan throughput tinggi. Selalu validasi input menggunakan TypeBox atau Zod.

2. Hono & Hono RPC — Multi-Runtime & Type-Safe Full-Stack

Hono berjalan di Node.js, Bun, Cloudflare Workers, dan Deno. Hono RPC adalah fitur unggulan 2026 — panggilan API end-to-end yang fully type-safe tanpa code generation. Klien mendapatkan tipe yang tepat dari definisi server secara otomatis.

3. NestJS — Arsitektur Enterprise

Gunakan NestJS untuk aplikasi skala besar tingkat enterprise. NestJS memaksakan arsitektur modular yang ketat dengan Dependency Injection dan Decorators. NestJS menggunakan Express secara bawaan, namun dapat dialihkan ke Fastify untuk performa lebih tinggi.

4. Express 5

Express 5 otomatis menangkap rejected promises di async route handler tanpa butuh library tambahan. Sangat cocok untuk tim yang sudah familiar dengan ekosistem Express.

5. Edge Runtime (Cloudflare Workers / Vercel Edge)

Gunakan Hono untuk latensi ultra-rendah di edge. Batasan edge: tanpa built-in Node.js (fs, path), memori terbatas, tanpa proses long-running. Gunakan fetch, Web Crypto API, dan Cloudflare KV/D1/R2.

Lapisan Data Type-Safe

  • Drizzle ORM: Ideal untuk serverless/edge dengan query bergaya SQL dan zero overhead.
  • Prisma 6: Ideal untuk pemodelan skema relasional kompleks dan tooling prisma studio yang kaya.
  • Connection Pooling: Wajib di lingkungan serverless — gunakan PgBouncer, Supavisor, atau Neon Hyperdrive.

Background Jobs (BullMQ + Redis)

Gunakan BullMQ dengan Redis untuk pemrosesan tugas latar belakang yang andal dengan retry otomatis, delay, dan konkurensi yang dapat dikonfigurasi.

Graceful Shutdown

Jangan hentikan proses secara mendadak. Bersihkan connection pool, HTTP server, dan worker queue sebelum keluar.

Integrasi Orkestrasi

  • Orkestrator Utama: Dieksekusi pada Fase 4 dari zero-to-prod-orchestrator atau setelah finalisasi backend di brainstorming.
  • Kontrak & Spesifikasi API: Delegasikan desain OpenAPI / GraphQL / gRPC ke api-design-expert dan tipe TypeScript ke typescript-expert.
  • Database & ORM: Delegasikan desain skema, migrasi, dan pooling ke database-orm-expert.
  • Autentikasi & Keamanan: Delegasikan alur JWT/OAuth2 ke authentication-identity-expert dan keamanan kredensial ke zero-trust-secret-vault.
  • Pekerjaan Asinkron Tahan Gagal: Delegasikan workflow kompleks ke async-queue-temporal-expert.
  • Ketahanan Error: Terapkan pola penanganan error dan circuit breaker melalui error-resilience-expert.
  • Pengujian & Self-Healing: Delegasikan pengujian integrasi ke e2e-testing-expert dan perbaikan otomatis stack trace error terminal ke autonomous-tdd-debugger. Perbarui catatan perubahan via prd-architect.
Files (vibes-plug)
  • SKILL.md 11.6 KB
    ---
    name: js-backend-expert
    description: "Expert-level skill for Node.js 24+ (LTS), Bun 1.2+, and Deno 2.x backend development. Covers Express 5, Fastify 5, Hono v4, NestJS, Prisma 6, Drizzle ORM, WebSockets, BullMQ, OpenTelemetry, and microservices in English and Indonesian."
    author: "Roedy Rustam"
    version: "4.0.0"
    ---
    
    # JS Backend Expert (Node.js 24 LTS / Bun 1.2 / Deno 2.x Edition)
    
    [English](#english) | [Bahasa Indonesia](#bahasa-indonesia)
    
    ---
    
    <a name="english"></a>
    ## English
    
    ### Description
    Production-grade guidance for building fast, scalable, and resilient JavaScript/TypeScript backend APIs, microservices, and serverless functions across **Node.js 24 (LTS)**, **Bun 1.2+**, and **Deno 2.x**. Covers high-throughput frameworks (Fastify 5, Hono, Express 5, NestJS), type-safe ORMs (Drizzle, Prisma 6), **Hono RPC** for type-safe full-stack communication, Edge Runtime patterns, WebSockets, BullMQ background jobs, graceful shutdown handling, and self-healing test pipelines.
    
    ### Trigger Conditions
    - Bootstrapping or refactoring a Node.js, Bun, or Deno backend application or microservice.
    - Writing RESTful, GraphQL, WebSocket, or SSE (Server-Sent Events) API endpoints.
    - Developing web servers using **Fastify 5**, **Hono**, **Express 5**, or **NestJS**.
    - Building type-safe full-stack apps with **Hono RPC** or **tRPC**.
    - Deploying backend logic to Edge Runtimes (Cloudflare Workers, Vercel Edge).
    - Interacting with databases using **Drizzle ORM**, **Prisma 6**, or **Kysely**.
    - Setting up background job processing with **BullMQ** and **Redis**.
    - Implementing rate limiting, CORS, Content Security Policy (CSP), and JWT/Session authentication.
    - Writing backend tests using **Vitest**, **Supertest**, or Node's native `node:test` runner with automated self-healing.
    
    ### Runtime Matrix (Node.js 24 vs Bun 1.2 vs Deno 2.x)
    
    | Feature / Runtime | Node.js 24 (LTS) | Bun 1.2+ | Deno 2.x |
    |---|---|---|---|
    | Module Standard | Native ESM / CJS | Native ESM / CJS | Native ESM |
    | `.env` Loading | Native `--env-file` | Native | Native |
    | TypeScript Execution | Native `--experimental-strip-types` / `tsx` | Native (Zero-config) | Native (Zero-config) |
    | HTTP Server | `node:http` / `Fastify` | `Bun.serve()` / `Hono` | `Deno.serve()` / `Hono` |
    | Native WebSockets | Built-in (`WebSocket`) | Built-in (`Bun.serve`) | Built-in (`Deno.upgradeWebSocket`) |
    | Package Manager | npm / pnpm | bun (built-in) | npm / jsr |
    | Test Runner | `node:test` / Vitest | `bun test` | `deno test` |
    | Edge Deploy | Vercel Serverless | Railway / Fly.io | Deno Deploy |
    
    ### Framework Guidance
    
    #### 1. Fastify 5 (High-Throughput & Schema Validation)
    Use Fastify for performance-critical REST APIs. Always validate input using **TypeBox** or **Zod**:
    ```typescript
    import Fastify from 'fastify';
    import { z } from 'zod';
    
    const app = Fastify({ logger: true });
    
    app.post('/api/users', async (request, reply) => {
      const bodySchema = z.object({
        email: z.string().email(),
        name: z.string().min(2),
      });
      const data = bodySchema.parse(request.body);
      return reply.status(201).send({ status: 'created', user: data });
    });
    ```
    
    #### 2. Hono (Multi-Runtime & Hono RPC)
    Use Hono for cross-runtime backends. The killer feature in 2026 is **Hono RPC** — end-to-end type-safe API calls without code generation:
    ```typescript
    // server.ts
    import { Hono } from 'hono';
    import { zValidator } from '@hono/zod-validator';
    import { z } from 'zod';
    
    const app = new Hono()
      .get('/health', (c) => c.json({ status: 'ok' }))
      .post(
        '/users',
        zValidator('json', z.object({ name: z.string(), email: z.string().email() })),
        async (c) => {
          const body = c.req.valid('json');
          const user = await db.user.create({ data: body });
          return c.json(user, 201);
        }
      );
    
    export type AppType = typeof app;
    export default app;
    
    // client.ts — fully type-safe, no codegen needed
    import { hc } from 'hono/client';
    import type { AppType } from './server';
    
    const client = hc<AppType>('http://localhost:3000');
    const res = await client.users.$post({ json: { name: 'Alice', email: 'alice@example.com' } });
    const user = await res.json(); // Fully typed!
    ```
    
    #### 3. NestJS (Enterprise Architecture)
    Use NestJS for large-scale, enterprise-grade applications. It enforces a strict modular architecture (Controllers, Providers, Modules) inspired by Angular.
    - **Dependency Injection**: Leverage built-in DI for testable, loosely coupled services.
    - **TypeScript First**: Decorators (`@Controller()`, `@Get()`) provide clean, declarative routing.
    - **Under the Hood**: By default uses Express, but can be switched to Fastify for higher performance using `platform-fastify`.
    
    #### 4. Express 5
    Express 5 natively catches rejected promises in async route handlers — eliminating the need for `express-async-errors`. While less opinionated than NestJS and slower than Fastify, its ecosystem is unparalleled. Ideal for teams migrating legacy apps.
    
    #### 5. Edge Runtime (Cloudflare Workers / Vercel Edge)
    For ultra-low latency at the edge, use **Hono** (runs natively on all edge platforms):
    ```typescript
    // Cloudflare Worker
    export default {
      async fetch(request: Request, env: Env): Promise<Response> {
        return app.fetch(request, env);
      }
    };
    ```
    Edge Runtime restrictions: No Node.js built-ins (`fs`, `path`), limited memory, no long-running processes. Use `fetch`, Web Crypto API, and Cloudflare KV/D1/R2.
    
    ---
    
    ### Type-Safe Data Layer (Drizzle ORM & Prisma 6)
    - **Drizzle ORM**: Prefer for zero-overhead, SQL-like TypeScript query building in serverless/edge applications.
    - **Prisma 6**: Prefer for complex relational schema modeling, auto-generated TypeScript client, and rich `prisma studio` tooling.
    - **Connection Pooling**: Always use connection poolers (PgBouncer, Supavisor, Neon Hyperdrive) when deploying serverless handlers.
    
    ### Background Jobs (BullMQ + Redis)
    ```typescript
    import { Queue, Worker } from 'bullmq';
    import { Redis } from 'ioredis';
    
    const connection = new Redis({ maxRetriesPerRequest: null });
    const emailQueue = new Queue('email', { connection });
    
    // Enqueue
    await emailQueue.add('welcome-email', { userId: '123' }, { delay: 1000 });
    
    // Worker
    const worker = new Worker('email', async (job) => {
      await sendWelcomeEmail(job.data.userId);
    }, { connection, concurrency: 5 });
    ```
    
    ### Graceful Shutdown & Resilience
    Never terminate the process abruptly. Clean up database pools, HTTP listeners, and Redis queues:
    ```typescript
    const shutdown = async (signal: string) => {
      console.log(`Received ${signal}. Shutting down gracefully...`);
      await server.close();
      await dbPool.end();
      await worker.close();
      process.exit(0);
    };
    
    process.on('SIGTERM', () => shutdown('SIGTERM'));
    process.on('SIGINT', () => shutdown('SIGINT'));
    ```
    
    ## Orchestration & Integration
    - **Upstream Orchestrator**: Executes during **Phase 4** of `zero-to-prod-orchestrator` or after backend decision lock in `brainstorming`.
    - **API Contracts & Specs**: Delegate OpenAPI / GraphQL / gRPC design to `api-design-expert` and TypeScript type generation to `typescript-expert`.
    - **Database & ORM Layer**: Delegate schema design, migrations, and pooling to `database-orm-expert`.
    - **Authentication & Security**: Delegate JWT/OAuth2 flows to `authentication-identity-expert` and environment secret security to `zero-trust-secret-vault`.
    - **Durable Async Jobs**: Delegate fault-tolerant long-running workflows to `async-queue-temporal-expert`.
    - **Error Resilience**: Implement error handling patterns and circuit breakers via `error-resilience-expert`.
    - **Automated Testing & Self-Healing**: Delegate test suites to `e2e-testing-expert` and autonomous terminal stack trace fixing to `autonomous-tdd-debugger`. Update change logs via `prd-architect`.
    
    ---
    
    <a name="bahasa-indonesia"></a>
    ## Bahasa Indonesia
    
    ### Deskripsi
    Panduan tingkat produksi untuk membangun API backend JavaScript/TypeScript yang cepat, skalabel, dan tangguh di lingkungan **Node.js 24 LTS**, **Bun 1.2+**, dan **Deno 2.x**. Mencakup framework berkinerja tinggi (Fastify 5, Hono v4, Express 5, NestJS), ORM type-safe (Drizzle, Prisma 6), **Hono RPC** untuk komunikasi full-stack type-safe, pola Edge Runtime, WebSocket, background jobs (BullMQ), OpenTelemetry, penanganan *graceful shutdown*, dan pipeline pengujian self-healing.
    
    ### Kondisi Pemicu
    - Merancang atau merefaktor aplikasi backend Node.js, Bun, atau Deno.
    - Menulis endpoint RESTful, GraphQL, WebSocket, atau SSE.
    - Membangun web server dengan Fastify 5, Hono, Express 5, atau NestJS.
    - Membangun aplikasi full-stack type-safe dengan **Hono RPC** atau tRPC.
    - Men-deploy logika backend ke Edge Runtime (Cloudflare Workers, Vercel Edge).
    - Berinteraksi dengan database menggunakan Drizzle ORM, Prisma 6, atau Kysely.
    - Mengatur background job dengan BullMQ dan Redis.
    
    ### Matriks Runtime
    Node.js 24 sebagai LTS terbaru, Bun 1.2+ untuk performa maksimal dan zero-config TypeScript, Deno 2.x untuk keamanan bawaan dan kompatibilitas npm.
    
    ### Panduan Framework
    
    #### 1. Fastify 5 — Kinerja Tinggi & Validasi Skema
    Gunakan untuk REST API dengan throughput tinggi. Selalu validasi input menggunakan TypeBox atau Zod.
    
    #### 2. Hono & Hono RPC — Multi-Runtime & Type-Safe Full-Stack
    Hono berjalan di Node.js, Bun, Cloudflare Workers, dan Deno. **Hono RPC** adalah fitur unggulan 2026 — panggilan API end-to-end yang fully type-safe tanpa code generation. Klien mendapatkan tipe yang tepat dari definisi server secara otomatis.
    
    #### 3. NestJS — Arsitektur Enterprise
    Gunakan NestJS untuk aplikasi skala besar tingkat *enterprise*. NestJS memaksakan arsitektur modular yang ketat dengan Dependency Injection dan Decorators. NestJS menggunakan Express secara bawaan, namun dapat dialihkan ke Fastify untuk performa lebih tinggi.
    
    #### 4. Express 5
    Express 5 otomatis menangkap rejected promises di async route handler tanpa butuh library tambahan. Sangat cocok untuk tim yang sudah familiar dengan ekosistem Express.
    
    #### 5. Edge Runtime (Cloudflare Workers / Vercel Edge)
    Gunakan Hono untuk latensi ultra-rendah di edge. Batasan edge: tanpa built-in Node.js (`fs`, `path`), memori terbatas, tanpa proses long-running. Gunakan `fetch`, Web Crypto API, dan Cloudflare KV/D1/R2.
    
    ### Lapisan Data Type-Safe
    - **Drizzle ORM**: Ideal untuk serverless/edge dengan query bergaya SQL dan zero overhead.
    - **Prisma 6**: Ideal untuk pemodelan skema relasional kompleks dan tooling prisma studio yang kaya.
    - **Connection Pooling**: Wajib di lingkungan serverless — gunakan PgBouncer, Supavisor, atau Neon Hyperdrive.
    
    ### Background Jobs (BullMQ + Redis)
    Gunakan BullMQ dengan Redis untuk pemrosesan tugas latar belakang yang andal dengan retry otomatis, delay, dan konkurensi yang dapat dikonfigurasi.
    
    ### Graceful Shutdown
    Jangan hentikan proses secara mendadak. Bersihkan connection pool, HTTP server, dan worker queue sebelum keluar.
    
    ## Integrasi Orkestrasi
    - **Orkestrator Utama**: Dieksekusi pada **Fase 4** dari `zero-to-prod-orchestrator` atau setelah finalisasi backend di `brainstorming`.
    - **Kontrak & Spesifikasi API**: Delegasikan desain OpenAPI / GraphQL / gRPC ke `api-design-expert` dan tipe TypeScript ke `typescript-expert`.
    - **Database & ORM**: Delegasikan desain skema, migrasi, dan pooling ke `database-orm-expert`.
    - **Autentikasi & Keamanan**: Delegasikan alur JWT/OAuth2 ke `authentication-identity-expert` dan keamanan kredensial ke `zero-trust-secret-vault`.
    - **Pekerjaan Asinkron Tahan Gagal**: Delegasikan workflow kompleks ke `async-queue-temporal-expert`.
    - **Ketahanan Error**: Terapkan pola penanganan error dan circuit breaker melalui `error-resilience-expert`.
    - **Pengujian & Self-Healing**: Delegasikan pengujian integrasi ke `e2e-testing-expert` dan perbaikan otomatis stack trace error terminal ke `autonomous-tdd-debugger`. Perbarui catatan perubahan via `prd-architect`.

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related