@react-simplifier/babel-plugin

0.0.1-alpha.1 • Public • Published

@react-simplifier/babel-plugin

A Babel plugin that makes writing React components concise and fast.

⚠️ WARNING: This project is still in early develop stage! DO NOT use it on production! ⚠️

How it works?

Let's have a look on an example. This is a simple React component:

const Counter = () => {
  const [counter, setCounter] = useState(0);

  const increment = () => {
    setCounter((prevValue) => prevValue + 1);
  };

  return (
    <div>
      <span>{counter}</span>
      <button onClick={increment}>Increment</button>
    </div>
  )
};

And here, the same component but with React Simplifier:

const Counter = () => {
  const $counter = 0;

  const increment = () => { counter++; }

  return (
    <div>
      <span>{counter}</span>
      <button onClick={increment}>Increment</button>
    </div>
  )
};

As you can see, working with this plugin is much easier, because you don't have to import useState and use the useState getter/setter. You can deal with the component's state as with normal JS variables. Under the hood the React useState hook is still used so the compiled code will look like this:

import { useState } from 'react';

const Counter = () => {
  const [$counter, ____set$counter] = useState(0);

  const increment = () => ____set$counter((prevValue) => prevValue + 1);

  return (
    <div>
      <span>{counter}</span>
      <button onClick={increment}>Increment</button>
    </div>
  )
};

But you don't need to care, because the plugin does it for you. 😉

Installation

The plugin is available as an npm package.

npm i @react-simplifier/babel-plugin

After installation you have to add the plugin to your Babel config file.

module.exports = {
  ...
  plugins: [
    '@react-simplifier/babel-plugin'
  ]
}

Configuration

Property Required Type Default value Description
stateVariablePattern RegExp /^\$\w+/ Set pattern to recognize React state variables. The default pattern starts with the dollar sign - $foo

FAQ

Does the plugin work with class components?

Not yet, we plan to add support for class components in the future - this is one of our priorities.

Package Sidebar

Install

npm i @react-simplifier/babel-plugin

Weekly Downloads

0

Version

0.0.1-alpha.1

License

MIT

Unpacked Size

10.5 kB

Total Files

12

Last publish

Collaborators

  • marlo22