@colpu/core

核心加载器

Usage no npm install needed!

<script type="module">
  import colpuCore from 'https://cdn.skypack.dev/@colpu/core';
</script>

README

colpu-core

一个核心的可插拔框架基础 koa

├── src
│   ├── config
|   |   ├── index.js
|   |   ├── development.js (可选的)
|   |   └── production.js (可选的)
|   ├── controller (可选的)
|   ├── middleware (可选的)
|   ├── plugins (可选的)
|   ├── router (可选的)
|   ├── service (可选的)
│   ├── view (可选的)
|   |   ├── layout.html
│   |   └── home.html
│   └── index.js
└── package.json

您可以开始使用下面代码

const Application = require('@colpu/core');
const app = new Application();
app.start();