Skip to content

v0.0.2

Choose a tag to compare

@davideast davideast released this 12 Mar 21:39
· 17 commits to main since this release
a7aa2ef

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();