This package has been deprecated

Author message:

Appsignal for Node.js 2.x is deprecated. Uninstall @appsignal/koa when upgrading to @appsignal/nodejs@3

@appsignal/koa
TypeScript icon, indicating that this package has built-in type declarations

1.0.24 • Public • Published

@appsignal/koa

npm (scoped) npm peer dependency version (scoped)

The AppSignal for Node.js integration for Koa (koa) v2.0.0+.

⚠️ This package is no longer required for AppSignal for Node.js version 3.0. If you use version 3.0 or newer in your app, please remove this package from your package.json file.

Installation

First, sign up for an AppSignal account and add both the @appsignal/nodejs and @appsignal/koa packages to your package.json. Then, run yarn install/npm install.

You can also add these packages to your package.json on the command line:

yarn add @appsignal/nodejs @appsignal/koa
npm install --save @appsignal/nodejs @appsignal/koa

You can then import and use the package in your app.

Usage

The module includes an AppSignal intrumentation plugin for automatically instrumenting the middlewares or routes of your application.

// AT THE VERY TOP OF THE ENTRYPOINT OF YOUR APPLICATION...

const { Appsignal } = require("@appsignal/nodejs");

const appsignal = new Appsignal({
  active: true,
  name: "<YOUR APPLICATION NAME>",
  pushApiKey: "<YOUR API KEY>"
});

appsignal.instrument(require("@appsignal/koa"));

// ...ALL THE REST OF YOUR IMPORTS AND CODE GO HERE!

const Koa = require("koa");
const Router = require("@koa/router"); // @koa/router is also supported out of the box!

const app = new Koa();

// Add error handling

app.on("error", (error) => {
  appsignal
    .tracer()
    .setError(error)
});

Note that generator-based middleware was deprecated in Koa version 2.x, and the next major Koa version will remove support for them entirely.

Our instrumentation does not instrument generator-based middleware. The Koa 2.x migration guide explains how you can use the koa-convert library to convert them to new-style async middleware.

Contributing

Thinking of contributing to this repo? Awesome! 🚀

Please follow our Contributing guide in our documentation and follow our Code of Conduct.

Also, we would be very happy to send you Stroopwafles. Have look at everyone we send a package to so far on our Stroopwafles page.

Support

Contact us and speak directly with the engineers working on AppSignal. They will help you get set up, tweak your code and make sure you get the most out of using AppSignal.

Dependents (0)

Package Sidebar

Install

npm i @appsignal/koa

Weekly Downloads

0

Version

1.0.24

License

MIT

Unpacked Size

8.75 kB

Total Files

6

Last publish

Collaborators

  • as_unflxw
  • jkreeftmeijer
  • jvanbaarsen
  • luismiramirez
  • matsimitsu
  • thijsc
  • tombruijn
  • wesoudshoorn