🚀 Quickstart
The quickest way to create a new Hypergraph application you can use the create-hypergraph
CLI command. Make sure you have Node.js >= 22 installed.
npx create-hypergraph@latest
# or
pnpm create hypergraph@latest
bunx create-hypergraph@latest
yarn create hypergraph@latest
During installation, you'll see the following prompts to choose your app name, template, and package manager.
- What is your app named? …
- Choose your template …
- What package manager do you want to use? …
After the prompts, you'll have a new Hypergraph application ready to use and can start exploring the app. To run it use the following command:
cd my-hypergraph-app
npm run dev
# or depending on your package manager
yarn run dev
pnpm run dev
bun run dev
Open the browser and navigate to the development server URL shown in your terminal (for example, http://localhost:5173
for Vite or http://localhost:3000
for Next.js)
Example Datasets
A few example datasets to use when building your apps are available here:
Edit on GitHub 👤