Backend Development Skill
Production-ready backend development with modern technologies, best practices, and proven patterns.
When to Use
- Designing RESTful, GraphQL, or gRPC APIs
- Building authentication/authorization systems
- Optimizing database queries and schemas
- Implementing caching and performance optimization
- OWASP Top 10 security mitigation
- Designing scalable microservices
- Testing strategies (unit, integration, E2E)
- CI/CD pipelines and deployment
- Monitoring and debugging production systems
Technology Selection Guide
Languages: Node.js/TypeScript (full-stack), Python (data/ML), Go (concurrency), Rust (performance)
Frameworks: NestJS, FastAPI, Django, Express, Gin
Databases: PostgreSQL (ACID), MongoDB (flexible schema), Redis (caching)
APIs: REST (simple), GraphQL (flexible), gRPC (performance)
See: references/backend-technologies.md for detailed comparisons
Reference Navigation
Core Technologies:
backend-technologies.md - Languages, frameworks, databases, message queues, ORMs
backend-api-design.md - REST, GraphQL, gRPC patterns and best practices
Security & Authentication:
backend-security.md - OWASP Top 10 2025, security best practices, input validation
backend-authentication.md - OAuth 2.1, JWT, RBAC, MFA, session management
Performance & Architecture:
backend-performance.md - Caching, query optimization, load balancing, scaling
backend-architecture.md - Microservices, event-driven, CQRS, saga patterns
Quality & Operations:
backend-testing.md - Testing strategies, frameworks, tools, CI/CD testing
backend-code-quality.md - SOLID principles, design patterns, clean code
backend-devops.md - Docker, Kubernetes, deployment strategies, monitoring
backend-debugging.md - Debugging strategies, profiling, logging, production debugging
backend-mindset.md - Problem-solving, architectural thinking, collaboration
Key Best Practices (2025)
Security: Argon2id passwords, parameterized queries (98% SQL injection reduction), OAuth 2.1 + PKCE, rate limiting, security headers
Performance: Redis caching (90% DB load reduction), database indexing (30% I/O reduction), CDN (50%+ latency cut), connection pooling
Testing: 70-20-10 pyramid (unit-integration-E2E), Vitest 50% faster than Jest, contract testing for microservices, 83% migrations fail without tests
DevOps: Blue-green/canary deployments, feature flags (90% fewer failures), Kubernetes 84% adoption, Prometheus/Grafana monitoring, OpenTelemetry tracing
Quick Decision Matrix
| Need |
Choose |
| Fast development |
Node.js + NestJS |
| Data/ML integration |
Python + FastAPI |
| High concurrency |
Go + Gin |
| Max performance |
Rust + Axum |
| ACID transactions |
PostgreSQL |
| Flexible schema |
MongoDB |
| Caching |
Redis |
| Internal services |
gRPC |
| Public APIs |
GraphQL/REST |
| Real-time events |
Kafka |
Implementation Checklist
API: Choose style → Design schema → Validate input → Add auth → Rate limiting → Documentation → Error handling
Database: Choose DB → Design schema → Create indexes → Connection pooling → Migration strategy → Backup/restore → Test performance
Security: OWASP Top 10 → Parameterized queries → OAuth 2.1 + JWT → Security headers → Rate limiting → Input validation → Argon2id passwords
Testing: Unit 70% → Integration 20% → E2E 10% → Load tests → Migration tests → Contract tests (microservices)
Deployment: Docker → CI/CD → Blue-green/canary → Feature flags → Monitoring → Logging → Health checks
Resources
1---2name: backend-development-63description: Build robust backend systems with modern technologies (Node.js, Python, Go, Rust), frameworks (NestJS, FastAPI, Django), databases (PostgreSQL, MongoDB, Redis), APIs (REST, GraphQL, gRPC), authentication (OAuth 2.1, JWT), testing strategies, security best practices (OWASP Top 10), performance optimization, scalability patterns (microservices, caching, sharding), DevOps practices (Docker, Kubernetes, CI/CD), and monitoring. Use when designing APIs, implementing authentication, optimizing database queries, setting up CI/CD pipelines, handling security vulnerabilities, building microservices, or developing production-ready backend systems.4license: MIT5---6
7# Backend Development Skill
8
9Production-ready backend development with modern technologies, best practices, and proven patterns.
10
11## When to Use
12
13- Designing RESTful, GraphQL, or gRPC APIs
14- Building authentication/authorization systems
15- Optimizing database queries and schemas
16- Implementing caching and performance optimization
17- OWASP Top 10 security mitigation
18- Designing scalable microservices
19- Testing strategies (unit, integration, E2E)
20- CI/CD pipelines and deployment
21- Monitoring and debugging production systems
22
23## Technology Selection Guide
24
25**Languages:** Node.js/TypeScript (full-stack), Python (data/ML), Go (concurrency), Rust (performance)
26**Frameworks:** NestJS, FastAPI, Django, Express, Gin
27**Databases:** PostgreSQL (ACID), MongoDB (flexible schema), Redis (caching)
28**APIs:** REST (simple), GraphQL (flexible), gRPC (performance)
29
30See: `references/backend-technologies.md` for detailed comparisons
31
32## Reference Navigation
33
34**Core Technologies:**
35
36- `backend-technologies.md` - Languages, frameworks, databases, message queues, ORMs
37- `backend-api-design.md` - REST, GraphQL, gRPC patterns and best practices
38
39**Security & Authentication:**
40
41- `backend-security.md` - OWASP Top 10 2025, security best practices, input validation
42- `backend-authentication.md` - OAuth 2.1, JWT, RBAC, MFA, session management
43
44**Performance & Architecture:**
45
46- `backend-performance.md` - Caching, query optimization, load balancing, scaling
47- `backend-architecture.md` - Microservices, event-driven, CQRS, saga patterns
48
49**Quality & Operations:**
50
51- `backend-testing.md` - Testing strategies, frameworks, tools, CI/CD testing
52- `backend-code-quality.md` - SOLID principles, design patterns, clean code
53- `backend-devops.md` - Docker, Kubernetes, deployment strategies, monitoring
54- `backend-debugging.md` - Debugging strategies, profiling, logging, production debugging
55- `backend-mindset.md` - Problem-solving, architectural thinking, collaboration
56
57## Key Best Practices (2025)
58
59**Security:** Argon2id passwords, parameterized queries (98% SQL injection reduction), OAuth 2.1 + PKCE, rate limiting, security headers
60
61**Performance:** Redis caching (90% DB load reduction), database indexing (30% I/O reduction), CDN (50%+ latency cut), connection pooling
62
63**Testing:** 70-20-10 pyramid (unit-integration-E2E), Vitest 50% faster than Jest, contract testing for microservices, 83% migrations fail without tests
64
65**DevOps:** Blue-green/canary deployments, feature flags (90% fewer failures), Kubernetes 84% adoption, Prometheus/Grafana monitoring, OpenTelemetry tracing
66
67## Quick Decision Matrix
68
69| Need | Choose |
70| ------------------- | ---------------- |
71| Fast development | Node.js + NestJS |
72| Data/ML integration | Python + FastAPI |
73| High concurrency | Go + Gin |
74| Max performance | Rust + Axum |
75| ACID transactions | PostgreSQL |
76| Flexible schema | MongoDB |
77| Caching | Redis |
78| Internal services | gRPC |
79| Public APIs | GraphQL/REST |
80| Real-time events | Kafka |
81
82## Implementation Checklist
83
84**API:** Choose style → Design schema → Validate input → Add auth → Rate limiting → Documentation → Error handling
85
86**Database:** Choose DB → Design schema → Create indexes → Connection pooling → Migration strategy → Backup/restore → Test performance
87
88**Security:** OWASP Top 10 → Parameterized queries → OAuth 2.1 + JWT → Security headers → Rate limiting → Input validation → Argon2id passwords
89
90**Testing:** Unit 70% → Integration 20% → E2E 10% → Load tests → Migration tests → Contract tests (microservices)
91
92**Deployment:** Docker → CI/CD → Blue-green/canary → Feature flags → Monitoring → Logging → Health checks
93
94## Resources
95
96- OWASP Top 10: https://owasp.org/www-project-top-ten/
97- OAuth 2.1: https://oauth.net/2.1/
98- OpenTelemetry: https://opentelemetry.io/