InitView CORE-TERMUX Docs ←
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 next-app && core init next• Axios, Lucide React, Framer Motion
• Zod, React Hook Form, TanStack Query
• Zustand, Tailwind CSS
• Prettier with Tailwind plugin
• Turbopack support
core init reactReact + Vite with modern structure
cd react-app && core init react• Same deps as Next.js
• src/App.tsx entry point
• Tailwind CSS configured
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 projectpnpm dlx create-next-app@latest my-appcd my-appcore init next# React + Vite projectpnpm dlx create-vite@latest my-appcd my-appcore init react# Express APImkdir api && cd apipnpm init --yescore init express