@assembly-js/create-app
v1.0.4
Published
Create Assembly Apps with one command
Readme
@assembly-js/create-app
Scaffold a new Assembly App with one command.
Usage
npm create @assembly-js/app my-app
# or
npx @assembly-js/create-app my-app
# or
yarn create @assembly-js/app my-app
# or
pnpm create @assembly-js/app my-appThen follow the prompts.
If you don't specify a project name, you'll be prompted for one:
npm create @assembly-js/appWhat's Included
This CLI clones the custom-app-base repository, which includes:
- Next.js with App Router
- TypeScript
- Tailwind CSS
- @assembly-js/app-bridge for iframe communication
- @assembly-js/design-system for UI components
- @assembly-js/node-sdk for API access
Getting Started
After creating your app:
cd my-app
npm install
# Add ASSEMBLY_API_KEY to .env.local
npm run dev