pg-connection-stringをES6のimport文で使いたいです。
公式docには
var parse = require('pg-connection-string').parse; var config = parse('postgres://someuser:somepassword@somehost:381/somedatabase')
のみ記載があり、import文での利用方法がわかりません。
import { parse as parsePgConnectionString } from 'pg-connection-string'
→Named export 'parse' not found. The requested module 'pg-connection-string' is a CommonJS module, which may not support all module.exports as named exports.
や
import pkg from 'pg-connection-string'; const { parse: parsePgConnectionString } = pkg;
→Cannot read property 'charAt' of undefined
を試しましたが、どちらもエラーとなりできませんでした。
回答1件
あなたの回答
tips
プレビュー