New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-fullstack-kit

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-fullstack-kit

Generate a production-ready full-stack monorepo starter kit

npmnpm
Version
1.0.2
Version published
Weekly downloads
1
-92.31%
Maintainers
1
Weekly downloads
 
Created
Source

create-fullstack-kit

A production-ready CLI tool to generate full-stack monorepo starter kits in under 5 minutes.

🚀 Quick Start

npx create-fullstack-kit myapp \
  --frontend next \
  --ui shadcn \
  --backend nest \
  --auth oauth \
  --db prisma \
  --package-manager pnpm

Or use interactive mode:

npx create-fullstack-kit

✨ Features

  • Next.js frontend with App Router, Tailwind CSS, and shadcn/ui
  • NestJS or Express backend with TypeScript
  • OAuth 2.0 authentication (Google, GitHub)
  • Prisma ORM for database management
  • Turborepo monorepo setup
  • Shared packages for UI components and auth logic
  • Production-ready configuration out of the box

📦 Generated Structure

myapp/
├── apps/
│   ├── web/               # Next.js App Router + Tailwind + shadcn/ui
│   └── api/               # NestJS OR Express backend
├── packages/
│   ├── ui/                # Shared shadcn components
│   ├── auth/              # Shared OAuth + JWT logic
│   ├── eslint-config/
│   └── tsconfig/
├── .env.example
├── package.json
├── turbo.json
├── pnpm-workspace.yaml
└── README.md

🛠️ Options

  • --frontend <type> - Frontend framework (default: next)
  • --ui <type> - UI library (default: shadcn)
  • --backend <type> - Backend framework (nest | express, default: nest)
  • --auth <type> - Authentication (default: oauth)
  • --db <type> - Database ORM (default: prisma)
  • --package-manager <type> - Package manager (pnpm | npm | yarn, default: pnpm)

📝 Requirements

  • Node.js >= 18.0.0
  • pnpm, npm, or yarn

🔧 Development

# Install dependencies
pnpm install

# Build
pnpm build

# Run in development
pnpm dev

📄 License

MIT

Keywords

cli

FAQs

Package last updated on 19 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts