babel-plugin-react-object-prop-persist

1.2.3 • Public • Published

Babel Plugin react-object-prop-persist

Prevents component re-rendering caused by object literals passed as props.

Installation -

Using yarn :

yarn add -D react-object-prop-persist

Using npm :

npm install --save-dev react-object-prop-persist

Usage -

Simply add this plugin in your App's babel.config.js :

module.exports = function (api) {
  api.cache(true);
  return {
    presets: [...YOUR_APP_PRESETS],
    plugins: ["react-object-prop-persist", ...YOUR_OTHER_PLUGINS],
  };
};

To setup the Development environment -

  • clone this Repo
  • yarn or npm install
  • cd example && yarn && cd .. or cd example && npm install && cd ..
  • yarn dev:web or npm run dev:web to run the example app make your changes in index.js.

/babel-plugin-react-object-prop-persist/

    Package Sidebar

    Install

    npm i babel-plugin-react-object-prop-persist

    Weekly Downloads

    4

    Version

    1.2.3

    License

    ISC

    Unpacked Size

    7.78 kB

    Total Files

    7

    Last publish

    Collaborators

    • rohit_singh