Posts tagged “API”
5 articles · 9 per page
API
Accessibility
Animation
Architecture
Backend
Blog
Browser
CSS
Compiler
DX
Data fetching
Design Systems
DevOps
Docker
Frontend
GitHub
JavaScript
Markdown
Media
Monorepo
Next.js
Node.js
ORM
Observability
Performance
Pipeline
Playwright
PostgreSQL
Prisma
React
Real-time
Redis
Security
Serverless
State management
Stripe
Tailwind CSS
Testing
Tooling
Turborepo
TypeScript
Vitest
Web
i18n
•1 min read
Route Handlers in Next.js for webhooks and APIs
POST handlers, raw body parsing for signature verification, dynamic segments, edge vs Node runtime, and idempotent webhook processing.
Next.js
Node.js
API
•1 min read
Stripe webhooks: verification and idempotency
constructEvent, storing event IDs, out-of-order delivery, retries, and connecting webhooks to your domain model safely.
Stripe
Node.js
API
•1 min read
JWT access tokens and refresh rotation in SPAs
HttpOnly cookies vs memory, refresh token reuse detection, sliding sessions, and why BFFs still help browser security.
Security
React
API
•1 min read
tRPC: end-to-end types without GraphQL
Procedures, routers, context, Zod input validation, React Query integration, and boundaries between BFF tRPC and public REST.
TypeScript
API
React
•3 min read
A type-safe client from OpenAPI
openapi-typescript for paths and operations, Orval for React Query hooks, runtime validation with Zod, and CI gates so generated code never drifts from production APIs.
TypeScript
API
DX