create-mirogo
v0.0.12
Published
personal development cli tool
Readme
create-mirogo
under construction!!!
Scaffolding Your First Mirogo Project
With NPM:
$ npm create mirogoWith Yarn:
$ yarn create mirogoWith PNPM:
$ pnpm create mirogoWith Bun:
$ bun create mirogoThen follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run:
# npm 7+, extra double-dash is needed:
npm create vite@latest my-vue-app -- --template vue
# yarn
yarn create vite my-vue-app --template vue
# pnpm
pnpm create vite my-vue-app --template vue
# Bun
bun create vite my-vue-app --template vue