I am working in CoffeeScript (writing a Cakefile). I would like to compile some other CoffeeScript files, à la
coffee -o lib -c src
I could launch the above command in a child process, but this approach has cross-platform issues and makes error handling difficult. I'd much rather use an API.
I'd be happy to use the exact functions from command.coffee, but I can't work out how.
Addendum: I see require('coffee-script').compile
, which compiles a string to another string. That would still leave me to do the grunt work of looping over files and subfolders and writing the output.
CoffeeScript. CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart.
As of today, January 2020, CoffeeScript is completely dead on the market (though the GitHub repository is still kind of alive).
"Easy to read", "Faster to write" and "Syntactic sugar" are the key factors why developers consider CoffeeScript; whereas "Can be used on frontend/backend", "It's everywhere" and "Lots of great frameworks" are the primary reasons why JavaScript is favored.
CoffeeScript is a lightweight language that compiles into JavaScript. It provides simple and easy to learn syntax avoiding the complex syntax of JavaScript.
The API you're looking for is in coffee-script.coffee. It exports a compile
function that does what it says on the tin.
To use command.coffee's run
function directly you'd have to first overwrite process.argv
with the options you would have passed on the command line.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With