Atom CoffeeScript 2 Transpiler

raw JSON →
0.0.2 verified Fri May 01 auth: no javascript deprecated

A lightweight Atom package transpiler that processes .coffee files using CoffeeScript 2 (v0.0.2). Designed specifically for Atom package development, it integrates with Atom's built-in transpiler system via the `atomTranspilers` configuration in package.json. Unlike general-purpose CoffeeScript compilers, this package is tailored to Atom's module resolution and caching. It has no notable releases or updates since its initial version.

error Error: Cannot find module 'atom-coffee2-transpiler'
cause Package not installed in node_modules
fix
Run npm install --save atom-coffee2-transpiler
deprecated Package is unmaintained and may not work with recent Atom versions.
fix Consider using a transpiler hook or CoffeeScript standalone compiler.
npm install atom-coffee2-transpiler
yarn add atom-coffee2-transpiler
pnpm add atom-coffee2-transpiler

Configure Atom package transpiler for CoffeeScript 2 files.

// Add to package.json:
"atomTranspilers": [
  {
    "glob": "**/*.coffee",
    "transpiler": "atom-coffee2-transpiler"
  }
]