AppSurface Search
Guide

Web Projects

Source of truth

View source Edit this page

Last updated

This directory contains libraries and tools specifically for web application development within the AppSurface ecosystem.

Need install guidance first? Start with the AppSurface v0.1 package chooser, then come back here for the deeper web-surface breakdown.

Contents

JavaScript workspace

Browser assets in this directory are managed by the Web/ pnpm workspace. Run these commands from the repository root:

pnpm --dir Web install --frozen-lockfile
pnpm --dir Web run assets:typecheck
pnpm --dir Web run assets:test
pnpm --dir Web run assets:build
pnpm --dir Web run assets:verify

ForgeTrust.AppSurface.Docs/assets owns the TypeScript source for generated Docs browser assets. Generated package outputs remain committed under ForgeTrust.AppSurface.Docs/wwwroot/docs because Razor Class Library delivery, embedded fallback resources, route aliases, and static export all depend on those paths. Do not edit generated wwwroot/docs/search-client.js or wwwroot/docs/minisearch.min.js by hand; edit the source or pinned package version, rebuild, then verify.

ForgeTrust.RazorWire/assets owns the TypeScript source for the RazorWire browser runtime and island loader. Generated package outputs remain committed at ForgeTrust.RazorWire/wwwroot/razorwire/razorwire.js and ForgeTrust.RazorWire/wwwroot/razorwire/razorwire.islands.js so existing static-web-asset paths, embedded fallback resources, and package consumers keep working without migration. Use pnpm --dir Web run assets:razorwire:typecheck, assets:razorwire:test, assets:razorwire:build, and assets:razorwire:verify for focused runtime work; see RazorWire Runtime Contract Pipeline for ownership, diagnostics, and pack-time guard details.


🏠 Back to Root