UNPKG

vva-cli

Version:

A CLI of Vue 3 and Typescript and Element-plus in Vite

9 lines (7 loc) 200 B
module.exports = async (ctx, next) => { const start = Date.now(); await next(); const end = Date.now(); const duration = end - start; ctx.set("X-Response-Time", `${duration}ms`); }