-
-
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 examples not running #3190
Comments
Yup! I got this on my list of stuff to fix as soon as I'm back from my
vacation - thanks for bringing attention to it...and sorry about that!
…On Thu, Apr 4, 2024 at 2:43 PM Nathan Boisneault ***@***.***> wrote:
It seems this has been asked a few times already but I cannot find a
proper answer.
How are the examples from the documentation supposed to be run?
Looking at the code in the Getting started section:
import {Client} from 'pg'
const client = new Client()await client.connect()
const res = await client.query('SELECT $1::text as message', ['Hello world!'])console.log(res.rows[0].message) // Hello world!await client.end()
Is it JavaScript? TypeScript? There is no indication. If I try running
this script with Node I get an error saying pg is a CommonJS module:
SyntaxError: Named export 'Client' not found. The requested module 'pg' is
a CommonJS module, which may not support all module.exports as named
exports.
I know the answer is to use the default export, I just wonder what is the
reason for not specifying it in the documentation. And if there is a way to
run this code as-is, I feel like it should at least be specified in the
documentation.
—
Reply to this email directly, view it on GitHub
<#3190>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAMHIJ5LOKAS6RUHU7AP4DY3WUPLAVCNFSM6AAAAABFX4PKAGVHI2DSMVQWIX3LMV43ASLTON2WKOZSGIZDMMZXGQ3TSNA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
So what does this actually mean? I'm trying to get this lib working in a Nuxt3 file, and I'm having similar issues. I thought this is the official Postgres driver, but just completely fail using it. (Sorry if this is a stupid question. I'm trying to learn this stuff and I'm a total newbie to web applications.) |
@sven-borkert (It’s not “official”, just the most popular PostgreSQL client for Node.) See the duplicate: |
Duplicate of #3096 |
It means I have been maintaining this library with some lovely help from other volunteers for 13-14 years and throughout that time ESM modules (technically ECMAScript Modules -- the
That should work. That's how you currently import commonJS modules into an ESM environment. This is probably one of the things folks would point to about JavaScript being "a mess" from other programming languages. Its a beautiful mess though because of its strong devotion to backwards compatibility old code from 10 years ago still has to work and so you end up w/ sometimes awkward and multi-year long transitions like this. And then those transitions run up against a small team (or single person) maintainers of packages and those folks have real life jobs & families to take care of & you get delays like this. 😅 It WILL be fixed soon though. If you think it's useful I can update the docs in the meantime. |
@brianc No worries about the docs if ESM is about to be fully supported. Hopefully people will find this issue with your explanation in the meantime. Thank you so much for your amazing work on this library! |
It seems this has been asked a few times already but I cannot find a proper answer.
How are the examples from the documentation supposed to be run?
Looking at the code in the Getting started section:
Is it JavaScript? TypeScript? There is no indication. If I try running this script with Node I get an error saying
pg
is a CommonJS module:SyntaxError: Named export 'Client' not found. The requested module 'pg' is a CommonJS module, which may not support all module.exports as named exports.
I know the answer is to use the default export, I just wonder what is the reason for not specifying it in the documentation. And if there is a way to run this code as-is, I feel like it should at least be specified in the documentation.
The text was updated successfully, but these errors were encountered: