@glaredb/glaredb
v0.9.5
Published
Check out the [GlareDB repo](https://github.com/GlareDB/glaredb) to learn more.
Downloads
24
Maintainers
Readme
Node.js bindings for GlareDB
Check out the GlareDB repo to learn more.
Use GlareDB directly in Node, Bun, or Deno to query and analyze a variety of data sources, including Polars dataframes
> import glaredb from '@glaredb/glaredb'
> const conn = await glaredb.connect()
> const res = await conn.sql(`SELECT 'hello from js' as hello`)
> await res.show()
┌───────────────┐
│ hello │
│ ── │
│ Utf8 │
╞═══════════════╡
│ hello from js │
└───────────────┘