update dependencies and router functionality

- Update package version to 0.0.34
- Upgrade @kevisual/local-proxy to 0.0.8 and @kevisual/query to 0.0.31
- Update rollup, cookie, selfsigned, and zod dependencies
- Remove unused share property from Route class
- Refactor queryRouter context to use app property
- Improve call method logic to prioritize path + key
- Update queryRoute to use call method
- Enhance HttpChain class with better constructor and parse method

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-06 10:30:58 +08:00
parent e00a6c7418
commit ef0faf84b1
4 changed files with 740 additions and 19 deletions

View File

@@ -122,17 +122,33 @@ type HttpChainOpts = {
req?: Req;
res?: ServerResponse;
simpleRouter?: SimpleRouter;
server?: Server;
};
/**
* HttpChain 类, 用于链式调用,router.get内部使用
*/
export class HttpChain {
/**
* 请求对象, 每一次请求都是不一样的
*/
req: Req;
/**
* 响应对象, 每一次请求响应都是不一样的
*/
res: ServerResponse;
simpleRouter: SimpleRouter;
server: Server;
hasSetHeader: boolean = false;
isSseSet: boolean = false;
constructor(opts?: HttpChainOpts) {
this.req = opts?.req;
this.res = opts?.res;
if (opts?.res) {
this.res = opts.res;
}
if (opts?.req) {
this.req = opts.req;
}
this.simpleRouter = opts?.simpleRouter;
}
setReq(req: Req) {
@@ -200,7 +216,13 @@ export class HttpChain {
this.server.listen(opts, callback);
return this;
}
parse() {
/**
* 外部 parse 方法
* @returns
*/
parse(opts?: { listenOptions?: ListenOptions, listenCallBack?: () => void }) {
const { listenOptions, listenCallBack } = opts || {};
if (!this.server || !this.simpleRouter) {
throw new Error('Server and SimpleRouter must be set before calling parse');
}
@@ -216,6 +238,9 @@ export class HttpChain {
}
}
};
if (listenOptions) {
this.server.listen(listenOptions, listenCallBack);
}
this.server.on('request', listener);
return () => {
that.server.removeListener('request', listener);