What's New
stitch.createProject(title?)— Create projects directly from the domain layer- Build-time version injection — SDK version sourced from
package.jsonat build time - Publish readiness fixes — Removed stale
dist/package.jsonhazard, excluded integration tests from defaultvitest run
Install
npm install @google/stitch-sdkQuick Start
import { stitch } from '@google/stitch-sdk';
const project = await stitch.createProject('My Dashboard');
const screen = await project.generate('A settings page');
const html = await screen.getHtml();