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
1 Answer
Reset to default 15You 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
版权声明:本文标题:javascript - is there a way to import { pool } from pg - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743613333a2510362.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论