mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
28 lines
280 B
Markdown
28 lines
280 B
Markdown
# Postgres table load benchmark
|
|
|
|
To install dependencies:
|
|
|
|
```bash
|
|
bun install
|
|
```
|
|
|
|
To run in Bun:
|
|
|
|
```bash
|
|
bun ./index.mjs
|
|
```
|
|
|
|
To run in Node.js:
|
|
|
|
```bash
|
|
node index.mjs
|
|
```
|
|
|
|
To run in Deno:
|
|
|
|
```bash
|
|
deno run -A index.mjs
|
|
```
|
|
|
|
You will need a localhost Postgres server running.
|