avsc
avsc copied to clipboard
Avro for JavaScript :zap:
**Context:** - Strict CSP policy doesn't allow the use of `new Function` as it could cause security vulnerabilities (it is similar to doing `eval`) **Fixes:** - As part of using...
Following up from #224 this is the more minimal refactor. It did not improve the rolled up size much as I hoped (95k vs 68k but either way is better...
I've been looking through your library and I found the `extractFileHeader` and it works great. My only issue is that we are running in a cloud environment and dealing with...
Thanks for the hard work on this - great project. Any plans to include type definitions for TypeScript?
Are there any plans to support generating the [Rabin 64 bit fingerprint](https://avro.apache.org/docs/1.7.7/api/java/org/apache/avro/SchemaNormalization.html#fingerprint64(byte[])) for a schema? There's currently [a standalone package](https://github.com/spikepanx/avro-crc64) that does this, but it seems like it would make...
Built a standalone browser(javascript) distribution bundle from the `etc/browser` folder using the following browserify command: `browserify --standalone avro avsc.js | uglify -o "dist/avsc.js"` Tested the `BlockEncoder` class using the function...
Given the following code: ```js import avsc from 'avsc'; const userSchemaV1 = { type: 'record', name: 'User', fields: [] }; const userSchemaV2 = { type: 'record', name: 'User', fields: []...
Hello! I've just learned of this [new feature](https://github.com/confluentinc/schema-registry/pull/1280) of Schema Registry (see some usage [here](https://github.com/confluentinc/schema-registry/issues/1439)). I'm not entirely certain around when that feature has been/will be released but I imagine...
I understand that circular schema references (see example below) are supported for avsc schemas, however I was not able to get them working in avdl schemas; they will error when...