Home > OS >  Is there an NPM package for QuestDB?
Is there an NPM package for QuestDB?

Time:10-07

I’m new to QuestDB, and I‘m wondering if there’s an npm package for it. I can see an npmjs.com/questdb package, but it doesn’t seem to have any data in it. Please tell me if there is. Thanks!

CodePudding user response:

This is an empty placeholder package added by one of QuestDB team members.

As of now QuestDB does not have dedicated JS client (as in fact no dedicated clients in any other programming language). It relies mostly on compatibility with Postgres Driver as well as well as platform specific REST clients with CSV, JSON serialisations.

QuestDB also accepts messages in Influx Line Protocol serialisation format but unlike InfluxDB itself instead of HTTP it uses TCP transport. It makes sense to add NodeJS client with ILP serialisation and TCP transport and that will be QuestDB JS client then.

  • Related