File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,27 @@ cd your-admin-name
2424npm run dev
2525```
2626
27- ** Tip** : You can replace ` npx ` with ` npm ` , ` yarn ` , or ` bun ` .
27+ ** Tip** : You can replace ` npx ` with ` npm ` , ` yarn ` or ` bun ` :
28+
29+ ``` sh
30+ # Using npx
31+ npx create-react-admin@latest your-admin-name
32+ # Using npm
33+ npm create react-admin@latest your-admin-name
34+ # Using yarn
35+ yarn create react-admin@latest your-admin-name
36+ # Using bun
37+ bun create react-admin@latest your-admin-name
38+ ```
39+
40+ ** Tip** : If you need to pass extra options, depending on the command you choose you may need to add ` -- ` before the arguments:
41+
42+ ``` sh
43+ # `npx` doesn't require the `--` before the arguments
44+ npx create-react-admin@latest your-admin-name --interactive
45+ # `npm create` does require the `--` before the arguments
46+ npm create react-admin@latest your-admin-name -- --interactive
47+ ```
2848
2949## Options
3050
You can’t perform that action at this time.
0 commit comments