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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ballin-team/data-format

v1.6.0

Published

The best and performative way to convert naming convention

Downloads

12

Readme

Quality Gate Status Coverage Security Rating Vulnerabilities Bugs Lines of Code

Table of Contents


Introduction

Hey everyone!

If you need help maintaining the naming convention in your application, this library is perfect for you. The data-format gives you methods to convert the naming convention, like snake_case, camelCase, flatcase, kebab-case.

🧗 Getting Started

From camelCase to snake_case

 import { camelToSnake } from '@ballin-team/data-format';

 const user = { id: 1, firstName: 'John', lastName: 'Cena'};
 const snakeObject = camelToSnake(user);
 console.log(snakeObject); // { id: 1, first_name: 'John', last_name: 'Cena'}

From camelCase to flatcase

 import { camelToFlat } from '@ballin-team/data-format';

 const user = { id: 3, firstName: 'Undertaker', lastName: null };
 const flatObject = camelToFlat(user);
 console.log(flatObject); // { id: 3, firstname: 'Undertaker', lastname: null }

From camelCase to kebab-case

 import { camelToKebab } from '@ballin-team/data-format';

 const user = { id: 3, firstName: 'Undertaker', lastName: null };
 const kebabObject = camelToKebab(user);
 console.log(kebabObject); // { id: 3, 'first-name': 'Undertaker', 'last-name': null }

From snake_case to camelCase

 import { snakeToCamel } from '@ballin-team/data-format';

 const user = { id: 2, first_name: 'Rey', last_name: 'Mysterio'};
 const camelObject = snakeToCamel(user);
 console.log(camelObject); // { id: 2, firstName: 'Rey', lastName: 'Mysterio'}

From snake_case to flatcase

 import { snakeToFlat } from '@ballin-team/data-format';

 const user = { id: 3, first_name: 'Undertaker', last_name: null };
 const flatObject = snakeToFlat(user);
 console.log(flatObject); // { id: 3, firstname: 'Undertaker', lastname: null }

From snake_case to kebab-case

 import { snakeToKebab } from '@ballin-team/data-format';

 const user = { id: 3, first_name: 'Undertaker', last_name: null };
 const kebabObject = snakeToKebab(user);
 console.log(kebabObject); // { id: 3, 'first-name': 'Undertaker', 'last-name': null }

From kebab-case to snake_case

 import { kebabToSnake } from '@ballin-team/data-format';

 const user = { id: 3, 'first-name': 'Undertaker', 'last-name': null };
 const snakeObject = kebabToSnake(user);
 console.log(snakeObject); // { id: 3, first_name: 'Undertaker', last_name: null }

From kebab-case to camelCase

 import { kebabToCamel } from '@ballin-team/data-format';

 const user = { id: 3, 'first-name': 'Undertaker', 'last-name': null };
 const camelObject = kebabToCamel(user);
 console.log(camelObject); // { id: 3, firstName: 'Undertaker', lastName: null }

For repetitive key names

For huge data with repetitive key names you can pass the argument useCache as true to avoid convert the same key many times.

 import { snakeToCamel } from '@ballin-team/data-format';

 const users = [
   { id: 1, first_name: 'John', last_name: 'Cena'},
   { id: 2, first_name: 'Rey', last_name: 'Mysterio'},
   ...,
 ];
 
 const hugeAndRepeatedKeys = snakeToCamel(users, true); // [{ id: 1, firstName: 'John', lastName: 'Cena'}, { id: 2, firstName: 'Rey', lastName: 'Mysterio'}, ...]