mcollina / msgpack5

A msgpack v5 implementation for node.js, with extension points / msgpack.org[Node]
MIT License
493 stars 76 forks source link

Support for int64 with 64 bit precision #61

Open rochdev opened 6 years ago

rochdev commented 6 years ago

Right now int64 are supported but only up to 53 bits since this is a limitation of the Number type in JavaScript.

Support for 64 bit precision could be added using a library such as node-int64.

mcollina commented 6 years ago

Feel free to send a PR. However, place this new behavior under an option