Skip to content

mtth/avsc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

91d653f · Apr 10, 2025
Sep 28, 2024
Sep 21, 2024
Oct 9, 2024
Oct 13, 2024
Sep 29, 2024
Jan 9, 2025
Jan 10, 2023
Jan 10, 2023
Jan 10, 2023
Feb 8, 2016
Nov 5, 2017
Apr 10, 2025
Aug 8, 2023
Sep 28, 2024
Sep 28, 2024

Repository files navigation

Avsc NPM version Download count CI Coverage status

Pure JavaScript implementation of the Avro specification.

Features

Installation

$ npm install avsc

Documentation

Examples

const avro = require('avsc');
  • Encode and decode values from a known schema:

    const type = avro.Type.forSchema({
      type: 'record',
      name: 'Pet',
      fields: [
        {
          name: 'kind',
          type: {type: 'enum', name: 'PetKind', 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 (see the BlockDecoder API for an example compressed using Snappy):

    avro.createFileDecoder('./values.avro')
      .on('metadata', function (type) { /* `type` is the writer's type. */ })
      .on('data', function (val) { /* Do something with the decoded value. */ });