Core Init
Configure existing projects with predefined dependencies and structure. Run inside your project directory.
cd my-project && core init <template>Commands
core initShow help
core init <template>Configure with specific template
Available Templates
core init nextNext.js with preconfigured dependencies
cd my-next-app && core init next• Axios, Lucide React, Framer Motion
• Zod, React Hook Form, TanStack Query
• Zustand, Tailwind CSS
• Prettier with Tailwind plugin
• DevCoreX landing page included
core init reactReact + Vite with modern structure
cd my-react-app && core init react• Same deps as Next.js
• Custom Button component
• DevCoreX landing page
• src/App.tsx entry point
core init nestNestJS with additional configuration
cd backend && core init nest• TypeORM, PostgreSQL
• JWT, Passport authentication
• Class validator/transformer
• Helmet, Cloudinary
core init expressExpress API with TypeScript + TypeORM
cd api && core init express• TypeScript with path aliases
• TypeORM with migrations
• JWT, bcryptjs, helmet
• Full project structure
Usage Examples
# Next.js projectnpx create-next-app@latest my-appcd my-appcore init next# React + Vite projectnpm create vite@latest my-app -- --template reactcd my-appcore init react# Express APImkdir api && cd apicore init express