|
1 | 1 | <p align="center">
|
2 |
| - <img align="center" src="https://raw.githubusercontent.com/selemondev/create-vue-next/master/src/icon/create-vue-next.png" height="96" /> |
3 |
| - <h1 align="center"> |
4 |
| - create-vue-next |
5 |
| - </h1> |
| 2 | + <img align="center" src="https://raw.githubusercontent.com/selemondev/create-vue-next/master/image/create-vue-next.png" height="96" /> |
6 | 3 | </p>
|
7 | 4 |
|
8 |
| -## Create Vue Next CLI ✨ |
| 5 | +## Create Vue Next ⚡ |
9 | 6 |
|
10 |
| -A CLI tool powered by Vite to scaffold Vue 3 projects without wasting time!. |
| 7 | +The Next Generation Vue Scaffolding Tool 🛠️ |
11 | 8 |
|
12 |
| -## Usage |
| 9 | +## Usage |
13 | 10 |
|
14 |
| -### npx |
| 11 | +### npx |
15 | 12 |
|
16 | 13 | ```bash
|
17 |
| -npx create-vue-next@latest <project-name> |
| 14 | +npx create-vue-next@latest |
18 | 15 |
|
19 |
| -OR |
| 16 | +# OR |
20 | 17 |
|
21 |
| -npx create-vue-next@latest <project-name> --<flag> |
| 18 | +npx create-vue-next <project-name> --ts --eslint --tailwind --use-pnpm |
22 | 19 | ```
|
23 | 20 |
|
24 | 21 | ### yarn
|
25 | 22 |
|
26 | 23 | ```bash
|
27 |
| -yarn create-vue-next |
| 24 | +yarn create vue-next |
28 | 25 |
|
| 26 | +# OR |
| 27 | + |
| 28 | +yarn create vue-next <project-name> --ts --eslint --tailwind --use-pnpm |
| 29 | +``` |
| 30 | + |
| 31 | +### pnpm |
| 32 | + |
| 33 | +```bash |
| 34 | +pnpm create vue-next@latest |
| 35 | + |
| 36 | +# OR |
| 37 | + |
| 38 | +pnpm create vue-next@latest <project-name> --ts --eslint --tailwind --use-pnpm |
| 39 | +``` |
| 40 | + |
| 41 | +## Options |
| 42 | + |
| 43 | +You can also pass command line arguments to set up a new project non-interactively. Run `create-vue-next --help` to see the available command line arguments: |
| 44 | + |
| 45 | +```bash |
| 46 | +Usage: create-vue-next <project-name> [options] |
| 47 | + |
| 48 | +Options: |
| 49 | + -V, --version output the version number |
| 50 | + --ts, --typescript |
| 51 | + |
| 52 | + Initialize as a TypeScript project. |
| 53 | + |
| 54 | + --tailwind |
| 55 | + |
| 56 | + Initialize with Tailwind CSS config. |
| 57 | + |
| 58 | + --eslint |
| 59 | + |
| 60 | + Initialize with ESLint config. |
| 61 | + |
| 62 | + --use-npm |
| 63 | + |
| 64 | + Explicitly tell the CLI to bootstrap the app using npm |
| 65 | + |
| 66 | + --use-pnpm |
| 67 | + |
| 68 | + Explicitly tell the CLI to bootstrap the app using pnpm |
| 69 | + |
| 70 | + --use-yarn |
| 71 | + |
| 72 | + Explicitly tell the CLI to bootstrap the app using Yarn |
| 73 | + |
| 74 | + --use-bun |
| 75 | + |
| 76 | + Explicitly tell the CLI to bootstrap the app using Bun |
29 | 77 | ```
|
30 | 78 |
|
| 79 | +### How to contribute? |
| 80 | + |
| 81 | +Contributions are welcome and encouraged! If you have any ideas or suggestions for new features, or if you encounter any bugs or issues, please open an issue or submit a pull request on the GitHub repository. |
| 82 | + |
| 83 | +Developers interested in contributing should read the [Code of Conduct](./CODE_OF_CONDUCT.md) and the [Contributing Guide](./CONTRIBUTING.md). |
| 84 | + |
| 85 | + |
| 86 | +Happy hacking ⚡ |
0 commit comments