koa-subdomain:简单轻巧的Koa中间件,用于处理多级和通配符子域

时间:2024-02-24 08:38:11
【文件属性】:

文件名称:koa-subdomain:简单轻巧的Koa中间件,用于处理多级和通配符子域

文件大小:105KB

文件格式:ZIP

更新时间:2024-02-24 08:38:11

koa router subdomain koajs koa-middleware

koa子域 简单轻巧的Koa中间件,可处理多级和通配符子域。 安装 使用npm安装: npm install koa-subdomain --save 用法 与: const Koa = require ( 'koa' ) ; const Subdomain = require ( 'koa-subdomain' ) ; const Router = require ( 'koa-router' ) ; const app = new Koa ( ) ; const subdomain = new Subdomain ( ) ; const router = new Router ( ) ; router . get ( '/' , async ctx => { ctx . body = 'one' ; } ) ; // one.example.com subdomain . use ( 'one' , router . routes ( ) ) ; app . use ( subdomain . routes ( ) ) ; app . listen ( 8888 ) ;


【文件预览】:
koa-subdomain-master
----package.json(1KB)
----.github()
--------lock.yml(1KB)
--------workflows()
----test()
--------index.spec.js(5KB)
--------lib()
----LICENSE(1KB)
----package-lock.json(398KB)
----.gitignore(156B)
----CHANGELOG.md(1KB)
----lib()
--------subdomain.js(2KB)
----README.md(4KB)
----.editorconfig(136B)

网友评论