docs: mention 0.12.x instead of 0.11.x
This commit is contained in:
parent
4b7b9790f2
commit
b6cf2ed605
1 changed files with 3 additions and 1 deletions
|
@ -1,12 +1,14 @@
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Koa works out of the box with recent versions of Node. To use Koa with 0.11.x you must use the `--harmony` or `--harmony-generators` flag.
|
Koa works out of the box with recent versions of Node.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ npm install koa
|
$ npm install koa
|
||||||
$ node app.js
|
$ node app.js
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To use Koa with 0.12.x you must use the `--harmony` or `--harmony-generators` flag.
|
||||||
|
|
||||||
# Application
|
# Application
|
||||||
|
|
||||||
A Koa application is an object containing an array of middleware generator functions
|
A Koa application is an object containing an array of middleware generator functions
|
||||||
|
|
Loading…
Reference in a new issue