2018-07-31 20:33:42 +01:00
|
|
|
# decaffeinate
|
|
|
|
|
|
|
|
> Move your CoffeeScript source to modern JavaScript.
|
2019-06-08 01:04:00 +01:00
|
|
|
> More information: <https://decaffeinate-project.org>.
|
2018-07-31 20:33:42 +01: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}}`
|
|
|
|
|
2021-01-31 17:05:18 +00:00
|
|
|
- Convert require and `module.exports` to import and export:
|
2018-07-31 20:33:42 +01:00
|
|
|
|
|
|
|
`decaffeinate --use-js-modules {{path/to/file.coffee}}`
|
|
|
|
|
|
|
|
- Convert a CoffeeScript, allowing named exports:
|
|
|
|
|
|
|
|
`decaffeinate --loose-js-modules {{path/to/file.coffee}}`
|