Route code hot swap
Business code such as src/routes/ uses a targeted replacement path while the dev service process and connection state stay alive.
AI-FIRST / FULL-STACK NODE.JS
VextJS is an AI-first full-stack Node.js application framework for APIs and server-rendered React pages. Its conventions, scaffolding, typed contracts, OpenAPI, and machine-readable docs give AI coding assistants explicit inputs. AI-first does not mean a built-in LLM, Agent, RAG system, or inference runtime.
Hot Reload Pipeline
Vext chooses a reload strategy by change boundary: replace what can be hot-swapped, rebuild frontend assets when client files change, and cold start only when runtime boundaries change.
Business code such as src/routes/ uses a targeted replacement path while the dev service process and connection state stay alive.
Changes in services, models, locale resources, and similar structures trigger local reloads instead of pushing every edit to a cold restart.
Reloads the affected graphConfiguration, plugin, and middleware changes perform a cold start so runtime boundaries are rebuilt correctly without sacrificing safety.
Rebuilds runtime boundariesPerformance Stack
The homepage keeps the framework's real engineering surface visible: Native fast path, route-core, schema/OpenAPI, CLI, and production delivery capabilities.
The Native Adapter stays close to Node.js HTTP and keeps routing lightweight with route-core.
File routes, three-part route definitions, generated client contracts, and request context are organized around one Vext project model.
Declare parameter rules in route options so request validation and API documentation share one definition.
Create, develop, build, and start commands are gathered under the framework entry, so new projects can begin immediately.
request, validation, response, service, fetch, and related hooks support plugins and cross-cutting logic.
Rate limiting, structured errors, graceful shutdown, heartbeat monitoring, and multi-process deployment complete the delivery path.
Runtime Flexibility
Vext's main line is the framework's own API performance and developer experience. Adapters connect different HTTP ecosystems when needed, making migration and integration steadier.
Production Ready
The Vext documentation entry should let teams quickly judge whether it can enter real server-side projects: rate limiting, graceful shutdown, rolling restart, cluster, i18n, structured errors, and OpenAPI all need to be visible.
Next Steps