jdeserialize
v0.2.0
Published
A library to deserialize Java Object Streams
Downloads
15
Maintainers
Readme
jdeserialize
JDeserialize is a library to deserialize Java Object Streams v2.
This library is in Beta. As such, it is incomplete and does not function as expected with some real world data. Additionally, undocumented breaking changes are expected with the data output as issues with the library are addressed.
Note: Version 1 streams are are only used by very old version of Java and are therefore not supported by this library.
Installation
$ npm install jdeserialize
Usage
const JDeserialize = require('jdeserialize');
let deserializer = new JDeserialize();
let obj = deserializer.read(buff);
API
.read(buff)
Reads the contents of the Buffer buff
and creates an JavaScript Object