npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@haixing_hu/json

v1.1.0

Published

A JavaScript library for parsing and formatting JSON data.

Downloads

274

Readme

增强的 JSON 解析器,支持大整数和集合

npm package License English Document CircleCI Coverage Status

@haixing_hu/json 是一个 JavaScript 库,它扩展了标准 JSON 对象的功能,提供了对超出 JavaScript 安全范围的大数字的强大支持。该库增强了解析和字符串化能力,使其非常适合处理大型数据集和复杂的数值操作, 同时保持 JSON 的结构。

主要功能

  • BigInt 支持:在解析 JSON 字符串时,超出 JavaScript 安全整数范围的数字会自动转换为原生 BigInt, 确保精度不丢失。
  • LosslessNumber 处理:对于无法在 JavaScript 中准确表示的浮点数,该库引入了 LosslessNumber 对象。 这个轻量级对象以字符串形式保存完整的数值精度,允许灵活地转换为数字或 BigInt 进行数学运算。
  • 精确的字符串化:在字符串化过程中,BigInt 值会作为字符串序列化,不带 “n” 后缀,以保持与标准 JSON 格式的兼容性。 同样,LosslessNumber 对象使用其内部字符串表示进行序列化。
  • 集合序列化:JavaScript 原生的集合类型如 SetMap 会无缝地序列化为数组,以便更好地与 JSON 结构兼容。

有关为什么 JSON 解析可能会破坏大数字以及该库如何帮助解决该问题的更多详细信息,请参阅 Why does JSON.parse corrupt large numbers and how to solve this?

安装

使用 npm 或 yarn 安装该库:

npm install @haixing_hu/json

yarn add @haixing_hu/json

核心功能

类似 JSON 的对象

该库提供了一个类似于标准 JSON 对象的对象,但具有增强的功能,用于处理大整数、浮点数以及集合类型如 Set 和 Map。

import Json from '@haixing_hu/json';

// parse numbers outside the safe range
const str1 = '{"decimal":2.370,"big_int":9123372036854000123,"big_float":2.3e+500}';
const obj1 = Json.parse(text);
console.log(obj1.decimal);   // 2.37
console.log(obj1.big_int);   // 9123372036854000123n
console.log(obj1.big_float); // LosslessNumber { value: '2.3e+500', isLosslessNumber: true }
console.log(String(obj1.big_float)); // '2.3e+500'

// stringify numbers outside the safe range
const json1 = Json.stringify(obj1);
console.log(json1); // '{"decimal":2.37,"big_int":9123372036854000123,"big_float":"2.3e+500"}'

// stringify collections
const obj2 = { 
  x: new Set([{ a: 1 }, { b: 2 }, { c: 3 }]),
  y: new Map([[1, { a: 2 }], [2, { b: 4 }]]),
};
const json2 = Json.stringify(obj);
console.log(json2); // '{"x":[{"a":1},{"b":2},{"c":3}],"y":[[1,{"a":2}],[2,{"b":4}]]}'

const json3 = Json.stringify(obj, null, 2);
console.log(json3); // 

LosslessNumber 类

LosslessNumber 类用于处理具有完整精度的浮点数,避免截断或舍入问题。

import Json from '@haixing_hu/json';
const parsed = Json.parse('{"float": 1.234567891234567891234}');
console.log(parsed.float);  // LosslessNumber { value: '1.234567891234567891234' }

// Convert LosslessNumber to standard number
console.log(parsed.float.valueOf());  // 1.2345678912345679 (standard JS number)

实用函数

该库提供了一组实用函数,用于处理大数字并确保安全转换。

isBigInt(value)

检查一个字符串是否表示 BigInt(即是否以 "n" 结尾)。

import { isBigInt } from '@haixing_hu/json';

console.log(isBigInt('12345n'));  // true
console.log(isBigInt('12345'));   // false

isInteger(value)

检查一个字符串是否表示整数。

import { isInteger } from '@haixing_hu/json';

console.log(isInteger('12345'));  // true
console.log(isInteger('123.45')); // false

isNumber(value)

检查一个字符串是否表示数字。

import { isNumber } from '@haixing_hu/json';

console.log(isNumber('12345'));     // true
console.log(isNumber('-123.45'));   // true
console.log(isNumber('1.23e-11'));  // true
console.log(isNumber('abc'));       // false

isSafeNumber(value, options)

检查一个字符串是否表示在 JavaScript 安全范围内的数字。

import { isSafeNumber } from '@haixing_hu/json';

console.log(isSafeNumber('12345'));     // true
console.log(isSafeNumber('12345678901234567890')); // false
console.log(isSafeNumber('123.45678901234567890')); // false
console.log(isSafeNumber('123.45678901234567890', { approx: true, requiredDigits: 16 })); // true

getUnsafeReason(value)

解释为什么由字符串表示的数字不安全,返回以下原因之一:

  • 'overflow'(溢出)
  • 'underflow'(下溢)
  • 'truncate_integer'(整数截断)
  • 'truncate_float'(浮点数截断)
  • 'none':当值是安全时
import { getUnsafeReason } from '@haixing_hu/json';

console.log(getUnsafeReason('12345'));     // Output: 'none'
console.log(getUnsafeReason('12345678901234567890')); // Output: 'truncate_integer'
console.log(getUnsafeReason('-12345678901234567890.123'));  //  Output: 'truncate_float'
console.log(getUnsafeReason('-1e+1000'));   // Output: 'overflow'
console.log(getUnsafeReason('1e-324'));     // Output: 'underflow'

toSafeNumberOrThrow(value, options)

如果可以安全转换,将字符串转换为数字。如果数字不安全,则抛出错误并解释原因。

import { toSafeNumberOrThrow } from '@haixing_hu/json';

try {
  console.log(toSafeNumberOrThrow('-12345678901234567890'));
} catch (e) {
  console.error(e.message);  // Output: 'Cannot safely convert to number: the value '-12345678901234567890' would truncate integer and become -12345678901234567000'
}

console.log(toSafeNumberOrThrow('9007199254740991'));  // Output: 9007199254740991

贡献

如果您发现任何问题或有改进建议,请随时在 [GitHub 仓库] 上提交 issue 或 pull request。

许可证

@haixing_hu/json 根据 Apache 2.0 许可证分发。详情请参阅 LICENSE 文件。

致谢

该项目基于并集成了多个开源库的代码,这些库在处理大数字和自定义 JSON 解析方面做出了重要贡献。我们想特别感谢以下项目的作者:

  • json-bigint:提供对使用 BigInt 解析和字符串化 JSON 的支持,使得可以精确处理大数字。
  • lossless-json:一个确保在处理浮点数时保持完全精度的库,提供无损的 JSON 数字处理。
  • json-custom-numbers:允许在 JSON 解析和字符串化过程中自定义数字处理,提供灵活的数值表示。

我们对这些贡献者的工作表示感谢,这些工作对本库功能的实现起到了至关重要的作用。