npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

remeda-humps

v4.1.0

Published

Recursive camelCase of object keys and arrays of objects. Powered by Remeda, written in TypeScript.

Readme

remeda-humps

npm license types

Converting object keys to camelCase. Works on deeply nested objects/arrays. Handy for converting underscore keys to camelCase. Written in TypeScript and powered by Remeda — small, tree-shakeable, and fully typed.

Install

$ npm i remeda-humps

remeda is a peer-friendly runtime dependency and is installed automatically.

Usage

Converting object keys

Removes any hyphens, underscores, and whitespace characters, and uppercases the first character that follows. Returns a new object. See Remeda's toCamelCase() and https://en.wikipedia.org/wiki/CamelCase.

import humps from 'remeda-humps'

const object = { attr_one: 'foo', attr_two: 'bar', attr_three: { attr_one: 'foo' } }
humps(object) // { attrOne: 'foo', attrTwo: 'bar', attrThree: { attrOne: 'foo' } }

Arrays of objects are also converted:

const array = [{ attr_one: 'foo' }, { attr_one: 'bar' }]
humps(array) // [{ attrOne: 'foo' }, { attrOne: 'bar' }]

Custom key converter

Want to convert keys the other way, or with your own rule? Import createHumps from the subpath and pass any (key: string) => string converter — for example Remeda's toSnakeCase:

import createHumps from 'remeda-humps/createHumps'
import { toSnakeCase } from 'remeda'

const snakes = createHumps(toSnakeCase)
const object = { attrOne: 'foo', attrTwo: 'bar', attrThree: { attrOne: 'foo' } }
snakes(object) // { attr_one: 'foo', attr_two: 'bar', attr_three: { attr_one: 'foo' } }

TypeScript

humps has two call shapes. Called plainly, it infers the result type from the input — convenient when the keys already line up with your type. Called with an explicit type argument, it asserts the converted shape you expect, since the runtime keys change but the structure stays the same:

import humps from 'remeda-humps'

interface ApiUser { first_name: string }
interface User { firstName: string }

const apiUser: ApiUser = { first_name: 'Ada' }

const inferred = humps(apiUser)        // typed as ApiUser (structure unchanged)
const user = humps<User>(apiUser)      // typed as User

CommonJS

The default export is CommonJS-friendly, so require returns the function directly:

const humps = require('remeda-humps')
const createHumps = require('remeda-humps/createHumps')

Behaviour notes

  • Only plain objects (created by the Object constructor / object literals) have their keys converted. Class instances, dates, etc. are returned untouched — wrap them in a spread, e.g. humps({ ...someInstance }), if you need them processed.
  • Only object values are recursed into; primitive and function values are preserved as-is, including function properties.

Migrating from lodash-humps

remeda-humps is the TypeScript + Remeda successor to lodash-humps.

  • Default humps import is unchanged.
  • createHumps moved from lodash-humps/lib/createHumps to the remeda-humps/createHumps subpath export.
  • Key casing is now produced by Remeda's toCamelCase instead of _.camelCase; output is equivalent for the common underscore/hyphen/space/UPPERCASE cases.

Prior Art

License

ISC © Kai Curry