Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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 127 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.