What's New
stitch.createProject(title?) — Create projects directly from the domain layer
- Build-time version injection — SDK version sourced from
package.json at build time
- Publish readiness fixes — Removed stale
dist/package.json hazard, excluded integration tests from default vitest run
Install
npm install @google/stitch-sdk
Quick 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();