create-tambo-app
v0.2.0
Published
Create a new Tambo application
Readme
create-tambo-app
A command-line tool to create new Tambo applications with zero configuration.
Overview
create-tambo-app is the official way to create new tambo applications. It provides a streamlined experience for setting up new tambo projects with all the necessary configurations and dependencies.
Requirements
- Node.js >= 20
- npm >= 10
Quick Start
You can create a new Tambo application using any of these methods:
# Using npm
npm create tambo-app@latest my-app
# Using yarn
yarn create tambo-app my-app
# Using pnpm
pnpm create tambo-app my-app
# Using npx directly
npx create-tambo-app my-appCommand Line Options
All arguments passed to create-tambo-app will be forwarded to the Tambo CLI's create-app command. For example:
npm create tambo-app@latest my-appWhat's Next?
After creating your application:
- Navigate to your project directory:
cd my-app - Start the development server:
npm run dev - Open your browser to see your new Tambo application
License
This project is part of the Tambo ecosystem. See the Tambo repository for license details.
