npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wherobots-sql-driver

v0.1.0-alpha.2

Published

TypeScript SDK for Wherobots DB

Downloads

200

Readme

Wherobots TypeScript SDK

TypeScript SDK for interacting with WherobotsDB. This package implements a Node.js client that programmatically connects to a WherobotsDB runtime and execute Spatial SQL queries.

:warning: WARNING: This package is currently in Alpha. It is not recommended for use in production. API interfaces are subject to change.

Prerequisites

  1. Node.js version 18 or higher
  2. TypeScript version 5.x (if using TypeScript)
  3. A Wherobots API Key. See the Wherobots API Key Documentation for instructions on how to generate a key.

Installation

$ npm install wherobots-sql-driver

Usage

Example: Executing SQL statement and printing results

This example follows the typical pattern of an async function to establish the connection to WherobotsDB. After establishing this connection, you can call async methods to execute SQL queries through this connection.

import { Connection, Runtime } from "wherobots-sql-driver";

(async () => {
  const conn = await Connection.connect({
    apiKey: "YOUR-WHEROBOTS-API-KEY",
    runtime: Runtime.SEDONA,
  });
  const results = await conn.execute("SHOW SCHEMAS IN wherobots_open_data");
  console.log(JSON.stringify(results.toArray(), null, 2));
  conn.close();
})();

Running this example returns the results of the query as JSON:

[
  {
    "namespace": "overture"
  },
  {
    "namespace": "overture_2024_02_15"
  },
  {
    "namespace": "overture_2024_05_16"
  },
  {
    "namespace": "overture_2024_07_22"
  },
  {
    "namespace": "test_db"
  }
]

Code example explanation

  1. Calling Connection.connect() asynchronously establishes a SQL Session connection in Wherobots Cloud and returns a Connection instance.
  2. Calling the connection's execute() methods runs the given SQL statement and asynchronously returns the result as an Apache Arrow Table instance.
  3. The Arrow Table instance can be converted to a primitive by calling toArray(), and then printed to the console as formatted JSON with JSON.stringify().
  4. Calling the connection's close() method tears down the SQL Session connection.
  1. Paste the contents of the above code example into a file called wherobots-example.js
  2. Run the example with: node wherobots-example.js
  1. Paste the contents of the above code example into a file called wherobots-example.ts
  2. Run the example with: npx tsx wherobots-example.ts

Runtime and region selection

You can chose the Wherobots runtime you want to use using the runtime parameter, passing in one of the Runtime enum values. For more information on runtime sizing and selection, please consult the Wherobots product documentation.

Additional parameters

The Connection.connect() can take the following additional options:

  • resultsFormat: one of the ResultsFormat enum values; Arrow encoding is the default and most efficient format for receiving query results.

    • NOTE: currently only Arrow encoding is supported
  • dataCompression: one of the DataCompression enum values; Brotli compression is the default and the most efficient compression algorithm for receiving query results.

    • NOTE: currently only Brotli compression is supported
  • geometryRepresentation: one of the GeometryRepresentation enum values; selects the encoding of geometry columns returned to the client application. The default is EWKT (string) and the most convenient for human inspection while still being usable by geospatial data manipulation libraries.

  • region: Currently, the only supported Wherobots compute region is aws-us-west-2, in AWS's Oregon (us-west-2) region.