
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
json-keys-sort
Advanced tools
Sorting a json object based on keys either ascending or descending & even recursively
Sorting a json object based on keys either ascending or descending & even recursively
npm install json-keys-sort
or
yarn add json-keys-sort
Note : focus on keys not values
const json = require('json-keys-sort');
var data = {
"zoho": 4,
"drake": 2,
"yogo": {
"jout": "3.2",
"aou": {
"yoyo": "3.1.3",
"aalo": "3.1.1",
"go": "3.1.2"
}
},
"abc": 1
}
// sync (return sorted data)
json.sort(data, true)
// async (return promise of sorted data)
json.sortAsync(data, true)
Output will be -
{
"abc": 1,
"drake": 2,
"yogo": {
"aou": {
"aalo": "3.1.1",
"go": "3.1.2",
"yoyo": "3.1.3"
},
"jout": "3.2"
},
"zoho": 4
}
function parameters (for both sort & sortAsync)
json.sort(data)
or json.sortAsync(data)
The function work recursively and sort all the inner json objects too.
v2.1.0
v2.0.0
v1.3.1
v1.3.0
v1.2.0
v1.1.0
v1.0.1
v1.0.0
sort
function only.Pull requests are always welcomed (kindly sign commits with GPG keys. THANKS)
Twitter - @dawnimpulse
Email - dawnimpulse@gmail.com
This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
ISC License
Copyright 2021, Saksham Khurana (DawnImpulse)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted,
provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
OR PERFORMANCE OF THIS SOFTWARE.
Written with StackEdit.
FAQs
Sorting a json object based on keys either ascending or descending & even recursively
The npm package json-keys-sort receives a total of 2,494 weekly downloads. As such, json-keys-sort popularity was classified as popular.
We found that json-keys-sort 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.