0.8.0 • Published 1 day ago

@influxdata/influxdb3-client v0.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 day ago

InfluxDB 3 JavaScript Client

The JavaScript Client that provides a simple and convenient way to interact with InfluxDB 3. This package supports both writing data to InfluxDB and querying data using the FlightSQL client, which allows you to execute SQL queries against InfluxDB IOx.

Installation

To write or query InfluxDB 3, add @influxdata/influxdb3-client as a dependency to your project using your favorite package manager.

npm install --save @influxdata/influxdb3-client
yarn add @influxdata/influxdb3-client
pnpm add @influxdata/influxdb3-client

If you target Node.js, use @influxdata/influxdb3-client. It provides main (CJS), module (ESM), and browser (UMD) exports.

⚠️ The browser target is not currently supported.

Usage

set environment variables:

  • INFLUXDB_URL region of your influxdb cloud e.g. https://us-east-1-1.aws.cloud2.influxdata.com/
  • INFLUXDB_TOKEN read/write token generated in cloud
  • INFLUXDB_DATABASE name of database e.g .my-database
export INFLUXDB_URL="<url>"
export INFLUXDB_DATABASE="<database>"
export INFLUXDB_TOKEN="<token>"

powershell

set INFLUXDB_URL=<url>
set INFLUXDB_DATABASE=<database>
set INFLUXDB_TOKEN=<token>

cmd

$env:INFLUXDB_URL "<url>"
$env:INFLUXDB_DATABASE "<database>"
$env:INFLUXDB_TOKEN "<token>"

To get started with influxdb client import @influxdata/influxdb3-client package.

import {InfluxDBClient, Point} from '@influxdata/influxdb3-client'

Prepare environmnet variables and instanciate InfluxDBClient in asynchronous function. Make sure to close client after.

const url = process.env.INFLUXDB_URL
const token = process.env.INFLUXDB_TOKEN
const database = process.env.INFLUXDB_DATABASE

async function main() {
    const client = new InfluxDBClient({url, token})

    // following code goes here

    client.close()
}

main()

The client can be now used to insert data using line-protocol:

const line = `stat,unit=temperature avg=20.5,max=45.0`
await client.write(line, database)

Fetch data using SQL query and print result.

// Execute query
const query = `
    SELECT *
    FROM "stat"
    WHERE
    time >= now() - interval '5 minute'
    AND
    "unit" IN ('temperature')
`
const queryResult = await client.query(query, database)

for await (const row of queryResult) {
    console.log(`avg is ${row.avg}`)
    console.log(`max is ${row.max}`)
}

Example

For more complex examples see examples folder.

Feedback

If you need help, please use our Community Slack or Community Page.

New features and bugs can be reported on GitHub: https://github.com/InfluxCommunity/influxdb3-js

Contribution

If you would like to contribute code you can do through GitHub by forking the repository and sending a pull request into the main branch.

Development

Update the Flight Client

As of now, we're responsible for generating the Flight Client by ourself. However, its Protobuf interfaces may undergo changes over time. To re-generate the Flight Client, we have provided a script that can be executed using yarn flight. This script will clone the Flight Protobuf repository and generate new TypeScript files into the client.

License

The InfluxDB 3 JavaScript Client is released under the MIT License.

0.8.0

18 days ago

0.8.0-nightly.4305

2 months ago

0.8.0-nightly.4346

2 months ago

0.8.0-nightly.4348

2 months ago

0.8.0-nightly.4347

2 months ago

0.8.0-nightly.4369

2 months ago

0.8.0-nightly.4360

2 months ago

0.8.0-nightly.4276

2 months ago

0.8.0-nightly.4294

2 months ago

0.8.0-nightly.4288

2 months ago

0.8.0-nightly.4239

2 months ago

0.8.0-nightly.4222

2 months ago

0.8.0-nightly.4221

2 months ago

0.8.0-nightly.4220

2 months ago

0.8.0-nightly.4240

2 months ago

0.7.0

2 months ago

0.7.0-nightly.4168

2 months ago

0.8.0-nightly.4179

2 months ago

0.7.0-nightly.4122

2 months ago

0.7.0-nightly.4116

2 months ago

0.7.0-nightly.4095

2 months ago

0.7.0-nightly.4089

2 months ago

0.7.0-nightly.4053

2 months ago

0.7.0-nightly.4042

3 months ago

0.7.0-nightly.3985

3 months ago

0.7.0-nightly.4035

3 months ago

0.7.0-nightly.4036

3 months ago

0.7.0-nightly.4024

3 months ago

0.7.0-nightly.4008

3 months ago

0.7.0-nightly.4007

3 months ago

0.7.0-nightly.3892

3 months ago

0.7.0-nightly.3911

3 months ago

0.7.0-nightly.3905

3 months ago

0.7.0-nightly.3899

3 months ago

0.6.0-nightly.3845

3 months ago

0.7.0-nightly.3856

3 months ago

0.6.0-nightly.3824

3 months ago

0.6.0-nightly.3839

3 months ago

0.6.0

3 months ago

0.6.0-nightly.3747

3 months ago

0.6.0-nightly.3754

3 months ago

0.6.0-nightly.3753

3 months ago

0.6.0-nightly.3760

3 months ago

0.6.0-nightly.3772

3 months ago

0.6.0-nightly.3778

3 months ago

0.6.0-nightly.3701

3 months ago

0.6.0-nightly.3621

4 months ago

0.6.0-nightly.3633

4 months ago

0.6.0-nightly.3632

4 months ago

0.6.0-nightly.3634

4 months ago

0.6.0-nightly.3650

4 months ago

0.6.0-nightly.3585

4 months ago

0.6.0-nightly.3574

4 months ago

0.6.0-nightly.3573

4 months ago

0.6.0-nightly.3572

4 months ago

0.6.0-nightly.3561

4 months ago

0.6.0-nightly.3509

4 months ago

0.6.0-nightly.3511

4 months ago

0.6.0-nightly.3510

4 months ago

0.6.0-nightly.3519

4 months ago

0.6.0-nightly.3525

4 months ago

0.6.0-nightly.3429

5 months ago

0.6.0-nightly.3430

5 months ago

0.6.0-nightly.3437

5 months ago

0.6.0-nightly.3443

5 months ago

0.6.0-nightly.3252

5 months ago

0.6.0-nightly.3194

5 months ago

0.6.0-nightly.3177

5 months ago

0.6.0-nightly.3183

5 months ago

0.5.0-nightly.3166

5 months ago

0.5.0

5 months ago

0.5.0-nightly.3129

5 months ago

0.5.0-nightly.3130

5 months ago

0.5.0-nightly.3118

5 months ago

0.5.0-nightly.3092

5 months ago

0.5.0-nightly.3085

5 months ago

0.5.0-nightly.3032

5 months ago

0.5.0-nightly.2995

6 months ago

0.5.0-nightly.2973

6 months ago

0.5.0-nightly.2967

6 months ago

0.5.0-nightly.2961

6 months ago

0.5.0-nightly.2925

6 months ago

0.5.0-nightly.2919

6 months ago

0.4.1

6 months ago

0.5.0-nightly.2908

6 months ago

0.5.0-nightly.2816

6 months ago

0.5.0-nightly.2805

6 months ago

0.5.0-nightly.2794

6 months ago

0.5.0-nightly.2783

6 months ago

0.5.0-nightly.2782

6 months ago

0.5.0-nightly.2776

6 months ago

0.5.0-nightly.2760

6 months ago

0.5.0-nightly.2724

6 months ago

0.5.0-nightly.2723

6 months ago

0.5.0-nightly.2722

6 months ago

0.5.0-nightly.2716

6 months ago

0.5.0-nightly.2710

6 months ago

0.5.0-nightly.2694

6 months ago

0.5.0-nightly.2688

6 months ago

0.5.0-nightly.2632

6 months ago

0.4.0

6 months ago

0.4.0-nightly.2621

6 months ago

0.4.0-nightly.2600

6 months ago

0.4.0-nightly.2559

6 months ago

0.4.0-nightly.2548

6 months ago

0.4.0-nightly.2547

6 months ago

0.4.0-nightly.2546

6 months ago

0.4.0-nightly.2545

6 months ago

0.4.0-nightly.2534

6 months ago

0.4.0-nightly.2493

6 months ago

0.4.0-nightly.2492

6 months ago

0.4.0-nightly.2491

6 months ago

0.4.0-nightly.2490

6 months ago

0.4.0-nightly.2479

6 months ago

0.4.0-nightly.2438

7 months ago

0.4.0-nightly.2427

7 months ago

0.4.0-nightly.2426

7 months ago

0.4.0-nightly.2415

7 months ago

0.4.0-nightly.2414

7 months ago

0.4.0-nightly.2373

7 months ago

0.4.0-nightly.2372

7 months ago

0.4.0-nightly.2366

7 months ago

0.4.0-nightly.2355

7 months ago

0.4.0-nightly.2318

7 months ago

0.4.0-nightly.2311

7 months ago

0.3.1

7 months ago

0.4.0-nightly.2295

7 months ago

0.4.0-nightly.2289

7 months ago

0.4.0-nightly.2288

7 months ago

0.4.0-nightly.2287

7 months ago

0.4.0-nightly.2281

7 months ago

0.4.0-nightly.2270

7 months ago

0.4.0-nightly.2234

7 months ago

0.3.0

7 months ago

0.4.0-nightly.2223

7 months ago

0.3.0-nightly.2212

7 months ago

0.3.0-nightly.2199

7 months ago

0.3.0-nightly.2193

7 months ago

0.3.0-nightly.2187

7 months ago

0.3.0-nightly.2176

7 months ago

0.3.0-nightly.2170

7 months ago

0.3.0-nightly.2153

7 months ago

0.3.0-nightly.2147

7 months ago

0.3.0-nightly.2111

8 months ago

0.3.0-nightly.2105

8 months ago

0.3.0-nightly.2049

8 months ago

0.3.0-nightly.2048

8 months ago

0.3.0-nightly.2047

8 months ago

0.3.0-nightly.2041

8 months ago

0.3.0-nightly.2025

8 months ago

0.3.0-nightly.1914

8 months ago

0.3.0-nightly.1913

8 months ago

0.3.0-nightly.1907

8 months ago

0.3.0-nightly.1906

8 months ago

0.3.0-nightly.1895

8 months ago

0.3.0-nightly.1839

8 months ago

0.3.0-nightly.1828

8 months ago

0.3.0-nightly.1822

8 months ago

0.3.0-nightly.1816

8 months ago

0.3.0-nightly.1795

8 months ago

0.3.0-nightly.1729

9 months ago

0.3.0-nightly.1728

9 months ago

0.3.0-nightly.1727

9 months ago

0.3.0-nightly.1721

9 months ago

0.3.0-nightly.1715

9 months ago

0.3.0-nightly.1664

9 months ago

0.3.0-nightly.1658

9 months ago

0.3.0-nightly.1647

9 months ago

0.3.0-nightly.1641

9 months ago

0.3.0-nightly.1630

9 months ago

0.3.0-nightly.1549

9 months ago

0.2.0

9 months ago

0.2.0-nightly.1538

9 months ago

0.2.0-nightly.1532

9 months ago

0.2.0-nightly.1387

9 months ago

0.2.0-nightly.1386

9 months ago

0.2.0-nightly.1385

9 months ago

0.2.0-nightly.1379

9 months ago

0.2.0-nightly.1368

9 months ago

0.2.0-nightly.1272

9 months ago

0.2.0-nightly.1240

9 months ago

0.2.0-nightly.1235

9 months ago

0.2.0-nightly.1234

9 months ago

0.2.0-nightly.1223

9 months ago

0.2.0-nightly.1162

9 months ago

0.2.0-nightly.1151

9 months ago

0.2.0-nightly.1139

9 months ago

0.2.0-nightly.1133

9 months ago

0.2.0-nightly.1132

9 months ago

0.2.0-nightly.1126

9 months ago

0.2.0-nightly.1080

10 months ago

0.2.0-nightly.1074

10 months ago

0.2.0-nightly.1073

10 months ago

0.2.0-nightly.1067

10 months ago

0.2.0-nightly.1061

10 months ago

0.2.0-nightly.1055

10 months ago

0.2.0-nightly.1019

10 months ago

0.2.0-nightly.1013

10 months ago

0.2.0-nightly.977

10 months ago

0.2.0-nightly.961

10 months ago

0.2.0-nightly.960

10 months ago

0.2.0-nightly.934

10 months ago

0.2.0-nightly.928

10 months ago

0.2.0-nightly.897

10 months ago

0.2.0-nightly.886

10 months ago

0.2.0-nightly.870

10 months ago

0.2.0-nightly.854

10 months ago

0.2.0-nightly.843

10 months ago

0.2.0-nightly.783

10 months ago

0.1.0

10 months ago

0.1.0-nightly.772

10 months ago

0.1.0-nightly.766

10 months ago

0.1.0-nightly.760

10 months ago