create-jsandy-app
v1.1.3
Published
A CLI tool for scaffolding new jSandy applications with interactive prompts
Readme
create-jsandy-app
A CLI tool for scaffolding new jSandy applications with interactive prompts.
Installation
npm create jsandy-app
# or
npx create-jsandy-app
# or
pnpm create jsandy-app
# or
yarn create jsandy-appUsage
Interactive Mode
Run the CLI without arguments to enter interactive mode:
npx create-jsandy-appQuick Start
You can also provide a project name directly:
npx create-jsandy-app my-appOptions
--noInstall- Skip automatic dependency installation
npx create-jsandy-app my-app --noInstallFeatures
- Interactive Setup: Guided prompts for project configuration
- Database ORM Support: Choose between no ORM or Drizzle ORM
- Multiple Database Providers: Support for PostgreSQL, Neon, and Vercel Postgres
- Automatic Dependency Installation: Detects your package manager and installs dependencies
- TypeScript Ready: Full TypeScript support out of the box
What's Included
The CLI generates a modern jSandy application with:
- Next.js 14+ with App Router
- TypeScript configuration
- TailwindCSS for styling
- ESLint and Prettier setup
- Hono API routes
- Optional Drizzle ORM with database providers
- Development and production build scripts
Development
To run the CLI locally:
bun install
bun run devTo build:
bun run build