Files
DevOps-Security-Agent-Skills/infrastructure/platforms/convex-backend/SKILL.md
T

827 B

name, description, license, metadata
name description license metadata
convex-backend Build reactive backends with Convex functions, schema validation, auth integration, and deployment workflows. MIT
author version
devops-skills 1.0

Convex Backend

Use Convex to build type-safe backend logic with realtime data sync.

Quick Start

npm install convex
npx convex dev
npx convex deploy

Implementation Tips

  • Define schema and validation before writing functions.
  • Keep mutations idempotent where possible.
  • Use auth identity checks in every privileged query/mutation.
  • Add indexing early for high-read collections.