react-decompiler

0.2.1 • Public • Published

react-decompiler build-status

Decompiles react components back into jsx strings.

Install react-decompiler

npm install react-decompiler

Use it

import {decompile} from 'react-decompiler';
 
let component = (<div>
    <h1>Hello</h1>
</div>);
 
decompile(component);
 
// Outputs: "<div><h1>Hello</h1></div>"

You can also output it nicely formatted

import {formatted} from 'react-decompiler';
 
let component = (<div>
    <h1>Hello</h1>
</div>);
 
formatted(component);
 
// Outputs: "<div>
//  <h1>Hello</h1>
// </div>"

See more examples on the test file

Readme

Keywords

none

Package Sidebar

Install

npm i react-decompiler

Weekly Downloads

10

Version

0.2.1

License

MIT

Last publish

Collaborators

  • rchaves