Clonifyx (v3.4.11) is a CLI tool that scaffolds a complete full-stack MERN authentication project in seconds. It generates a React (Vite) frontend with React Router, React Hook Form, Zod, Axios, and Tailwind CSS v4, and a Node.js/Express/Mongoose backend with pre-built auth flows (JWT or session-based), password recovery via seed phrases, and daily/monthly/total report endpoints. Unlike generic generators, Clonifyx includes a full DataTable UI for reports, protected routes, and a context-based auth state. It is released on npm with no known breaking changes in v3, targeting Node >=18 and pnpm users. The tool prompts for auth type, DB name, and secret keys during scaffolding.
npm install clonifyxNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Show how to scaffold a new MERN auth project using pnpm dlx and start both frontend and backend.
Install pnpm globally (npm i -g pnpm) or use `pnpm dlx` to scaffold.
Start MongoDB via `mongod` or use a cloud MongoDB URI in .env.
Check package.json after scaffolding and downgrade tailwindcss to ^3 if needed.
Replace with email-based reset or add additional security measures.
Pin version to 3.x in package.json.
Run `npx clonifyx my-app` or `pnpm dlx clonifyx my-app` instead.
Start MongoDB: `mongod` or update MONGO_URI in .env.
Run `pnpm install` inside the created frontend and backend directories.
Run `cd my-app/backend && pnpm install`.