
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
json.sortify
Advanced tools
A deterministic version of JSON.stringify that sorts object keys alphabetically.
A deterministic version of JSON.stringify that sorts object keys alphabetically.
Inspired by http://stackoverflow.com/questions/8931967/is-there-a-deterministic-equivalent-of-json-stringify
$ npm install json.sortify
let jsonSortify = require('json.sortify');
or
JSON.sortify = require('json.sortify');
or even
JSON.stringify = require('json.sortify');
JSON.sortify is fully compatible with JSON.stringify, so you can overwrite the native implementation without any problems.
Download JSON.sortify.js and save it to your server.
<script src="JSON.sortify.js"></script> <!-- will inject the JSON.sortify() function -->
Or, if you're using bower, type bower install json.sortify.
<script src="bower_components/json.sortify/dist/JSON.sortify.js"></script>
JSON.sortify can be used exactly like JSON.stringify. As mentioned above, you can overwrite JSON.stringify if you want to:
<script src="JSON.sortify.js"></script>
<script>JSON.stringify = JSON.sortify</script>
You can also use JSON.sortify as an AMD module:
require(['json.sortify'], function (jsonSortify) { … });
Use JSON.sortify exactly like JSON.stringify. Refer to MDN:JSON/stringify for details.
JSON.sortify({a:1,b:2});
{"a":1,"b":2}
JSON.sortify({b:1,a:2,c:3,5:4});
{"5":4,"a":2,"b":1,"c":3}
JSON.sortify({b:1,a:2}, null, 2);
{
"a": 2,
"b": 1
}
JSON.sortify({b:1,foo:2,a:3}, ['a', 'foo'], 4);
{
"a": 3,
"foo": 2
}
JSON.sortify({b:1,foo:'woot',a:3}, function (key, value) {
return typeof value == 'string' ? value + '!!!' : value;
}, '\t');
{
"a": 3,
"b": 1,
"foo": "woot!!!"
}
FAQs
A deterministic version of JSON.stringify that sorts object keys alphabetically.
The npm package json.sortify receives a total of 8,647 weekly downloads. As such, json.sortify popularity was classified as popular.
We found that json.sortify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.