2025-03-14 21:59:59 -06:00
|
|
|
# decaffeinate
|
|
|
|
|
|
|
|
|
|
> Move your CoffeeScript source to modern JavaScript.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://www.npmjs.com/package/decaffeinate#common-options>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Convert a CoffeeScript file to JavaScript:
|
|
|
|
|
|
|
|
|
|
`decaffeinate {{path/to/file.coffee}}`
|
|
|
|
|
|
|
|
|
|
- Convert a CoffeeScript v2 file to JavaScript:
|
|
|
|
|
|
|
|
|
|
`decaffeinate --use-cs2 {{path/to/file.coffee}}`
|
|
|
|
|
|
|
|
|
|
- Convert require and `module.exports` to import and export:
|
|
|
|
|
|
|
|
|
|
`decaffeinate --use-js-modules {{path/to/file.coffee}}`
|
|
|
|
|
|
|
|
|
|
- Convert a CoffeeScript, allowing named exports:
|
|
|
|
|
|
|
|
|
|
`decaffeinate --loose-js-modules {{path/to/file.coffee}}`
|