docs
This commit is contained in:
parent
1680639232
commit
2733c61d00
2 changed files with 23 additions and 1 deletions
|
@ -133,5 +133,27 @@ function logger(format){
|
|||
}
|
||||
```
|
||||
|
||||
## Async operations
|
||||
|
||||
The [Co](https://github.com/visionmedia/co) forms Koa's foundation for generator delegation, allowing
|
||||
you to write non-blocking sequential code. For example this middleware reads the filenames from `./docs`,
|
||||
and then reads the contents of each markdown file in parallel before assigning the body to the joint result.
|
||||
|
||||
|
||||
```js
|
||||
var fs = require('co-fs');
|
||||
|
||||
app.use(function(){
|
||||
return function *(){
|
||||
var paths = yield fs.readdir('docs');
|
||||
|
||||
var files = yield paths.map(function(path){
|
||||
return fs.readFile('docs/' + path, 'utf8');
|
||||
});
|
||||
|
||||
this.type = 'markdown';
|
||||
this.body = files.join('');
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ app.use(function(){
|
|||
});
|
||||
|
||||
this.type = 'markdown';
|
||||
this.body = files.join(', ');
|
||||
this.body = files.join('');
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue