5

I am interested in finding out what binary serialization frameworks/libraries are there for node.js.

I tried to use Apache Thrift, but the documentation is very poor and does not offer any example in this area.

Does anyone know of any alternatives?

Clara
  • 2,935
  • 6
  • 34
  • 49

1 Answers1

3

How about ProtoBuf from Google?

Here is a JS port that is available on npm.

Related:

Google Protocol Buffers - JavaScript

Community
  • 1
  • 1
leesei
  • 6,020
  • 2
  • 29
  • 51
  • Thanks, that could've been an option - didn't know there was a js library for ProtoBuf, I only looked at the official ones. Anyway, now it's too late. – Clara Sep 27 '13 at 12:09