Skip to content

negomi/html-attribute-to-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

html-attribute-to-react

Get the React equivalent of any native HTML attribute.

Why?

There are a number of attributes that work differently between React and HTML. For example:

  • In React, most DOM properties and attributes should be camelCased
  • class in HTML becomes className in React
  • aria-* and data-* attributes stay the same

If you need to programmatically convert HTML to React, this package handles the attribute conversion for you.

Installation

yarn add html-attribute-to-react --save

Usage

import htmlAttributeToReact from 'html-attribute-to-react';

htmlAttributeToReact('class');
// returns 'className'

htmlAttributeToReact('tabindex');
// returns 'tabIndex'

htmlAttributeToReact('aria-label');
// returns 'aria-label'

htmlAttributeToReact('some-custom-attribute');
// returns 'some-custom-attribute'

To get the full attribute map:

import { attributes } from 'html-attribute-to-react';

attributes['class'];
// 'className'

About

Get the React equivalent of any native HTML attribute

Resources

License

Stars

Watchers

Forks

Packages

No packages published