Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation Contains Incorrect Syntax #3096

Closed
cantwellsean0127 opened this issue Nov 9, 2023 · 6 comments
Closed

Documentation Contains Incorrect Syntax #3096

cantwellsean0127 opened this issue Nov 9, 2023 · 6 comments

Comments

@cantwellsean0127
Copy link

cantwellsean0127 commented Nov 9, 2023

Documentation states you can import the Pool class using import { Pool } from 'pg'. However, this is wrong. As of now, you must use import pg from 'pg' and then const { Pool } = pg.

@Standaa
Copy link

Standaa commented Nov 27, 2023

I second that.
There is a node-postgres lib, a pg lib and then extra packages (e.g pg-pool).
It is quite confusing which dependencies to use when reading the docs.
It would be nice if these were a bit more specific and mentionned typings as well.
It would also mitigate risk of installing wrong libs.

@briandavidjoyner
Copy link

agree. glad i found this. i was banging my head against the wall getting started!

@fire332
Copy link

fire332 commented Feb 28, 2024

Why does node-postgres even export a class instance instead of just using module-scoped variables to store state? Module exports are basically singletons anyways so that seems redundant at best.

@charmander
Copy link
Collaborator

@fire332 It was just a way to write the abstraction over pg/pg-native, as far as I know. It didn’t really make a difference how it was implemented before ESM became a thing, and it hasn’t been changed yet now that it is.

(Also, storing state at the module level is pretty much always bad, but what pg does isn’t a case of that.)

@brianc
Copy link
Owner

brianc commented Apr 5, 2024

Here's a longer description of the issue and my explanation (excuse) for the confusion. tl;dr - I'll be fixing this within the month.

#3190 (comment)

@charmander
Copy link
Collaborator

Fixed in #3191. See #2137 for ESM support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants