@starknetfoundation/starknet-start-create-starknet
v10.1.3
Published
Create starknet apps with one command
Readme
@starknetfoundation/starknet-start-create-starknet
Create starknet apps with one command
Interactive
You can create a new project interactively by running:
npx @starknetfoundation/starknet-start-create-starknet
# or
pnpm dlx @starknetfoundation/starknet-start-create-starknetYou will be asked for the name of your project before it can be created for you.
Non-interactive
You can also pass command line arguments to set up a new project
non-interactively. See create-starknet --help:
create-starknet [project-directory] [options]
Options:
-V, --version output the version number
-t, --template <name> Explicitly tell the CLI to bootstrap the app using the specified template (choices: "next", "tanstack-start")
--use-npm Explicitly tell the CLI to bootstrap the app using npm
--use-yarn Explicitly tell the CLI to bootstrap the app using yarn
--use-pnpm Explicitly tell the CLI to bootstrap the app using pnpm
-h, --help display help for commandExamples:
npx @starknetfoundation/starknet-start-create-starknet my-app --template next --use-pnpm
npx @starknetfoundation/starknet-start-create-starknet my-app --template tanstack-start --use-pnpm