Registry / devops / clonifyx

clonifyx

JSON →
library3.4.11jsnpmunverified

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 clonifyx
INSTALL
IMPORT
SIG · CLONIFYX
C
clonifyx
devopsjavascriptv3.4.11
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default (CLI entry point)
npx clonifyx my-app
clonifyx my-app (requires global install)
The package is a CLI; using npx or pnpm dlx avoids global install.
global install & run
pnpm add -g clonifyx && clonifyx my-app
npm install -g clonifyx (pnpm recommended)
The README only shows pnpm add -g; npm global install may work but is not documented.
API types (if any)
import { User } from './generated/types';
import { User } from 'clonifyx'; (no package export)
Generated types exist inside the scaffolded project, not from the package.

Show how to scaffold a new MERN auth project using pnpm dlx and start both frontend and backend.

# Prerequisites: Node >=18, MongoDB running locally, pnpm pnpm dlx clonifyx my-app cd my-app/backend # Set .env: MONGO_URI=mongodb://127.0.0.1:27017/mydb, JWT_SECRET=your-secret pnpm install pnpm dev & cd ../frontend pnpm install pnpm dev
Debug
Known issues
gotchapnpm is required as the package manager for the scaffolded project; npm or yarn may cause issues.
fix
Install pnpm globally (npm i -g pnpm) or use `pnpm dlx` to scaffold.
affects: >=3.0
gotchaMongoDB must be running locally; the scaffolded backend will crash if MongoDB is not available.
fix
Start MongoDB via `mongod` or use a cloud MongoDB URI in .env.
affects: >=3.0
deprecatedTailwind CSS v4 is scaffolded by default; v3 users must manually downgrade.
fix
Check package.json after scaffolding and downgrade tailwindcss to ^3 if needed.
affects: >=3.4
gotchaThe seed-based password recovery feature may not be secure for production; review implementation.
fix
Replace with email-based reset or add additional security measures.
affects: >=3.0
breakingNo breaking changes reported from v2 to v3; breaking changes may occur in v4.
fix
Pin version to 3.x in package.json.
affects: ~3.0
Errors
Common errors & fixes
command not found: clonifyx
Package not installed globally or npx not used.
fix
Run `npx clonifyx my-app` or `pnpm dlx clonifyx my-app` instead.
Error: connect ECONNREFUSED 127.0.0.1:27017
MongoDB is not running or connection string is wrong.
fix
Start MongoDB: `mongod` or update MONGO_URI in .env.
zod@3.x not found
Dependencies not installed.
fix
Run `pnpm install` inside the created frontend and backend directories.
Cannot find module 'express'
Dependencies not installed in backend.
fix
Run `cd my-app/backend && pnpm install`.
Upgrade
Version history
3.4.11latest on npm
Audit
Dependencies
commanderrequiredCLI argument parsing
inquirerrequiredInteractive prompts
Agent activity
4 hits · last 30 days
node
4
Resources
clonifyx — npm install clonifyx · libregistry