react-attr-converter

v0.0.1
Convert HTML attribute names to React props
react attribute props

react-attr-converter travis-ci

Convert HTML attribute names to React props.

Convert how?

It converts HTML attribute names into prop names used by React.

convert('class'); // => 'className'
convert('for'); // => 'htmlFor'
convert('onclick'); // => 'onClick'
convert('onCLICK'); // => 'onClick'

It bypasses attribute names which are not supported by React.

convert('data-hello'); // => 'data-hello'
convert('lovelive'); // => 'lovelive'

How to use

Install with NPM:

npm i --save react-attr-converter

Import with CommonJS or whatever:

const convert = require('react-attr-converter');

import convert from 'react-attr-converter';
import * as convert from 'react-attr-converter'; // both of them work

A bug!

When a bug is found, please report them in Issues.

Also, any form of contribution(especially a PR) will absolutely be welcomed :beers:

License

MIT

Metadata

  • MIT
  • Whatever
  • Hyunje Alex Jun
  • released 12/19/2015

Downloads

Maintainers