### Create Vue TermUI Project with npm Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/docs/src/guide/quick-start.md Scaffolds a new Vue TermUI project using npm. This command installs and executes the official Vue TermUI project scaffolding tool, prompting for the project folder name and guiding through dependency installation and project startup. ```sh npm create vue-termui@latest ``` -------------------------------- ### Create Vue TermUI Project with pnpm Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/docs/src/guide/quick-start.md Scaffolds a new Vue TermUI project using pnpm. This command installs and executes the official Vue TermUI project scaffolding tool, prompting for the project folder name and guiding through dependency installation and project startup. ```sh pnpm create vue-termui ``` -------------------------------- ### Create Vue TermUI Project with yarn Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/docs/src/guide/quick-start.md Scaffolds a new Vue TermUI project using yarn. This command installs and executes the official Vue TermUI project scaffolding tool, prompting for the project folder name and guiding through dependency installation and project startup. ```sh yarn create vue-termui ``` -------------------------------- ### Scaffold Vue TermUI App with PNPM Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to create a new Vue TermUI project using PNPM. This command starts the scaffolding process with the PNPM package manager. Node.js version >=14.2.0 is a prerequisite. ```bash pnpm create vue-termui ``` -------------------------------- ### Scaffold Vue TermUI App with NPM Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to create a new Vue TermUI project using NPM. This command fetches the latest version of vue-termui and initiates the scaffolding process. It is recommended to have Node.js version >=14.2.0 installed. ```bash npm create vue-termui@latest ``` -------------------------------- ### Create Vue TermUI App using npm, yarn, or pnpm Source: https://github.com/vue-terminal/vue-termui/blob/main/README.md This snippet demonstrates how to create a new Vue TermUI project using various package managers. It utilizes the `create-vue-termui` command to scaffold a new TUI application. Ensure you have the respective package manager installed. ```bash # npm 6.x npm create vue-termui@latest my-vue-tui-app # npm 7+, extra double-dash is needed: npm create vue-termui@latest my-vue-tui-app # yarn yarn create vue-termui my-vue-tui-app # pnpm pnpm create vue-termui my-vue-tui-app ``` -------------------------------- ### Scaffold Vue TermUI App with Yarn Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to create a new Vue TermUI project using Yarn. This command initiates the scaffolding process using the Yarn package manager. Ensure Node.js version >=14.2.0 is installed. ```bash yarn create vue-termui ``` -------------------------------- ### Scaffold Vue TermUI App with Project Name (PNPM) Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to scaffold a Vue TermUI project in a specific directory using PNPM. This option allows you to directly specify the project's name. Ensure Node.js version >=14.2.0 is installed. ```bash pnpm create vue-termui my-vue-termui-app ``` -------------------------------- ### Scaffold Vue TermUI App with Project Name (NPM) Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to scaffold a Vue TermUI project in a specific directory using NPM. This allows you to name your project folder directly. Note the extra double-dash required for npm 7+. ```bash # npm 6.x npm create vue-termui@latest my-vue-termui-app # npm 7+, extra double-dash is needed: npm create vue-termui@latest -- my-vue-termui-app ``` -------------------------------- ### Scaffold Vue TermUI App with Project Name (Yarn) Source: https://github.com/vue-terminal/vue-termui/blob/main/packages/create-vue-termui/README.md Command to scaffold a Vue TermUI project in a specific directory using Yarn. This enables you to define the project name during the creation process. Node.js version >=14.2.0 is required. ```bash yarn create vue-termui my-vue-termui-app ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.