
[POC] A babel plugin which compiles React.js components into native DOM instructions to eliminate the need for the react library at runtime.
babel-plugin-rawact is a Babel plugin that compiles React.js components into native DOM instructions, eliminating the need for the React library at runtime. This plugin allows developers to transpile React.js components to native DOM operations at build-time, resulting in faster initial page loads and improved performance on low-end devices.
babel-plugin-rawact is a powerful Babel plugin that allows developers to compile React.js components into native DOM instructions at build-time. This eliminates the need for the React library at runtime, resulting in smaller JavaScript file sizes and improved performance for code-splitted applications. The plugin is especially useful for applications with many frequently changing component instances and applications running on low-end devices. However, it is currently in the proof of concept stage and should not be used in production.

React is a widely used JavaScript library for building user interfaces and single-page applications. It follows a component-based architecture and uses a virtual DOM to efficiently update and render UI components