npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ovotech/avro-ts-cli

v3.6.0

Published

A cli to convert avro schemas into typescript interfaces

Downloads

29,011

Readme

Avro Typecript CLI

Command line tool to convert Avro Schemas into typescript files. More precicely it generates the typescript that would describe the objects that avsc produces.

Usage Example

Usage

yarn global add @ovotech/avro-ts-cli

avro-ts --help
avro-ts avro-schema-file.json
avro-ts avro-dir/*.json
avro-ts avro-dir/*.json --output-dir src/__generated__/
avro-ts avro-dir/*.json --logical-type date=string

Options:

  • -h, --help - output usage information
  • -e, --defaults-as-optional - Fields with defaults as optional
  • -O, --output-dir <outputDir> - Directory to write typescript files to
  • --with-typescript-enums - Typescript Enum declarations instead of string union
  • --logical-type <logicalType> - Logical type, example: date=string (default: {})
  • --logical-type-import <logicalType> - Logical type import custom module, example: date=Decimal:decimal.js (default: {})
  • --logical-type-import-all <logicalType>- Logical type import custom module as *, example: date=Decimal:decimal.js (default: {})
  • --logical-type-import-default <logicalType>- Logical type import custom module as default, example: date=Decimal:decimal.js (default: {})
  • -h, --help - output usage information

Logical Types

Avro has logical types. In their docs:

The built-in types provided by Avro are sufficient for many use-cases, but it can often be much more convenient to work with native JavaScript objects.

To support them we need to modify the typescript generation to use the typescript type instead of the logical type. If we don't avro-ts will fall back on the original underlying type.

If we had this json avro schema:

examples/event-1.json

{
  "type": "record",
  "name": "Event",
  "fields": [
    { "name": "id", "type": "int" },
    { "name": "createdAt", "type": { "type": "int", "logicalType": "date" } }
  ]
}
avro-ts examples/event-1.json --logical-type date=string

THis would output this file. Notice that the type of createdAt is not int but string. This is the logical types in action.

examples/event-1.json.ts

export type AvroType = Event;

export interface Event {
  id: number;
  createdAt: number;
}

Custom logical types

We can also use custom classes for our logical types. It will also add the code to import the module.

examples/event-2.json

{
  "type": "record",
  "name": "Event",
  "fields": [
    { "name": "id", "type": "int" },
    { "name": "decimalValue", "type": { "type": "long", "logicalType": "decimal" } },
    { "name": "anotherDecimal", "type": { "type": "long", "logicalType": "decimal" } }
  ]
}
avro-ts examples/event-2.json --logical-type-import decimal=Decimal:decimal.js

examples/event-2.json.ts

export type AvroType = Event;

export interface Event {
  id: number;
  decimalValue: number;
  anotherDecimal: number;
}

If you need to use a default import you can use --logical-type-import-default

avro-ts examples/event-2.json --logical-type-import-default decimal=Decimal:decimal.js
import Decimal from 'decimal.js';

And ``--logical-type-import-all` for a synthetic default import

avro-ts examples/event-2.json --logical-type-import-all decimal=Decimal:decimal.js
import * as Decimal from 'decimal.js';

Running the tests

You can run the tests with:

yarn test

Coding style (linting, etc) tests

Style is maintained with prettier and eslint

yarn lint

Screencasting

We use termtosvg to generate the docs svg aniamtion.

termtosvg record -g 100x35 docs/avro-ts.cast
...
termtosvg render docs/avro-ts.cast docs/avro-ts.svg -D 5000 -M 150 -t docs/template.svg

First we record the cast, then we modify it as necessary (remove exit at the end) then we render it to an svg.

Deployment

Deployment is preferment by lerna automatically on merge / push to main, but you'll need to bump the package version numbers yourself. Only updated packages with newer versions will be pushed to the npm registry.

Contributing

Have a bug? File an issue with a simple example that reproduces this so we can take a look & confirm.

Want to make a change? Submit a PR, explain why it's useful, and make sure you've updated the docs (this file) and the tests (see test folder).

License

This project is licensed under Apache 2 - see the LICENSE file for details