
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
camelify-recursive
Advanced tools
Have an API response that doesn't use JavaScript-style casing?
Want to be able to use the data in the response without having to fix the case all the time?
Let camelify do the work.
Cwmelify-recursive will recursively convert all the keys in the object to camelCase, so you can use those keys directly in your JavaScript (or JSON database) and not have to worry about converting things manually all the time.
The word ID
will always be in uppercase as you'd expect.
{
api_version: "0.3.2",
results: {
page: 1,
per_page: 30,
id: 123456,
banana_id: 123,
total_pages: 1,
total_count: 0,
filings: []
}
};
{
apiVersion: "0.3.2",
results: {
page: 1,
perPage: 30,
ID: 123456,
bananaID: 123,
totalPages: 1,
totalCount: 0,
filings: []
}
};
Just:
const camelify = require('camelify-recursive')
Then, to fix the object someObject
someObject = camelify(someObject)
FAQs
Recursively convert an API response to camelCase
The npm package camelify-recursive receives a total of 82 weekly downloads. As such, camelify-recursive popularity was classified as not popular.
We found that camelify-recursive 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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.