Patrick Gansterer
Patrick Gansterer
ATM cbor.js ignores all tagged vales and lets the user handle the tags. [IANA](https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml) lists many other tags which are not support by this library. Do we really want to...
What would be the benefit of splitting the cbor package into meta+encode+decode? What would you think about a decoder-registry: ``` js var typedArrayTags = []; for (var i = 64;...
Splitting: IMHO the overhead of downloading 2 or 3 files compared to one when you need encoder and decoder is more relevant than the file size (4KB in the minified...
> What about the other way around? By default, the CBOR.encode and decode > functions could use the global registry. And if you don't want that, you > can supply...
Sorry for the long delay, but finally I did a first implementation of it in the [registerDecoder branch](https://github.com/paroga/cbor-js/tree/registerDencoder). If you agree on the API, I'll add the missing test and...
I implemented the UNregister functions, for doing the testing stuff you wrote about. Can you tell me more about the use-case for different registries? To me it seams strange that...
me neither, but thinking about an additional registry parameter seams even worse to me, but maybe i find a nice solution when finishing the code and documentation. Does it fit...
@ApacheEx sorry if i mention the wrong person, but can somebody comment on this PR? Is there any chance to get it merged into `master`?
the three main selling points of my wrapper are: * "automatic" memory management (e.g. you cannot miss to free a `natsMsg*` in a callback) * more natural C++ syntax: `nats::Msg...
on Linux `libclang.so` gets provided by the clang development packages (e.g. [libclang-dev](https://packages.debian.org/buster/libclang-dev). `pip` installs only the python wrapper for it. sorry for not mentioning that. > is that something users...