CLI toolchain to scaffold a Hypergraph-enabled application with a given template.
npm install create-hypergraphCLI toolchain to scaffold a Hypergraph-enabled application with a given template.
Inspiration takes from the vite, nextjs, and effect create app command tools.
With NPM:
``bash`
npm create hypergraph@latest
With Yarn:
`bash`
yarn create hypergraph
With PNPM:
`bash`
pnpm create hypergraph@latest
With Bun:
`bash`
bun create hypergraph
Then follow the given prompts.
- app-name -> if provided, used as the name of the app, as well as the directory the app is scaffolded in to
- --template -> if provided, uses the provided template--package-manager
- options:
- vite-react
- nextjs
- -> if provided, uses the provided package manager--skip-install-deps
- options:
- pnpm
- bun
- npm
- yarn
- -> if flag provided, the deps will not be install in the scaffolded app--skip-initialize-git
- default: false
- -> if flag provided, git will not be initialized in the scaffolded app
- default: false
`bash``fully configured
pnpm create hypergraph@latest --template vite-react --package-manager pnpm my-hypergraph-app