Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
camel-case
Advanced tools
Transform into a string with the separator denoted by the next word capitalized
The camel-case npm package is a utility for converting strings into camelCase text. It is often used in programming environments where camelCase is the standard naming convention for identifiers, such as in JavaScript. This package can be particularly useful for formatting strings received from different sources (like user input or external APIs) to match the camelCase naming convention used in a codebase.
Convert string to camelCase
This feature allows you to convert any string, including phrases with spaces or special characters, into camelCase. It's useful for standardizing text input for variable names, object keys, or any other identifiers in code.
const { camelCase } = require('camel-case');
const result = camelCase('hello world');
console.log(result); // 'helloWorld'
change-case is a comprehensive string transformation library that includes camelCase among many other case transformations. It provides more extensive functionality compared to camel-case, which focuses solely on camel casing.
param-case is another package from the same family as camel-case, designed for converting strings into kebab-case (or param-case). While it serves a different specific case conversion, it is similar in its simplicity and focus.
snake-case converts strings to snake_case. Like camel-case, it is focused on a specific string transformation, making it similar in its targeted functionality but different in the type of casing it applies.
Transform into a string with the separator denoted by the next word capitalized.
npm install camel-case --save
import { camelCase } from "camel-case";
camelCase("string"); //=> "string"
camelCase("dot.case"); //=> "dotCase"
camelCase("PascalCase"); //=> "pascalCase"
camelCase("version 1.2.10"); //=> "version_1_2_10"
The function also accepts options
.
If you'd like to remove the behavior prefixing _
before numbers, you can use camelCaseTransformMerge
:
import { camelCaseTransformMerge } from "camel-case";
camelCase("version 12", { transform: camelCaseTransformMerge }); //=> "version12"
MIT
FAQs
Transform into a string with the separator denoted by the next word capitalized
The npm package camel-case receives a total of 14,753,858 weekly downloads. As such, camel-case popularity was classified as popular.
We found that camel-case 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.