1.0.6 • Published 10 months ago

athena-query v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

athena-query

tests JavaScript Style Guide

Usage

npm i athena-query

@aws-sdk/credential-providers and @aws-sdk/client-athena are required as peer dependencies, make sure to install them as well.

import { query } from 'athena-query'

const [columns, rows] = await query('select * from yourtable')

// with options
const [columns, rows] = await query('select * from yourtable', {
    region: 'us-east-1',
    output: 's3://yourbucket/athena-query-results',
    backoff: 2000 // milliseconds
})

Options

  • region - AWS region
  • profile - AWS profile
  • workgroup - Athena workgroup
  • output - S3 bucket to store query results
  • backoff - Backoff time in milliseconds
1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.0

11 months ago