Registry / jimpala

jimpala

JSON →
library0.0.0jsnpmunverified

Jazzle is an early-stage, zero-dependency ECMAScript transpiler focused on speed and novel technique implementation (e.g., temporal dead zones, super-bound this). Current version is 0.0.0, which indicates a pre-release or initial development phase. It claims ~2x faster than Babel on early benchmarks. Differentiators include zero dependencies, very fast transpilation, and unique support for certain edge cases like temporal dead zones. However, it is not production-ready and lacks CLI, documentation, and maturity. Not recommended for real projects.

npm install jimpala
INSTALL
IMPORT
SIG · JIMPALA
J
jimpala
javascriptv0.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

transform
import { transform } from 'jazzle'
The package uses CommonJS exports, but if targeting ESM, named import may not work; use default import instead.
default
import jazzle from 'jazzle'
const { transform } = require('jazzle')
The package exports a function directly, so default import or assigning require() to a variable is correct.
require('jazzle')
const jazzle = require('jazzle')
const jazzle = require('jazzle').default
The package uses module.exports = function, so no .default needed.

Transpile a simple destructuring assignment using the transform API and log the output code.

const jazzle = require('jazzle'); const code = 'let [x] = [1];'; const result = jazzle.transform(code, { sourceType: 'module' }); console.log(result.code);
Debug
Known issues
gotchaCLI is not yet implemented; the README explicitly states CLI is in the making.
fix
Use the JavaScript API (transform function) instead of CLI.
affects: >=0.0.0
Errors
Common errors & fixes
Cannot find module 'jazzle'
The package is not installed or not in node_modules.
fix
Run `npm install jazzle` in your project directory.
Upgrade
Version history
0.0.0latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
jimpala — npm install jimpala · libregistry