Skip to content
Matthieu Monsch edited this page May 18, 2016 · 33 revisions

Overview

avsc is a pure JavaScript implementation of the Avro specification.

What is Avro?

Avro is a data serialization system. It is part of the Apache Software Foundation and is widely used both in offline systems (e.g. in combination with Hadoop) and online (e.g. as message encoding for Kafka).

Quoting the official documentation:

Avro provides:

  • Rich data structures.
  • A compact, fast, binary data format.
  • A container file, to store persistent data.
  • Remote procedure call (RPC).
  • Simple integration with dynamic languages. Code generation is not required to read or write data files nor to use or implement RPC protocols. Code generation as an optional optimization, only worth implementing for statically typed languages.

Avro is roughly similar to [Protocol Buffers][protocol-buffers], in that they both deal with structured data (as opposed to JSON and [MessagePack] for example). This allows for various benefits: for example built-in data validation, and faster, more compact encodings.

Browser support

Compatibility table

avsc is tested against a variety of browsers using Sauce Labs.

Browser compatibility table

Distributions

avsc comes in multiple flavors to help minimize code size. Depending on which module you require, you will get a different distribution:

  • 'avsc/etc/browser/avsc': the full distribution (~51kB minified and compressed), including serialization, protocols, and Avro file support. This is also the default distribution you get when you require('avsc') directly.
  • 'avsc/etc/browser/avsc-prototols': a slightly lighter distribution (~34kB) which doesn't include file support.
  • 'avsc/etc/browser/avsc-types': the lightest distribution (~20kB) which only includes serialization support.

Note that in all the above cases, the core avsc libraries only represent a fraction of the total size (~15kB with everything included). If you were already using some of avsc's dependencies (e.g. 'events'), your bundle will increase by less than the sizes indicated.

Clone this wiki locally