合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[TOC] > [home](https://github.com/electric-sql/pglite) ## 概述 PGlite 是打包到 TypeScript 客户端库中的 WASM Postgres 版本,使您能够在浏览器中运行 Postgres,Node.js、Bun 和 Deno,而无需安装任何其他依赖项。它只有 3mb 的 gzip 压缩,并支持许多 Postgres 扩展 示例 ``` import { PGlite } from "@electric-sql/pglite"; const db = new PGlite(); await db.query("select 'Hello world' as message;"); // -> { rows: [ { message: "Hello world" } ] } ``` 持久化 ``` const db = new PGlite("idb://my-pgdata"); ```