Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
arrangekeys
Advanced tools
Returns a copy of a JavaScript object with the keys arranged in a specified order. Useful for formatting JSON files.
Returns a copy of a JavaScript object with the keys arranged in a specified order. Useful for formatting JSON files.
require('arrangekeys')
npm install --save arrangekeys
var data = {
a: 1,
b: 2,
c: 3,
z: 4
}
console.log(
require('arrangekeys')(data, 'b c a')
) /* {
b: 2,
c: 3,
a: 1,
z: 4
} */
Discover the change history by heading on over to the HISTORY.md
file.
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
No contributors yet! Will you be the first?
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Licensed under the incredibly permissive MIT license
Copyright © 2014+ Bevry Pty Ltd us@bevry.me (http://bevry.me)
v1.0.0 2014 July 27
FAQs
Returns a copy of a JavaScript object with the keys arranged in a specified order. Useful for formatting JSON files.
The npm package arrangekeys receives a total of 256 weekly downloads. As such, arrangekeys popularity was classified as not popular.
We found that arrangekeys demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.