# Use Gel with Bun (/docs/guides/ecosystem/gel)

<!-- agent-signals: reading_time_min: 4 · est_tokens: 1702 · updated: 2026-07-28 -->
Related: [Build an app with Astro and Bun](/docs/guides/ecosystem/astro.md), [Create a Discord bot](/docs/guides/ecosystem/discordjs.md), [Containerize a Bun application with Docker](/docs/guides/ecosystem/docker.md), [Use Drizzle ORM with Bun](/docs/guides/ecosystem/drizzle.md), [Build an HTTP server using Elysia and Bun](/docs/guides/ecosystem/elysia.md), [Build an HTTP server using Express and Bun](/docs/guides/ecosystem/express.md)

Gel (formerly EdgeDB) is a graph-relational database built on Postgres. It provides a declarative schema language, migrations system, and object-oriented query language, and also supports raw SQL queries. It solves object-relational mapping at the database layer, so your application code doesn't need an ORM library.

***

First, [install Gel](https://docs.geldata.com/learn/installation) if you haven't already.

<CodeGroup>
  <CodeBlockTabs defaultValue="Linux/macOS terminal">
    <CodeBlockTabsList>
      <CodeBlockTabsTrigger value="Linux/macOS terminal">
        Linux/macOS terminal
      </CodeBlockTabsTrigger>

      <CodeBlockTabsTrigger value="Windows terminal">
        Windows terminal
      </CodeBlockTabsTrigger>

      <CodeBlockTabsTrigger value="Homebrew terminal">
        Homebrew terminal
      </CodeBlockTabsTrigger>
    </CodeBlockTabsList>

    <CodeBlockTab value="Linux/macOS terminal">
      ```sh icon="terminal" 
      curl https://www.geldata.com/sh --proto "=https" -sSf1 | sh
      ```
    </CodeBlockTab>

    <CodeBlockTab value="Windows terminal">
      ```sh icon="windows" 
      irm https://www.geldata.com/ps1 | iex
      ```
    </CodeBlockTab>

    <CodeBlockTab value="Homebrew terminal">
      ```sh icon="terminal" 
      brew install geldata/tap/gel-cli
      ```
    </CodeBlockTab>
  </CodeBlockTabs>
</CodeGroup>

***

Use `bun init` to create a fresh project.

```sh terminal icon="terminal"
mkdir my-edgedb-app
cd my-edgedb-app
bun init -y
```

***

Initialize a Gel instance for the project with the Gel CLI. The `gel project init` command creates a `gel.toml` file in the project root.

```sh terminal icon="terminal"
gel project init
```

```txt
No `gel.toml` found in `/Users/colinmcd94/Documents/bun/fun/examples/my-gel-app` or above
Do you want to initialize a new project? [Y/n]
> Y
Specify the name of Gel instance to use with this project [default: my_gel_app]:
> my_gel_app
Checking Gel versions...
Specify the version of Gel to use with this project [default: x.y]:
> x.y
┌─────────────────────┬──────────────────────────────────────────────────────────────────┐
│ Project directory   │ /Users/colinmcd94/Documents/bun/fun/examples/my-gel-app         │
│ Project config      │ /Users/colinmcd94/Documents/bun/fun/examples/my-gel-app/gel.toml│
│ Schema dir (empty)  │ /Users/colinmcd94/Documents/bun/fun/examples/my-gel-app/dbschema│
│ Installation method │ portable package                                                 │
│ Version             │ x.y+6d5921b                                                      │
│ Instance name       │ my_gel_app                                                       │
└─────────────────────┴──────────────────────────────────────────────────────────────────┘
Version x.y+6d5921b is already downloaded
Initializing Gel instance...
Applying migrations...
Everything is up to date. Revision initial
Project initialized.
To connect to my_gel_app, run `gel`
```

***

To check that the database is running, open a REPL and run a query.

```sh terminal icon="terminal"
gel
gel> select 1 + 1;
```

```txt
2
```

Then run `\quit` to exit the REPL.

```sh terminal icon="terminal"
gel> \quit
```

***

Next, define a schema. The `gel project init` command already created a `dbschema/default.esdl` file to hold it.

```txt File Tree icon="folder-tree"
dbschema
├── default.esdl
└── migrations
```

***

Open that file and paste the following contents.

```ts default.esdl icon="file-code"
module default {
  type Movie {
    required title: str;
    releaseYear: int64;
  }
};
```

***

Then generate and apply an initial migration.

```sh terminal icon="terminal"
gel migration create
```

```txt
Created /Users/colinmcd94/Documents/bun/fun/examples/my-gel-app/dbschema/migrations/00001.edgeql, id: m1uwekrn4ni4qs7ul7hfar4xemm5kkxlpswolcoyqj3xdhweomwjrq
```

```sh terminal icon="terminal"
gel migrate
```

```txt
Applied m1uwekrn4ni4qs7ul7hfar4xemm5kkxlpswolcoyqj3xdhweomwjrq (00001.edgeql)
```

***

With the schema applied, query the database with Gel's JavaScript client library. Install the client library and Gel's codegen CLI, then create a `seed.ts` file.

```sh terminal icon="terminal"
bun add gel
bun add -D @gel/generate
touch seed.ts
```

***

Paste the following code into `seed.ts`.

The client auto-connects to the database. The script inserts a few movies with the `.execute()` method, using EdgeQL's `for` expression to turn the bulk insert into a single query.

```ts seed.ts icon="/icons/typescript.svg"
import { createClient } from "gel";

const client = createClient();

const INSERT_MOVIE = `
  with movies := <array<tuple<title: str, year: int64>>>$movies
  for movie in array_unpack(movies) union (
    insert Movie {
      title := movie.title,
      releaseYear := movie.year,
    }
  )
`;

const movies = [
  { title: "The Matrix", year: 1999 },
  { title: "The Matrix Reloaded", year: 2003 },
  { title: "The Matrix Revolutions", year: 2003 },
];

await client.execute(INSERT_MOVIE, { movies });

console.log(`Seeding complete.`);
process.exit();
```

***

Then run this file with Bun.

```sh terminal icon="terminal"
bun run seed.ts
```

```txt
Seeding complete.
```

***

Gel implements several code generation tools for TypeScript. To write typesafe queries against the seeded database, generate the EdgeQL query builder with `@gel/generate`.

```sh terminal icon="terminal"
bunx @gel/generate edgeql-js
```

```txt
Generating query builder...
Detected tsconfig.json, generating TypeScript files.
   To override this, use the --target flag.
   Run `npx @edgedb/generate --help` for full options.
Introspecting database schema...
Writing files to ./dbschema/edgeql-js
Generation complete! 🤘
Checking the generated query builder into version control
is not recommended. Would you like to update .gitignore to ignore
the query builder directory? The following line will be added:

   dbschema/edgeql-js

[y/n] (leave blank for "y")
> y
```

***

In `index.ts`, import the generated query builder from `./dbschema/edgeql-js` and write a select query.

```ts index.ts icon="/icons/typescript.svg"
import { createClient } from "gel";
import e from "./dbschema/edgeql-js";

const client = createClient();

const query = e.select(e.Movie, () => ({
  title: true,
  releaseYear: true,
}));

const results = await query.run(client);
console.log(results);

results; // { title: string, releaseYear: number | null }[]
```

***

Run the file with Bun to see the movies you inserted.

```sh terminal icon="terminal"
bun run index.ts
```

```txt
[
  {
    title: "The Matrix",
    releaseYear: 1999
  }, {
    title: "The Matrix Reloaded",
    releaseYear: 2003
  }, {
    title: "The Matrix Revolutions",
    releaseYear: 2003
  }
]
```

***

See the [Gel docs](https://docs.geldata.com/).
