create-miden
v1.1.0
Published
A CLI tool to quickly spin up Miden projects with Next.js
Downloads
11
Maintainers
Readme
create-miden
A CLI tool to quickly spin up Miden projects with Next.js, Miden WebClient and Miden Wallet Adapter
Highlight
- No need manual setup from scratch
- Prepared with common functionalities
Prerequisites
Before using create-miden, make sure you have the following installed:
- Node.js ≥ 16.0.0
- pnpm (recommended package manager)
Install pnpm globally if you don’t have it:
npm install -g pnpmVerify your setup:
node --version # should be 16.x or newer
pnpm --version🚀 Quick Start
npx create-midenYou’ll be prompted to:
- Enter a project name
- Choose template version (Stable by default)
Next Steps
After the project is created:
cd <your-project-name>
# install deps (recommended)
pnpm install
# start dev server
pnpm run devProject Structure
After creating a project, you'll get:
my-app/
├── src/
│ ├── app/ # Next.js app directory
│ ├── components/ # React components
│ └── ...
├── public/ # Static assets
├── package.json # Dependencies and scripts
├── tailwind.config.js # Tailwind configuration
├── tsconfig.json # TypeScript configuration
└── README.md # Project documentationPublishing
pnpm run build
pnpm publishLicense
MIT License - see LICENSE for details.
