Package Exports
- avsc
- avsc/etc/browser/avsc
- avsc/etc/browser/avsc-protocols
- avsc/etc/browser/avsc-types
- avsc/etc/browser/avsc.js
- avsc/etc/browser/lib/crypto.js
- avsc/etc/browser/lib/files.js
- avsc/lib
- avsc/lib/containers
- avsc/lib/files
- avsc/lib/types
- avsc/lib/utils
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (avsc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Avsc

Pure JavaScript implementation of the Avro specification.
Features
- Blazingly fast and compact serialization! Typically faster than JSON with much smaller encodings.
- All the Avro goodness and more: type inference, schema evolution, and remote procedure calls.
- Support for serializing arbitrary JavaScript objects.
- Unopinionated 64-bit integer compatibility.
Installation
$ npm install avscavsc is compatible with all versions of node.js since 0.11 and major
browsers via browserify (see the full compatibility table
here). For convenience, you can also find compiled
distributions with the releases (but please host your own copy).
Documentation
Examples
Inside a node.js module, or using browserify:
const avro = require('avsc');Encode and decode values from a known schema:
const type = avro.Type.forSchema({ type: 'record', fields: [ {name: 'kind', type: {type: 'enum', symbols: ['CAT', 'DOG']}}, {name: 'name', type: 'string'} ] }); const buf = type.toBuffer({kind: 'CAT', name: 'Albert'}); // Encoded buffer. const val = type.fromBuffer(buf); // = {kind: 'CAT', name: 'Albert'}
Infer a value's schema and encode similar values:
const type = avro.Type.forValue({ city: 'Cambridge', zipCodes: ['02138', '02139'], visits: 2 }); // We can use `type` to encode any values with the same structure: const bufs = [ type.toBuffer({city: 'Seattle', zipCodes: ['98101'], visits: 3}), type.toBuffer({city: 'NYC', zipCodes: [], visits: 0}) ];
Get a readable stream of decoded values from an Avro container file:
avro.createFileDecoder('./values.avro') .on('metadata', (type) => { /* `type` is the writer's type. */ }) .on('data', (val) => { /* Do something with the decoded value. */ });
Implement a TCP server for an IDL-defined protocol:
// We first generate a protocol from its IDL specification. const protocol = avro.readProtocol(` protocol LengthService { /** Endpoint which returns the length of the input string. */ int stringLength(string str); } `); // We then create a corresponding server, implementing our endpoint. const server = avro.Service.forProtocol(protocol) .createServer() .onStringLength(function (str, cb) { cb(null, str.length); }); // Finally, we use our server to respond to incoming TCP connections! require('net').createServer() .on('connection', (con) => { server.createChannel(con); }) .listen(24950);