Files
Flash5/flash-extensions/flash-ext-web-bundler/docs
Zakaria El OrcheandClaude Sonnet 5 8ece9975de feat(ext-web-bundler): add build-time asset scanning and static-frontend strategy
Introduces AssetDirectoryScanner, StaticFrontendStrategy, and WebBundlerBuild for
build-time asset discovery, plus config/docs updates for frontend-type resolution.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-11 00:22:26 +00:00
..

flash-web-bundler

flash-web-bundler integrates frontend tooling lifecycle into Flash with explicit, policy-driven behavior.

Quick Start

FlashApp.create(8080)
    .install(new WebBundlerExtension(
        WebBundlerConfig.builder()
            .webRoot(Path.of("web"))
            .basePath("/")
            .build()
    ))
    .start();

Operating Model

  • Dev: orchestrates frontend process lifecycle and health checks.
  • Prod: serves prebuilt assets from assetsSource with ETag/cache/compression support.
  • Route precedence: backend first, SPA fallback second (GET/HEAD).

See also: asset-sources.md.