0.0.1-dev.1713303303178.5f00f97 • Published 1 year ago

create-reaccord-app v0.0.1-dev.1713303303178.5f00f97

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

create-reaccord-app

Scaffolding for Reaccord projects

# npm
npm create reaccord@latest

# yarn
yarn create reaccord@latest

# pnpm
pnpm create reaccord@latest

#bun
bun create reaccord@latest

create-reaccord-app automatically runs in interactive mode, but you can also specify your project name and template with command line arguments.

# npm
npm create reaccord@latest my-reaccord-bot -- --template simple-counter

# yarn
yarn create reaccord@latest my-reaccord-bot --template simple-counter

# pnpm
pnpm create reaccord@latest my-reaccord-bot --template simple-counter

# bun
bun create reaccord@latest my-reaccord-bot --template simple-counter

Check out the full list of example templates, available on GitHub.

You can also use any GitHub repo as a template:

npm create reaccord@latest my-reaccord-bot -- --template djobbo/reaccord-template

CLI Flags

May be provided in place of prompts

NameDescription
--help (-h)Display available flags.
--template <name>Specify your template.
--install / --no-installInstall dependencies (or not).
--git / --no-gitInitialize git repo (or not).
--yes (-y)Skip all prompts by accepting defaults.
--no (-n)Skip all prompts by declining defaults.
--dry-runWalk through steps without executing.
--refSpecify an Astro branch (default: latest).