From 4b7b9790f201e70896b5b4dd452d2d2bce51d98e Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Mon, 21 Dec 2015 09:13:56 -0800 Subject: [PATCH] docs: remove iojs mention its just confusing people --- docs/api/index.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index 584d117..e69a136 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,16 +1,10 @@ # Installation - Koa is supported in all versions of [iojs](https://iojs.org) without any flags. - - To use Koa with node, you must be running __node 0.11.16__ or higher for generator and promise support, and must run node(1) - with the `--harmony-generators` or `--harmony` flag. - - You can quickly install a supposed version of node/iojs with your favorite version manager: +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. ```bash -$ nvm install iojs -$ npm i koa -$ node my-koa-app.js +$ npm install koa +$ node app.js ``` # Application