Supriya Ghosh (Editor)

LiveScript

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Typing discipline
  
dynamic, weak

Paradigm
  
multi-paradigm, functional, object-oriented

Designed by
  
Jeremy Ashkenas, Satoshi Murakami, George Zahariev

Developer
  
Jeremy Ashkenas, Satoshi Murakami, George Zahariev

First appeared
  
2011; 6 years ago (2011)

Stable release
  
LiveScript 1.4.0 / 11 May 2015; 21 months ago (2015-05-11)

LiveScript is a functional language that compiles to JavaScript. It was created by Jeremy Ashkenas—the creator of CoffeeScript—along with Satoshi Muramaki, George Zahariev, and many others. Notably, LiveScript was briefly the name of JavaScript in 1990s.

Contents

Syntax

LiveScript is an indirect descendant of and is partly compatible with Coffeescript. The following is a fully Coffeescript-compatible hello-world example of LiveScript syntax.

While calling a function can be done with empty parens, hello(), LiveScript treats the exclamation mark as a single-character shorthand for function calls with zero arguments: hello!

LiveScript introduces a number of other incompatible idioms:

Name mangling

At compile time, the LiveScript parser implicitly converts kebab case (dashed variables and function names) to camelcase.

With this definition, both the following calls are valid. However, calling using the same dashed syntax is recommended.

This does not preclude developers from using camelcase explicitly or using snakecase. Dashed naming is however, common in idiomatic LiveScript

Pipes

Like a number of other functional programming languages such as F# and Elixir, LiveScript supports the pipe operator, |> which passes the result of the expression on the left of the operator as the first argument to the expression on the right of it.

Operators as functions

When parenthesized, operators such as not or + can be included in pipelines or called as if they were functions.

References

LiveScript Wikipedia