app-transpiler is a build tool for transpiling JavaScript/TypeScript applications with a focus on simplicity and fast iteration. The current stable version is 1.0.13, released on an ad-hoc basis with no fixed cadence. It differentiates itself by offering zero-config setup and out-of-the-box support for JSX and modern ECMAScript features, targeting both Node.js and browser environments.
npm install app-transpilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Transpile a simple arrow function with template literals to ES5-compatible code.
Use import syntax instead of require().
Use the promise-based API: await transpile(...) or transpile(...).then(...).
Install @types/app-transpiler from DefinitelyTyped or create a declaration file manually.
Run 'npm install app-transpiler' and ensure the import statement is correct.
Change require() to import syntax or use dynamic import.
Use named import: import { transpile } from 'app-transpiler'.