admin管理员组

文章数量:1342908

I'm trying to import Pool, but i am getting an error.

This is the error, which get thrown:

import { Pool } from "pg";
         ^^^^
SyntaxError: Named export 'Pool' not found. The requested module 'pg' is a CommonJS module, which may not support all module.exports as named exports.

This is my code:

import { Pool } from "pg";

dotenv.config();

const databaseConfig = { connectionString: process.env.DATABASE_URL };
const pool = new Pool(databaseConfig);

export default pool;

I'm trying to import Pool, but i am getting an error.

This is the error, which get thrown:

import { Pool } from "pg";
         ^^^^
SyntaxError: Named export 'Pool' not found. The requested module 'pg' is a CommonJS module, which may not support all module.exports as named exports.

This is my code:

import { Pool } from "pg";

dotenv.config();

const databaseConfig = { connectionString: process.env.DATABASE_URL };
const pool = new Pool(databaseConfig);

export default pool;
Share Improve this question edited Dec 10, 2021 at 15:41 Mario Petrovic 8,35215 gold badges43 silver badges66 bronze badges asked Dec 10, 2021 at 15:13 Mohamednur HassanMohamednur Hassan 611 silver badge4 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

You should use the default export:

import pg from "pg";
const { Pool } = pg;

dotenv.config();

const databaseConfig = { connectionString: process.env.DATABASE_URL };
const pool = new Pool(databaseConfig);

export default pool;

本文标签: javascriptis there a way to importpoolfrom pgStack Overflow