Skip to content

Commit

Permalink
Update change log and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed Oct 4, 2013
1 parent 6a6eff1 commit 4762a82
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#Change Log

## 0.1.4

2013-10-4

* Fix `this` and `argument`.

## 0.1.3

2013-6-29
Expand Down
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Continuation.js

## Installation

Install Continuation.js with [npm](https://npmjs.org/package/continuation):

npm install -g continuation

Latest version: 0.1.4 (2013-10-04)

[Change log](https://github.com/BYVoid/continuation/blob/master/CHANGELOG.md)

## Overview

Continuation.js is a compiler for [Continuation-Passing Style](http://en.wikipedia.org/wiki/Continuation-passing_style) transformation, which simplifies asynchronous JavaScript programming.
It translates slightly flavored JavaScript syntax into standard JavaScript, so it can be also called a "translator".
Continuation.js introduces a virtual function ``cont``, which allow you to write continuation-passing style code (or asynchronous callback style code) far easier.
Expand Down Expand Up @@ -262,12 +274,6 @@ That means you don't have to install Continuation.js in global environment.
The code above converts a function into a string, and then it is compiled by Continuation.js.
After that you can run it via ``eval`` function.

## Installation

Install Continuation.js with [npm](https://npmjs.org/package/continuation):

npm install -g continuation

## Usage

Usage: continuation [options] <file.js/file.coffee/file.ls> [arguments]
Expand Down

0 comments on commit 4762a82

Please sign in to comment.