npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

koa-ctl

v0.2.2-unstable

Published

Class-based controllers for Koa 2

Downloads

7

Readme

koa-ctl

Class-based Controller Middleware for Koa

koa-ctl lets you organize handlers for multiple types of HTTP requests into one class, which is often conceptually and organizationally helpful when you need to handle different operations on the same type of resource.

If you're familiar with Django's class-based views then koa-ctl should feel familiar.

TypeScript Example

import Koa, {Context, Next} from "koa";
import bodyParser from "koa-bodyparser";
import Router from "koa-router";
import BaseCtl from "koa-ctl";

class FooCtl extends BaseCtl {
  constructor(ctx: Controller, next?: Next ) {
    super(ctx, next);
  }

  async get(ctx: Context, next?: Next) {
    if (ctx.request.query.foo.toLowerCase() == 'foo') {
      return "bar";
    }
    else {
      return "No bar for you";
    }
  }

  async post(ctx: Context, next?: Next) {
    // (POST request data will have been parsed by koa-bodyparser)
    if (ctx.request.body.bar.toLowerCase() == 'bar') {
      return "bat";
    }
    else {
      return "no bat for you";
    }
  }
}

const app = new Koa();
const router = new Router();
router.all('/foo', FooCtl.go());

app.use(bodyParser());
app.use(router.routes())
app.use(router.allowedMethods())
app.listen(3000);

Installation

# yarn
yarn add koa-ctl

# npm
npm install koa-ctl

TypeScript

koa-ctl is written in TypeScript from the ground up and includes its own type definitions.

Dependencies

If you do plan to use TypeScript, you'll want to include the @types/koa package as a dev dependency for your project:

# yarn
yarn add -D @types/koa
# npm
npm install --save-dev @types/koa

Development

# Clone the repository:
git clone https://github.com/mystery-house/koa-ctl.git

# Install dependencies
cd koa-ctl
yarn install

# Run tests
yarn test

# Build
yarn build

Caveat

This project has not been heavily used yet and will likely undergo multiple changes on its way to a stable release.