Jazzle CLI
raw JSON → 0.0.0 verified Fri May 01 auth: no javascript
jazzle-cli is the official command-line interface for the Jazzle transpiler, which transforms JavaScript ES6+ syntax to ES5 for broader browser compatibility. At version 0.0.0, this package is in early development and has a very limited user base. It wraps the Jazzle transpilation engine, providing a CLI tool that accepts source files and outputs transpiled code. Compared to alternatives like Babel or Terser, Jazzle is marketed as 'fast', but its ecosystem and support are minimal. The package requires Node.js >=6.20.0 and is distributed via npm.
Common errors
error Error: Cannot find module 'jazzle' ↓
cause Missing peer dependency jazzle not installed automatically.
fix
Run 'npm install jazzle' alongside jazzle-cli.
Warnings
gotcha Jazzle CLI is at version 0.0.0 and not suitable for production use. ↓
fix Consider using Babel or Terser for stable JavaScript transpilation.
Install
npm install jazzle-cli yarn add jazzle-cli pnpm add jazzle-cli Quickstart
npx jazzle-cli --version
npx jazzle-cli src/index.js --out dist/index.js