chrisdew / protobuf

Protocol Buffers for Node.JS
http://code.google.com/p/protobuf-for-node/
Apache License 2.0
234 stars 71 forks source link

Cannot work with 64-bit ints #14

Closed seishun closed 11 years ago

seishun commented 12 years ago

This library tries to represent 64-bit signed and unsigned integers as Numbers, which leads to precision problems. Instead, it should use two 32-bit integers, a string or (probably the best way) a buffer.

chrisdew commented 11 years ago

obsoleted by #19