whisper-vue-cli
v0.0.4
Published
vue3 cli
Downloads
8
Readme
whisper-vue-cli
A simple and fast CLI for generating Vue.js projects.
Installation
Install the CLI globally using npm:
npm install -g whisper-vue-cli(Note: You need to publish the package to npm first for this to work.)
Usage
Create a new project using the create command:
whisper-vue-cli create my-awesome-projectThis will launch an interactive prompt where you can configure your project.
Features
- Interactive Scaffolding: Easy-to-use interactive prompts for project setup.
- Vue Version Support: Supports both Vue 3 and Vue 2.
- TypeScript Ready: Generate projects with standard JavaScript or TypeScript.
- Out-of-the-Box Tooling:
- Routing: Vue Router
- State Management: Pinia (for Vue 3) or Vuex (for Vue 2)
- CSS Pre-processor: Sass
- HTTP Client: Axios (optional)
Commands
whisper-vue-cli create <project-name>
Creates a new Vue.js project.
Options:
-f, --force: Overwrite the target directory if it already exists.
whisper-vue-cli config [options]
Inspect and modify the CLI configuration (feature in development).
whisper-vue-cli ui
Start and open the GUI for managing projects (feature in development).
For Development
- Clone the repository:
git clone <your-repo-url> - Install dependencies:
npm install - Run the CLI locally:
node bin/index.js create test-project
