-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Comments
I second that. |
agree. glad i found this. i was banging my head against the wall getting started! |
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. |
@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.) |
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. |
Documentation states you can import the Pool class using
import { Pool } from 'pg'
. However, this is wrong. As of now, you must useimport pg from 'pg'
and thenconst { Pool } = pg
.The text was updated successfully, but these errors were encountered: