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

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