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`
77
88Fetches a package from the registry without installing it as a dependency, hotloads it, and runs whatever default command binary it exposes.
99
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
1111needing to install it under another project, you can run:
1212
1313```
14- pnpm dlx create-react-app ./ my-app
14+ pnpm dlx create-vue my-app
1515```
1616
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.
1818
1919You may also specify which exact version of the package you'd like to use:
2020
2121```
22- pnpm dlx create-react-app @next ./ my-app
22+ pnpm dlx create-vue @next my-app
2323```
2424
2525## Options
You can’t perform that action at this time.
0 commit comments