shargors
shargors

Reputation: 2157

Which Node.js module should I install to be able to use google protocol buffers?

It seems that there are a few modules available for Node.js from multiple people to work with protocol buffers. Some are more or less actively maintained. I found https://github.com/chrisdew/protobuf which seems to be working fine. But is there a tried and true (officially certified) path?

Upvotes: 6

Views: 5976

Answers (4)

Sericaia
Sericaia

Reputation: 450

Now you already have a JS google official version. You can download it here https://github.com/google/protobuf/releases

Upvotes: 2

hal
hal

Reputation: 1757

It's worth mention protocol-buffers nodejs package as an option

Upvotes: 2

Filipe Tagliacozzi
Filipe Tagliacozzi

Reputation: 1431

No doubt... the better,complete and beautifully designed is: Protobuf.js

Cheers!

Upvotes: 11

Nikolai
Nikolai

Reputation: 3134

There are no official implementations of Protobuf aside from Java, Python and C++. For node.js, you'll probably want to go with chrisdew since it's the one on npm. I personally use my own fork because I need to work with int64's.

Upvotes: 2

Related Questions