Skip to content

Releases: questdb/nodejs-questdb-client

Custom logging

05 Jan 10:52
83c7b19

Choose a tag to compare

A new option to pass a custom logging function to the client.
If no logger specified the client will write log messages to console, default logging level is info.

Add 'copyBuffer' option

21 Sep 10:44
c71c8f9

Choose a tag to compare

This release introduces a new option called 'copyBuffer', the option is not set by default.
If the option is set the client will create a new buffer for each flush() call with the data belongs to the returned promise.
This prevents creating duplicate rows if await is missed when calling flush() or if the calls to flush() are not serialised.

Example:

const sender = new Sender({ copyBuffer: true });

First release

22 Aug 10:18

Choose a tag to compare

Node.js client for QuestDB.

Connect to QuestDB and ingest data via ILP.
Supports TLS encryption and ILP authentication.