# pg-query-stream

> Postgres query result returned as readable stream

Latest version **4.17.0** (published 2026-08-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install pg-query-stream
pnpm add pg-query-stream
yarn add pg-query-stream
bun add pg-query-stream
```

## Health

**Score 75/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 4.17.0 |
| Published | 2026-08-08 |
| First published | 2013-10-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 12.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13205 |
| Author | Brian M. Carlson |
| Maintainers | brianc |
| Keywords | postgres, query-stream, pg, query, stream |

## Links

- npm: https://www.npmjs.com/package/pg-query-stream
- Repository: https://github.com/brianc/node-postgres
- Homepage: https://github.com/brianc/node-postgres#readme
- Issues: https://github.com/brianc/node-postgres/issues
- npm.io page: https://npm.io/package/pg-query-stream

## Dependencies (1)

- [pg-cursor](https://npm.io/package/pg-cursor.md) ^2.22.0

## Alternatives

- [gamedig](https://npm.io/package/gamedig.md) — 29.3K weekly downloads
- [join-monster](https://npm.io/package/join-monster.md) — 12.8K weekly downloads
- [masked](https://npm.io/package/masked.md) — 5.5K weekly downloads
- [@comunica/actor-query-process-explain-logical](https://npm.io/package/@comunica/actor-query-process-explain-logical.md) — 4.7K weekly downloads
- [@veracity/vui](https://npm.io/package/@veracity/vui.md) — 4.6K weekly downloads

## Recent versions

- 4.17.0 (latest) — 2026-08-08
- 4.8.2-alpha.1 (beta) — 2025-04-21
- 4.16.0 — 2026-06-19
- 4.15.0 — 2026-05-18
- 4.14.0 — 2026-03-04
- 4.13.0 — 2026-02-25
- 4.12.0 — 2026-01-30
- 4.11.2 — 2026-01-20
- 4.11.1 — 2026-01-15
- 4.11.0 — 2026-01-14
- 4.10.3 — 2025-06-27
- 4.10.2 — 2025-06-19
- 4.10.1 — 2025-06-18
- 4.10.0 — 2025-05-12
- 4.9.6 — 2025-04-25
- … 69 more at https://npm.io/package/pg-query-stream/versions

## README

# pg-query-stream

Receive result rows from [pg](https://github.com/brianc/node-postgres) as a readable (object) stream.

## installation

```bash
$ npm install pg --save
$ npm install pg-query-stream --save
```

_requires pg>=2.8.1_

## use

```js
const pg = require('pg')
const pool = new pg.Pool()
const QueryStream = require('pg-query-stream')
const JSONStream = require('JSONStream')

// pipe 1,000,000 rows to stdout without blowing up your memory usage
pool.connect((err, client, done) => {
  if (err) throw err
  const query = new QueryStream('SELECT * FROM generate_series(0, $1) num', [1000000])
  const stream = client.query(query)
  // release the client when the stream is finished
  stream.on('end', done)
  stream.pipe(JSONStream.stringify()).pipe(process.stdout)
})
```

The stream uses a cursor on the server so it efficiently keeps only a low number of rows in memory.

This is especially useful when doing [ETL](http://en.wikipedia.org/wiki/Extract,_transform,_load) on a huge table. Using manual `limit` and `offset` queries to fake out async iteration through your data is cumbersome, and _way way way_ slower than using a cursor.

_note: this module only works with the JavaScript client, and does not work with the native bindings. libpq doesn't expose the protocol at a level where a cursor can be manipulated directly_

## contribution

I'm very open to contribution! Open a pull request with your code or idea and we'll talk about it. If it's not way insane we'll merge it in too: isn't open source awesome?

## license

The MIT License (MIT)

Copyright (c) 2013-2020 Brian M. Carlson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

---
_Source: https://npm.io/package/pg-query-stream · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
