json-sorted-stringify

Alternative JSON.stringify function with sorted keys, so the output is stable.

MIT 3 个版本
安装
npm install json-sorted-stringify
yarn add json-sorted-stringify
pnpm add json-sorted-stringify
bun add json-sorted-stringify
README

JSON Sorted Stringify

Alternative JSON.stringify function with sorted keys, so the output is stable.

Install

npm install json-sorted-stringify

Usage

import stringify from 'json-sorted-stringify';

// Let's stringify in a sorted/stable manner

stringify ({ a: 1, b: 2 }); // => '{"a":1,"b":2}'
stringify ({ b: 2, a: 1 }); // => '{"a":1,"b":2}'

License

MIT © Fabio Spampinato

版本列表
1.0.2 2025-08-18
1.0.1 2025-01-18
1.0.0 2023-02-17