0.0.1-beta.4 • Published 4 years ago

ktop v0.0.1-beta.4

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

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