icetools
raw JSON → 0.1.9 verified Fri May 01 auth: no javascript deprecated
An experimental transpiler from JavaScript to Golo language, currently at version 0.1.9. This project appears to be a minor hobby tool with no recent updates, sparse documentation, and no clear release cadence. It differentiates itself by targeting Golo, a dynamic language for the JVM, but lacks comparable robustness to established transpilers like Babel or TypeScript. The package has no README and minimal community adoption, making it unsuitable for production use.
Common errors
error Cannot find module 'icetools' ↓
cause Package is not installed or not published correctly.
fix
Run 'npm install icetools' and ensure it's in node_modules.
error TypeError: icetools is not a function ↓
cause Assuming default export is a function when it may not be.
fix
Inspect package exports; use correct import path.
Warnings
deprecated Package has no README, no tests, and last update likely 0.1.9 from 2017. No support or maintenance. ↓
fix Do not use in production; consider alternatives like Babel or TypeScript.
Install
npm install icetools yarn add icetools pnpm add icetools Imports
- default wrong
const icetools = require('icetools');correctimport icetools from 'icetools';
Quickstart
import icetools from 'icetools';
const jsCode = `
function hello() {
console.log('Hello, world!');
}
hello();
`;
const goloCode = icetools.transpile(jsCode);
console.log(goloCode);