JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q53907F
  • License AGPL-3.0

Package Exports

  • @glaredb/glaredb
  • @glaredb/glaredb/glaredb.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@glaredb/glaredb) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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 │
└───────────────┘