File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ Aliases: `pnpx` is an alias for `pnpm dlx`
7
7
8
8
Fetches a package from the registry without installing it as a dependency, hotloads it, and runs whatever default command binary it exposes.
9
9
10
- For example, to use ` create-react-app ` anywhere to bootstrap a react app without
10
+ For example, to use ` create-vue ` anywhere to bootstrap a Vue project without
11
11
needing to install it under another project, you can run:
12
12
13
13
```
14
- pnpm dlx create-react-app ./ my-app
14
+ pnpm dlx create-vue my-app
15
15
```
16
16
17
- This will fetch ` create-react-app ` from the registry and run it with the given arguments.
17
+ This will fetch ` create-vue ` from the registry and run it with the given arguments.
18
18
19
19
You may also specify which exact version of the package you'd like to use:
20
20
21
21
```
22
- pnpm dlx create-react-app @next ./ my-app
22
+ pnpm dlx create-vue @next my-app
23
23
```
24
24
25
25
## Options
You can’t perform that action at this time.
0 commit comments