create-float
v2.2.8
Published
Create Float.js applications with one command
Readme
create-float
The easiest way to get started with Float.js.
Usage
npx create-float my-app
cd my-app
npx float devThat's it! 🚀
What it does
create-float scaffolds a new Float.js application with:
- ✅ Pre-configured project structure
- ✅
@float.js/coreautomatically installed - ✅ React 19 support
- ✅ TypeScript configuration
- ✅ Example pages and routes
- ✅ Ready for development
Options
# Create a new project
npx create-float my-app
# Use a specific package manager
npx create-float my-app --npm
npx create-float my-app --yarn
npx create-float my-app --pnpm
npx create-float my-app --bunWhat's included
my-app/
├── app/
│ ├── page.tsx # Home page
│ └── api/
│ └── hello/
│ └── route.ts # API endpoint
├── public/ # Static assets
├── package.json
└── tsconfig.jsonNext steps
After creating your app:
# Start development server
npx float dev
# Build for production
npx float build
# Start production server
npx float startLearn more
Requirements
- Node.js 18+
License
MIT
