I am working on this TCP Proxy project written in NodeJs & Typescript , and I got a response from a TCP server, the data from the server is written in BSON format.
this is the deserialized BSON data from the server. I am trying to convert that Long value that I believe is something related with date or time, I have tried to convert the number into int32 mongodb but it didn't work.
so I want those number to be somehow readable date format using NodeJs.
I used js-bson library for this.
I also don't have any access on the database backend source code
Been stuck here for like hours already. thanks.