文件名称:pgschematojson:获取一个 pgdump --schema-only sql 文件并输出一个包含表字段、类型和关系的 json 对象
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-24 00:34:19
JavaScript
pgschematojson 获取 postgres 模式转储(--schema-only)并将其读入具有键和字段类型的 js 对象 可以使用 cli 或模块。 pg_dump --schema-only databasename | pgschematojson 安装 sudo npm install -g pgschematojson 接口 module.exports([schema],cb) 模式,需要一个可选的模式字符串来解析 cb,带有结果数据对象的回调。 返回值,如果未提供模式,则返回一个可写的流,该流期望模式数据的管道流 module.exports.dump(config) 使用提供的配置运行 pg_dump 配置,{密码:,用户:,主机:,数据库:} 返回模式数据流
【文件预览】:
pgschematojson-master
----index.js(5KB)
----package.json(918B)
----test()
--------test.js(580B)
----LICENSE(1KB)
----.gitignore(13B)
----README.md(669B)