json-int64

1.0.3 • Public • Published

Build Status

json-int64

JSON.parse/stringify with Int64 support. Based on Douglas Crockford JSON.js package and node-int64.js library.

Example:

var JSONInt64 = require('json-int64');

var json = '{ "value" : 9223372036854775807, "v2": 123 }';
console.log('Input:%s\n', json);
var parsedValue = JSONInt64.parse(json);
console.log('Parsed int64 value: ', JSONInt64.util.toDecimalString(parsedValue.value));
console.log('Value after performing stringify operation on JS object:', JSONLong.stringify(parsedValue));

Output:

Input: { "value" : 9223372036854775807, "v2": 123 }
Parsed int64 value:   9223372036854775807
Value after performing stringify operation on JS object: {"value":9223372036854775807,"v2":123}

LICENSE

Apache 2.0

Package Sidebar

Install

npm i json-int64

Weekly Downloads

3,637

Version

1.0.3

License

Apache-2.0

Unpacked Size

44.7 kB

Total Files

9

Last publish

Collaborators

  • unscrambl-internal
  • hcma
  • bgedik
  • sabolac
  • mzyil
  • mustafa-cosar