Registry / devops / paww
library1.1.20jsnpmunverified

Paw is a simple JavaScript transpiler and runner that uses Indonesian-flavored syntax, allowing developers to write code in Bahasa Indonesia. Version 1.1.20 is the current stable release, updated sporadically. It differentiates itself by offering a localized programming experience for Indonesian speakers, translating keywords like 'if' to 'jika' and 'function' to 'fungsi'. It targets Node.js and is primarily a CLI tool.

npm install paww
INSTALL
IMPORT
SIG · PAWW
P
paww
devopsjavascriptv1.1.20
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.

paww
import paww from 'paww'
const paww = require('paww')
ESM-only package; no CommonJS support.
PawRunner
import { PawRunner } from 'paww'
const { PawRunner } = require('paww')
Named export available for programmatic use.
PawCompiler
import { PawCompiler } from 'paww'
Used for transpiling Paw code to JavaScript.

Shows how to install the CLI globally, run a Paw file, and use the compiler programmatically.

// Install globally: npm install -g paww // Create a file hello.paw with: // cetak("Halo Dunia!") // Run: paww hello.paw // Or programmatic usage: import { PawCompiler } from 'paww'; const compiler = new PawCompiler(); const jsCode = compiler.compile('cetak("Halo Dunia!")'); console.log(jsCode); // console.log("Halo Dunia!");
paw --version
Debug
Known issues
deprecatedSome keywords may change in future versions; check changelog.
fix
Stay updated with the repository.
affects: >=1.1.0
gotchaPaw code is transpiled line-by-line; complex nested structures may fail.
fix
Use simple syntax and report issues.
affects: >=1.0.0
Errors
Common errors & fixes
paww: command not found
Global install missing or not in PATH.
fix
Run 'npm install -g paww' and ensure npm global bin is in PATH.
SyntaxError: Unexpected token
Paw syntax error in source file.
fix
Check Paw syntax; e.g., use 'cetak' not 'print'.
Upgrade
Version history
1.1.20latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
paww — npm install paww · libregistry