Init

Core Init

Configure existing projects with predefined dependencies and structure. Run inside your project directory.

cd my-project && core init <template>
View CORE-TERMUX Docs ←

Commands

core init

Show help

core init <template>

Configure with specific template

Available Templates

core init next

Next.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 react

React + 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 nest

NestJS with additional configuration

cd backend && core init nest

TypeORM, PostgreSQL

JWT, Passport authentication

Class validator/transformer

Helmet, Cloudinary

core init express

Express 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