start app create

Bootstrap a new app

Bootstrap a new app

Usage

Terminal

start app create [entry]
ArgumentRequiredDescription
entryNoDirectory to create app in

Examples

Scaffold a new app

Terminal

mkdir my-weather-app && cd my-weather-app
start app create
✓ Created index.ts ✓ Created package.json

This generates the minimal app structure:

my-weather-app/ index.ts # app entry point package.json # npm package with start.chat metadata

Generated index.ts

import { createApp } from 'start/app'
export default createApp({
name: '',
version: '0.0.0',
description: '',
})