koahub.js 0.09 released, new hook mechanism
koahubjs released 0.09 with new hook mechanism
Add hook mechanism, controller hook and function hook
Fix the auto-loading bug and realize that in addition to automatically loading the exported default, other methods can also be automatically loaded
Remember the koahubjs hook development process
After using koahubjs to develop a project, it is always necessary to add some additional plug-in functions. In this case, changing the project code is too risky, so the hook mechanism is indispensable. koahubjs loads the hook into memory because the koahubjs framework does not have a built-in database, and loading into memory is more flexible.
Hook 1
Controller Hooks
When executing an http request, you want to call the method of another controller
Hook 2
Method hook
When executing an http request, you want to call a public function
Go directly to the code//Create hook.class.js<br>
//hooks definition<br>
// {<br>
// addOrder: [<br>
// '/admin/index/index'<br>
// ]<br>
// }<br>
<br>
export default class {<br>
constructor() {<br>
This.hooks = {};<br>
}<br>
<br>
Get() {<br>
return this.hooks;<br>
}<br>
<br>
Add(name, action) {<br>
let add = true;<br>
for (let key in this.hooks) {<br>
if (name == key) {<br>
This.hooks[key].push(action);<br>
add = false;<br>
}<br>
}<br>
if (add) {<br>
This.hooks[name] = [action];<br>
}<br>
<br>
return this.get();<br>
}<br>
<br>
run(name) {<br>
for (let key in this.hooks) {<br>
if (name == key) {<br>
for (let path of this.hooks[key]) {<br>
If (/w+(.*)$/.test(path)) {<br>
This.runFunction(path);<br>
–
This.runController(path);<br>
}<br>
}<br>
}<br>
}<br>
}<br>
<br>
runController(path) {<br>
let action = path.slice(path.lastIndexOf('/'));<br>
path = path.slice(0, path.lastIndexOf('/'));<br>
<br>
Let include = false;<br>
for (let _key in koahub.controllers) {<br>
if (_key == path) {<br> include = true;<br>
break;<br>
}<br>
}<br>
<br>
if (include) {<br>
let ctrl = koahub.controllers[path];<br>
let pros = Object.getOwnPropertyNames(ctrl.prototype).filter(function(value) {<br>
if (value == 'constructor') {<br>
return false;<br>
}<br>
return true;<br>
});<br>
<br>
let callFlag = true;<br>
for (let k in pros) {<br>
if ('/' + pros[k] == action) {<br>
Object.getPrototypeOf(new ctrl())[pros[k]].call(this);<br>
callFlag = false;<br>
}<br>
}<br>
<br>
if (callFlag) {<br>
console.error('Hook Not Found Method');<br>
}<br>
} else {<br>
console.error('Hook Not Found Controller');<br>
}<br>
}<br>
<br>
runFunction(value) {<br>
eval(`koahub.utils.${value}`);<br>
}<br>
}
钩子需要提前挂载到相应的节点上//开始挂载<br>
//controller钩子<br>
koahub.hook.add('hook1', '/admin/public/sendEmail');<br>
//function钩子<br>
koahub.hook.add('hook2', 'tools.add(1,2)');<br>
<br>
//调用钩子<br>
koahub.hook.run('hook1');<br>
koahub.hook.run('hook2');
util方法//util下的*.util.js会自动挂载到koahub.utils上<br>
//util/tools.util.js<br>
export function add(a, b) {<br>
console.log(a + b);<br>
return a + b;<br>
}<br>
<br>
export function dis(a, b) {<br>
console.log(a - b);<br>
return a - b;<br>
}
KoaHub.js – 基于 Koa.js 平台的 Node.js web 快速开发框架
安装npm install koahubjs --save
Star Github
https://github.com/einsqing/koahubjs
官网:http://js.koahub.com
wemall 开源微商城 ,微信商城,商城源码,三级分销,微生鲜,微水果,微外卖,微订餐---专业的o2o系统
wemall地址:http://www.wemallshop.com

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver Mac version
Visual web development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.