Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pricking-koa

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pricking-koa

a simple node framework based on koa2, in order to improve development efficiency.

  • 0.0.2-alpha.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

pricking-koa

a simple node framework based on koa2, in order to improve development efficiency.

WARNING: now only as an api server.

focus

baseUrl is application root directory

  1. The baseUrl must contain controllers folder to load router.
  2. if want add extra middlewares, you can add middlewares folder in baseUrl.

about extra middleware

Don't design middleware that depends on execution order.(if necessary, only export a compose middleware)

It's worth mentioning that the middleware loading will traverse every possible file under the folder.

decorator

how to use it?

import { Controller, Description, Get } from 'pricking-koa/dist/utils/decorator';
import BaseController from 'pricking-koa/dist/controllers/BaseController';

// path pattern -> ${controllerPath}/*
@Controller('/v3/books')
class AnalyseController extends BaseController {
  /** WARNING: now is not support */
  @Index(['/'])
  @Description()
  async index() {
    /** WARNING: now is not support */
    this.ctx.render('book/index.ejs', { currentTime: Date.now() });
  }

  // path pattern -> ${controllerPath}/api/${subPath}
  // path register -> /v3/books/api/info
  // as same as @Post, @Delete, @Put
  @Get('/info')
  @Description('查询书籍详情')
  async getBookInfo() {
    this.ctx.success({});
  }

  @Post('/search')
  @Description('搜索')
  async searchBook() {
    this.ctx.success({});
  }

  @Get('/origin')
  @Description('查询书籍书源详情')
  async getBookOriginDetail() {
    this.ctx.success({});
  }
}

export = AnalyseController;
import { PrickingApplication } from 'pricking-koa';

new PrickingApplication({
  // framework will auto load route from <ROOT>/controllers
  rootPath: __dirname,
  port: 3002,
  env: 'dev',
  debug: true,
});

middleware

export = (options: IOptions) => async (ctx, next) => {
  console.log(options.env);
  console.log('hello');
  await next();
  console.log('end');
};

target

  • all in ts
  • debug in ts mode
  • lint
  • test
  • clean middleware loader
  • simple decorator to define route faster
  • simple inject with DI
  • support ejs html render & @Index decorator

FAQs

Package last updated on 23 Dec 2020

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