Every published module, all in one place.
View the Frameworks category page
6 modules
Frameworks → Next.js
App Router conventions: server-vs-client component defaults, safe env-variable exposure, and where data fetching and mutations belong.
by @markdowners
Frameworks → Node & Express
Express API conventions: router/controller/service layering, centralized error middleware, async handler wrapping, edge validation, env-based config, graceful shutdown, and keeping routes free of business logic.
Frameworks → React
Component and hook conventions for React apps: composition over inheritance, honest dependency arrays, state colocation, derived state, controlled forms, key discipline, and measured memoization.
Frameworks → Wordpress
WordPress development conventions: child themes over core edits, hooks over patching, sanitize on input and escape on output, proper script/style enqueueing, universal prefixing, custom post types versus pages, and update discipline.
Frameworks → Vue & Nuxt
Vue and Nuxt conventions: Composition API defaults, composables for shared logic, props-down-events-up data flow, computed over methods for derived data, single-file component structure, and Nuxt server routes and data fetching.
Frameworks → Python & Django
Django project conventions: fat models thin views, queryset optimization with select_related and prefetch_related, migrations discipline, forms/serializers for validation, per-environment settings, and app boundaries.