UNPKG

mm_os

Version:

MM_OS服务端架构,用于快速构建应用程序,支持网站建设、小程序后台、AI应用、物联网(IOT/AIOT)、游戏服务端等多种场景。

15 lines 350 B
// 导出中间件主方法 module.exports = { _getClientIp(ctx) { return ctx.headers['x-forwarded-for']?.split(',')[0]?.trim() || ctx.headers['x-real-ip'] || ctx.ip || 'unknown'; }, async main(ctx, next) { if (ctx.ip === undefined) { ctx.ip = this._getClientIp(ctx); } await next(); } };