Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Mangani <[email protected]>
  • Loading branch information
lmangani authored Jun 8, 2023
1 parent fb74b13 commit 960bdd6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/node/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# IOx
### FlightSQL NodeJS
Example gRPC Flight SQL API client using NodeJS

#### Usage
Install and import the [Influxdb3-js library](https://github.com/bonitoo-io/influxdb3-js)

```
import {InfluxDB} from '@influxdata/influxdb3-client/src'
let url = 'https://eu-central-1-1.aws.cloud2.influxdata.com/';
let database = 'my-database';
let token = 'my-token';
let client = new InfluxDB({url: url, database: database, token: token});
```

### TBD

0 comments on commit 960bdd6

Please sign in to comment.