A transpiler module for the react-native-hardwired ecosystem that transforms ES6+ JavaScript code into a format compatible with Hardwired's dynamic module loading in React Native. This package is part of the Hardwired library enabling runtime code transformation and execution. Version 0.10.1 is the current stable release. It is designed specifically for React Native environments and relies on Babel for transpilation. Differentiates from other transpilers by tight integration with Hardwired's dynamic loading system.
npm install react-native-hardwired-transpilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to transpile ES6 code and register it with Hardwired's dynamic module loader.
Use async/await or .then() to access the result.
Remove sourceMaps or set to an explicit object.
Run 'npm install @babel/core'.
Add 'useBuiltIns: false' to options or avoid importing large polyfills.
Switch to import { transpile } from 'react-native-hardwired-transpiler'.Use import { transpile } from 'react-native-hardwired-transpiler'.Run 'npm install @babel/core'.
Use await transpile(code, options) or .then(result => { ... }).Add a Babel preset like '@babel/preset-env' with modules: false and appropriate targets.