CoffeeScript Supports Literate Programming
Written by Alex Denham   
Wednesday, 27 February 2013

The latest release of CoffeeScript has a new ‘literate’ mode to make it easier to develop Markdown documents that are executable.

CoffeeScript is a small language that compiles into the equivalent JavaScript with no interpretation at runtime.

It is described by the developers as an attempt to expose the good parts of JavaScript in a simple way. You can use any existing JavaScript library seamlessly from CoffeeScript, and the compiled output remains readable, passes through JavaScript Lint without warnings, will work in every JavaScript runtime, and tends to run as fast or faster than the equivalent handwritten JavaScript.

The ‘Literate Programming’ mode is optional, and is used to make code more readable. If a file is marked as ‘.litcoffee’. then when the compiler is compiling it to JavaScript, anything that isn't indented is discarded, and only the indented text is compiled.

This means that Markdown code results in an output file that can be completely compiled, because in Markdown indenting is used to denote source code. Markdown is a text-to-HTML conversion tool for web writers. It allows you to write in plain text format, then convert it to structurally valid XHTML (or HTML).

 

 

The output can also be used to create formatted documents, and can be displayed in editors with syntax highlighting. The announcement about the new feature on the CoffeeScript website says that as 1.5.0 is the first version of CoffeeScript that supports literate programming, they’d like to know if you have any ideas for improving the feature.

The other main changes to the new version are a move to the Node.js Read-eval-print-loop (REPL) format, support for negative loop counters to work through arrays backwards, and disallowing the return of values from constructors.

More Information

CoffeeScript

Related Articles

Programming in CoffeeScript (book review)

CoffeeScript: Accelerated JavaScript Development (book review)

JavaScript Assembly Language

JavaScript debugging tools move forward

JavaScript creator talks about the future

 

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Banner


Running PostgreSQL Inside Your Browser With PGLite
18/03/2024

Thanks to WebAssembly we can now enjoy PostgreSQL inside the browser so that we can build reactive, realtime, local-first apps directly on Postgres. PGLite is about to make this even easier.



Apache Lucene Adds Similarity Vector Searches
27/02/2024

Apache Lucene 9.10 has been released with support for similarity-based vector searches. Other improvements include block join compatible index sorting, and several improvements to ensure the software  [ ... ]


More News

Last Updated ( Wednesday, 27 February 2013 )