文件名称:回退:异步中间件模式
文件大小:102KB
文件格式:ZIP
更新时间:2024-02-24 08:37:52
middleware koa servie compose popsicle
倒退 简单的异步中间件模式。 安装 npm install throwback --save 用法 组成异步(返回承诺)功能。 const { compose } = require ( "throwback" ) ; const fn = compose ( [ async function ( ctx , next ) { console . log ( 1 ) ; try { await next ( ) ; } catch ( err ) { console . log ( "throwback" , err ) ; } console . log ( 4 ) ; } , async function ( ctx , next ) { console . log ( 2 ) ; return next ( ) ; } ] ) ; // Callback runs at the end of the stack, before // the middleware bubbles b
【文件预览】:
throwback-master
----.travis.yml(212B)
----package.json(2KB)
----tslint.json(70B)
----LICENSE(1KB)
----package-lock.json(398KB)
----src()
--------index.spec.ts(4KB)
--------index.ts(3KB)
----tsconfig.json(242B)
----.gitignore(54B)
----README.md(2KB)
----.editorconfig(199B)