Convert PascalCase strings to camelCase from the command line. Zero dependencies.
npm install -g @kszongic/pascal2camel-cli# Single string
$ pascal2camel MyComponent
myComponent
# Multiple strings
$ pascal2camel GetUserName SetValue
getUserName
setValue
# From stdin
$ echo "FooBar" | pascal2camel
fooBar| Flag | Description |
|---|---|
-h, --help |
Show help message |
-v, --version |
Show version number |
MIT © 2026 kszongic