文件名称:stacked:轻量级中间件基础设施
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-22 14:33:01
JavaScript
堆叠 Stacked 是中间件基础设施的独立、轻量级、零依赖版本。 它可用于创建将多个中间件功能捆绑为一个的模块。 安装 npm install stacked --save 用法 var stacked = require ( 'stacked' ) /** * A middleware that logs the requested URL. */ function middleware ( req , res , next ) { console . log ( 'url:' , req . url ) next ( ) } /** * A middleware that logs the requested URL (with the mount point stripped) * as well as the original URL. */ functi
【文件预览】:
stacked-master
----.jshintrc(927B)
----.gitignore(24B)
----stacked.js(1KB)
----package.json(585B)
----.travis.yml(36B)
----README.md(2KB)
----test()
--------stacked.js(3KB)