🥞PancakeJS

Quick Start

Get a working PancakeJS app in under a minute.

1. Create Project

pnpm create universal-app my-app
cd my-app

2. Install Dependencies

pnpm install

3. Start Development

pnpm dev

4. 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 toolsgreet, 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 start

Next Steps

On this page