Quick Start
Get a working PancakeJS app in under a minute.
1. Create Project
pnpm create universal-app my-app
cd my-app2. Install Dependencies
pnpm install3. Start Development
pnpm dev4. Open Inspector
Navigate to http://localhost:3000/_inspector
That's it! You now have a working universal AI app with tools and widgets.
What's Included
The starter template includes:
- Server setup with MCP and ChatGPT adapters pre-configured
- Example tools —
greet,calculate, and more - Example widget — Interactive hello world
- Inspector — Test your tools in both environments
- Hot reloading — Changes apply instantly
CLI Commands
# Development with hot reload
pnpm universal-apps dev
# Build for production
pnpm universal-apps build
# Run production build
pnpm universal-apps startNext Steps
- Full Getting Started Guide — Detailed walkthrough
- Tools vs Widgets — Understand the concepts
- Deploy to Cloudflare — Go to production