Merge pull request #475 from koajs/app-context-docs

Add docs for app.context
master
fengmk2 2015-08-31 12:06:53 +08:00
commit f530219862
1 changed files with 9 additions and 0 deletions

View File

@ -162,6 +162,15 @@ app.keys = new KeyGrip(['im a newer secret', 'i like turtle'], 'sha256');
this.cookies.set('name', 'tobi', { signed: true });
```
## app.context
The recommended namespace to extend with information that's useful
throughout the lifetime of your application, as opposed to a per request basis.
```js
app.context.db = db();
```
## Error Handling
By default outputs all errors to stderr unless __NODE_ENV__ is "test". To perform custom error-handling logic such as centralized logging you