Socket
Socket
Sign inDemoInstall

koas-core

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koas-core

> [Koa][] + [Open API Specification][] = Koas


Version published
Weekly downloads
1.3K
increased by27.88%
Maintainers
1
Weekly downloads
 
Created
Source

Koas-core

[Koa][] + [Open API Specification][] = Koas

Koas aims to make it easy to write a RESTful API based on Koa and an Open API V3 Specification.

This is the core package. For more details, see the mono repository README

Installation

npm install koa koas-core

Usage

const Koa = require('koa');
const koas = require('koas-core');

const spec = {
  openapi: '3.0.2',
  info: {
    title: 'My API',
    version: '1.0.0',
  },
  paths: {
    '/': {
      get: {
        responses: {},
      },
    },
  },
};

async function main() {
  const app = new Koa();
  app.use(
    await koas(spec, [
      // Koas plugins go here.
    ]),
  );
  app.listen(3333);
}

main().catch(error => {
  console.error(error);
  process.exit(1);
});

Plugins

Plugins are functions that take parameters provided by Koas, and return a Koa middleware. Typically, plugins are returned by a function, so options can be passed in.

Example plugin:

module.exports = function myPlugin(options) {
  return koasPluginOptions => async (ctx, next) => {
    await next();
  };
};

TypeScript typings are provided. So it is also possible to write plugins using TypeScript. Pretty much the only type annotation needed is koas.Plugin as the return option for the function.

import * as koas from 'koas-core';

function myPlugin(options: myPlugin.Options): koas.Plugin {
  return koasPluginOptions => async (ctx, next) => {
    await next();
  };
}

export = myPlugin;

namespace myPlugin {
  export interface Options {}
}

FAQs

Package last updated on 28 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc