
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
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 22,957,737 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.