https://github.com/ladjs/koa-404-handler
404 handler for Lad and Koa (best used with koa-better-error-handler)
https://github.com/ladjs/koa-404-handler
404 ctx error handler koa lad middleware
Last synced: 17 days ago
JSON representation
404 handler for Lad and Koa (best used with koa-better-error-handler)
- Host: GitHub
- URL: https://github.com/ladjs/koa-404-handler
- Owner: ladjs
- License: mit
- Created: 2017-09-13T04:50:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-03T10:17:52.000Z (over 3 years ago)
- Last Synced: 2025-04-05T02:01:53.925Z (28 days ago)
- Topics: 404, ctx, error, handler, koa, lad, middleware
- Language: JavaScript
- Homepage: https://lad.js.org
- Size: 222 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# koa-404-handler
[](https://travis-ci.org/ladjs/koa-404-handler)
[](https://codecov.io/gh/ladjs/koa-404-handler)
[](https://github.com/sindresorhus/xo)
[](https://github.com/prettier/prettier)
[](https://lass.js.org)
[]()> 404 handler for [Lad][] and [Koa][] (best used with [koa-better-error-handler][])
## Table of Contents
* [Install](#install)
* [Usage](#usage)
* [Contributors](#contributors)
* [License](#license)## Install
[npm][]:
```sh
npm install koa-404-handler
```[yarn][]:
```sh
yarn add koa-404-handler
```## Usage
```js
const errorHandler = require('koa-better-error-handler');
const koa404Handler = require('koa-404-handler');// ...
// override koa's undocumented error handler
app.context.onerror = errorHandler;// ... routes go here ...
app.use(koa404Handler);
app.listen();
```## Contributors
| Name | Website |
| -------------- | -------------------------- |
| **Nick Baugh** | |## License
[MIT](LICENSE) © [Nick Baugh](http://niftylettuce.com/)
##
[npm]: https://www.npmjs.com/
[yarn]: https://yarnpkg.com/
[lad]: https://lad.js.org
[koa]: http://koajs.com
[koa-better-error-handler]: https://github.com/ladjs/koa-better-error-handler