New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@backlib/koa

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@backlib/koa

Minimalist KOA utilities for backend web services

  • 0.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-95.24%
Maintainers
1
Weekly downloads
 
Created
Source

BaseKoa class with typescript decorators for routing based on koa and @koa/router

import Koa, { DefaultContext, DefaultState } from 'koa';
import { BaseRouter, routeGet } from '@backlib/koa';

//// EXAMPLE - BaseRouter for class/decorator style API
class Hello3 extends BaseRouter<DefaultState, DefaultContext>{
	#count = 0;

	@routeGet('hello3')
	async hello(ctx: DefaultContext) {
		this.#count++;
		ctx.body = {
			message: `Hello3 from server ${this.#count}`
		}
	}
}

async function main() {

	const app = new Koa();

	const hello3 = new Hello3('/api/');
	app.use(hello3.middleware());   
    
	app.listen(8080);    
}

// Now http://localhost:8080/api/hello3 will return {message: "Hello3 from server ..."}
  • Typed Build with typescript for typescript.
  • Modern Node.js 14 and above, compiled with native class fields and null coalescing native support.
  • Minimalist Not a framework, just some libs that can be assembled into an application infrastructure code.
  • PromiseAsync/Await centric Use Promise/async/await patterns for all async calls.
  • Web Async Web request utilities based on koajs over express as it is a modern rewrite of more or less the same API with backed in support for Promise/async/await (simplify many of the usecases)

FAQs

Package last updated on 13 Mar 2022

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