Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

ktop

supoort node >= 10.0.0

Quick Start

use ktop-cli for command line

npm i ktop-cli -g
ktop new hello -d sqlite3
cd hello && npm run dev

more info see ktop-cli

controllers base koa-router

ktop will auto load controllers in /app/controllers with namespace (without files or folders name start with . & ApplicationController. & BaseController.)

modes base bookshelf

ktop will auto load models in /app/models (without files or folders name start with . & ApplicationRecord.)

autoMiddlewares - middlewares of application(koa)

ktop will auto load middlewares in /config/autoMiddlewares (without files or folders name start with .)

jobs base node-schedule

ktop will auto load jobs in /app/jobs (without files or folders name start with .)

others