PSON icon indicating copy to clipboard operation
PSON copied to clipboard

A super efficient binary serialization format for JSON.

Results 12 PSON issues
Sort by recently updated
recently updated
newest added

When I encode a big integer(bigger than 2^31), it overflow and got a negative value in Node.js This is because parseInt doesn't limit integer value in 32bit: ```javascript > parseInt(12345678901234)...

Is this project still active? Is there any performance benchmark comaring PSON and protobuff.js?

``` warning in ./node_modules/ByteBuffer/dist/ByteBufferAB.js There are multiple modules with names that only differ in casing. This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Use...

pson/index.js May be problem here. ```js var path = require("path"), PSON = require(path.join(__dirname, "dist", "PSON.js")); ``` webpack: ``` 17:11-59 Critical dependency: the request of a dependency is an expression @...

An implementation of Protocol JSON for JAVA https://github.com/shumin1027/JPSON

Is there a max size JSON that can be processed? I'm trying to use a `staticPair()` and for the `decode()` I get ``` ByteBufferAB.js:362 Uncaught TypeError: Illegal buffer ``` Thoughts...

Has anyone done a C#/.NET implementation of PSON yet? This looks like a nice alternative on the client side, and it would be nice to be able to have our...

Hi, i have some problem with encoding ObjectId (mongodb type). Is it possible to make all the ObjectId converted to string?