标签:
KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架。可以直接在项目里使用 ES6/7(Generator Function, Class, Async & Await)等特性,借助 Babel 编译,可稳定运行在 Node.js 环境上。
KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架。可以直接在项目里使用 ES6/7(Generator Function, Class, Async & Await)等特性,借助 Babel 编译,可稳定运行在 Node.js 环境上。
//base controller, admin/controller/base.controller.js export default class extends koahub.http{ constructor() { super(); console.log(‘base constructor‘); } isLogin() { console.log(‘base isLogin‘); } } //index controller, admin/controller/index.controller.js import base from "./base.controller"; export default class extends base{ constructor() { super(); console.log(‘index constructor‘); } index() { super.isLogin(); super.json({msg: ‘this is a msg‘}); console.log(‘index index‘); } }
项目中可以使用 ES6/7 里的所有特性,借助 Babel 编译,可以稳定运行在 >=0.12.0 的 Node.js 环境中。
npm install koahubjs --save
//创建start.js启动文件 var Koahub = require("koahubjs");
const app = new Koahub.default(); app.getKoa();获取koahubjs实例化,支持自定义koa中间件 app.run(3000);
app --addon --config --controller --data --model --util node_modules src --addon --config --controller --data --model --util package.json start.js
启动信息:
制作中....
[http://js.koahub.com]http://js.koahub.com
KoaHub.js可借助 Babel 编译稳定运行在 Node.js 环境上
标签:
原文地址:http://www.cnblogs.com/jycxqe/p/5932310.html