@orpc/standard-server 0.0.0-next.05ebcce
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +68 -0
- package/dist/index.d.mts +79 -0
- package/dist/index.d.ts +79 -0
- package/dist/index.mjs +186 -0
- package/package.json +34 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 oRPC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<image align="center" src="https://orpc.unnoq.com/logo.webp" width=280 alt="oRPC logo" />
|
|
3
|
+
</div>
|
|
4
|
+
|
|
5
|
+
<h1></h1>
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
<a href="https://codecov.io/gh/unnoq/orpc">
|
|
9
|
+
<img alt="codecov" src="https://codecov.io/gh/unnoq/orpc/branch/main/graph/badge.svg">
|
|
10
|
+
</a>
|
|
11
|
+
<a href="https://www.npmjs.com/package/@orpc/standard-server">
|
|
12
|
+
<img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Fstandard-server?logo=npm" />
|
|
13
|
+
</a>
|
|
14
|
+
<a href="https://github.com/unnoq/orpc/blob/main/LICENSE">
|
|
15
|
+
<img alt="MIT License" src="https://img.shields.io/github/license/unnoq/orpc?logo=open-source-initiative" />
|
|
16
|
+
</a>
|
|
17
|
+
<a href="https://discord.gg/TXEbwRBvQn">
|
|
18
|
+
<img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
|
|
19
|
+
</a>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<h3 align="center">Typesafe APIs Made Simple 🪄</h3>
|
|
23
|
+
|
|
24
|
+
**oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards, ensuring a smooth and enjoyable developer experience.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Highlights
|
|
29
|
+
|
|
30
|
+
- **End-to-End Type Safety 🔒**: Ensure complete type safety from inputs to outputs and errors, bridging server and client seamlessly.
|
|
31
|
+
- **First-Class OpenAPI 📄**: Adheres to the OpenAPI standard out of the box, ensuring seamless integration and comprehensive API documentation.
|
|
32
|
+
- **Contract-First Development 📜**: (Optional) Define your API contract upfront and implement it with confidence.
|
|
33
|
+
- **Exceptional Developer Experience ✨**: Enjoy a streamlined workflow with robust typing and clear, in-code documentation.
|
|
34
|
+
- **Multi-Runtime Support 🌍**: Run your code seamlessly on Cloudflare, Deno, Bun, Node.js, and more.
|
|
35
|
+
- **Framework Integrations 🧩**: Supports Tanstack Query (React, Vue), Pinia Colada, and more.
|
|
36
|
+
- **Server Actions ⚡️**: Fully compatible with React Server Actions on Next.js, TanStack Start, and more.
|
|
37
|
+
- **Standard Schema Support 🗂️**: Effortlessly work with Zod, Valibot, ArkType, and others right out of the box.
|
|
38
|
+
- **Fast & Lightweight 💨**: Built on native APIs across all runtimes – optimized for speed and efficiency.
|
|
39
|
+
- **Native Types 📦**: Enjoy built-in support for Date, File, Blob, BigInt, URL and more with no extra setup.
|
|
40
|
+
- **Lazy Router ⏱️**: Improve cold start times with our lazy routing feature.
|
|
41
|
+
- **SSE & Streaming 📡**: Provides SSE and streaming features – perfect for real-time notifications and AI-powered streaming responses.
|
|
42
|
+
- **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
|
|
43
|
+
- **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
|
|
44
|
+
- **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
|
|
45
|
+
- **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
|
|
46
|
+
|
|
47
|
+
## Documentation
|
|
48
|
+
|
|
49
|
+
You can find the full documentation [here](https://orpc.unnoq.com).
|
|
50
|
+
|
|
51
|
+
## Packages
|
|
52
|
+
|
|
53
|
+
- [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
|
|
54
|
+
- [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
|
|
55
|
+
- [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
|
|
56
|
+
- [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
|
|
57
|
+
- [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
|
|
58
|
+
- [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
59
|
+
- [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
|
|
60
|
+
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
|
61
|
+
|
|
62
|
+
## `@orpc/standard-server`
|
|
63
|
+
|
|
64
|
+
This package is designed to be used as a base for other server implementations.
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
Distributed under the MIT License. See [LICENSE](https://github.com/unnoq/orpc/blob/main/LICENSE) for more information.
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
|
|
2
|
+
|
|
3
|
+
interface EventMessage {
|
|
4
|
+
event: string | undefined;
|
|
5
|
+
id: string | undefined;
|
|
6
|
+
data: string | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* The number of milliseconds to wait before retrying the event source if error occurs.
|
|
9
|
+
*/
|
|
10
|
+
retry: number | undefined;
|
|
11
|
+
comments: string[];
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare function decodeEventMessage(encoded: string): EventMessage;
|
|
15
|
+
interface EventDecoderOptions {
|
|
16
|
+
onEvent?: (event: EventMessage) => void;
|
|
17
|
+
}
|
|
18
|
+
declare class EventDecoder {
|
|
19
|
+
private options;
|
|
20
|
+
private incomplete;
|
|
21
|
+
constructor(options?: EventDecoderOptions);
|
|
22
|
+
feed(chunk: string): void;
|
|
23
|
+
end(): void;
|
|
24
|
+
}
|
|
25
|
+
declare class EventDecoderStream extends TransformStream<string, EventMessage> {
|
|
26
|
+
constructor();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare function assertEventId(id: string): void;
|
|
30
|
+
declare function assertEventName(event: string): void;
|
|
31
|
+
declare function assertEventRetry(retry: number): void;
|
|
32
|
+
declare function assertEventComment(comment: string): void;
|
|
33
|
+
declare function encodeEventData(data: string | undefined): string;
|
|
34
|
+
declare function encodeEventComments(comments: string[] | undefined): string;
|
|
35
|
+
declare function encodeEventMessage(message: Partial<EventMessage>): string;
|
|
36
|
+
|
|
37
|
+
declare class EventEncoderError extends TypeError {
|
|
38
|
+
}
|
|
39
|
+
declare class EventDecoderError extends TypeError {
|
|
40
|
+
}
|
|
41
|
+
interface ErrorEventOptions extends ErrorOptions {
|
|
42
|
+
message?: string;
|
|
43
|
+
data?: unknown;
|
|
44
|
+
}
|
|
45
|
+
declare class ErrorEvent extends Error {
|
|
46
|
+
data: unknown;
|
|
47
|
+
constructor(options?: ErrorEventOptions);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
|
|
51
|
+
declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
|
|
52
|
+
declare function getEventMeta(container: unknown): EventMeta | undefined;
|
|
53
|
+
|
|
54
|
+
interface StandardHeaders {
|
|
55
|
+
[key: string]: string | string[] | undefined;
|
|
56
|
+
}
|
|
57
|
+
type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
|
|
58
|
+
interface StandardRequest {
|
|
59
|
+
/**
|
|
60
|
+
* Can be { request: Request } or { request: IncomingMessage, response: ServerResponse } based on the adapter.
|
|
61
|
+
*/
|
|
62
|
+
raw: Record<string, unknown>;
|
|
63
|
+
method: string;
|
|
64
|
+
url: URL;
|
|
65
|
+
headers: StandardHeaders;
|
|
66
|
+
/**
|
|
67
|
+
* The body has been parsed base on the content-type header.
|
|
68
|
+
* This method can safely call multiple times (cached).
|
|
69
|
+
*/
|
|
70
|
+
body: () => Promise<StandardBody>;
|
|
71
|
+
signal: AbortSignal | undefined;
|
|
72
|
+
}
|
|
73
|
+
interface StandardResponse {
|
|
74
|
+
status: number;
|
|
75
|
+
headers: StandardHeaders;
|
|
76
|
+
body: StandardBody;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
|
|
2
|
+
|
|
3
|
+
interface EventMessage {
|
|
4
|
+
event: string | undefined;
|
|
5
|
+
id: string | undefined;
|
|
6
|
+
data: string | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* The number of milliseconds to wait before retrying the event source if error occurs.
|
|
9
|
+
*/
|
|
10
|
+
retry: number | undefined;
|
|
11
|
+
comments: string[];
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare function decodeEventMessage(encoded: string): EventMessage;
|
|
15
|
+
interface EventDecoderOptions {
|
|
16
|
+
onEvent?: (event: EventMessage) => void;
|
|
17
|
+
}
|
|
18
|
+
declare class EventDecoder {
|
|
19
|
+
private options;
|
|
20
|
+
private incomplete;
|
|
21
|
+
constructor(options?: EventDecoderOptions);
|
|
22
|
+
feed(chunk: string): void;
|
|
23
|
+
end(): void;
|
|
24
|
+
}
|
|
25
|
+
declare class EventDecoderStream extends TransformStream<string, EventMessage> {
|
|
26
|
+
constructor();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare function assertEventId(id: string): void;
|
|
30
|
+
declare function assertEventName(event: string): void;
|
|
31
|
+
declare function assertEventRetry(retry: number): void;
|
|
32
|
+
declare function assertEventComment(comment: string): void;
|
|
33
|
+
declare function encodeEventData(data: string | undefined): string;
|
|
34
|
+
declare function encodeEventComments(comments: string[] | undefined): string;
|
|
35
|
+
declare function encodeEventMessage(message: Partial<EventMessage>): string;
|
|
36
|
+
|
|
37
|
+
declare class EventEncoderError extends TypeError {
|
|
38
|
+
}
|
|
39
|
+
declare class EventDecoderError extends TypeError {
|
|
40
|
+
}
|
|
41
|
+
interface ErrorEventOptions extends ErrorOptions {
|
|
42
|
+
message?: string;
|
|
43
|
+
data?: unknown;
|
|
44
|
+
}
|
|
45
|
+
declare class ErrorEvent extends Error {
|
|
46
|
+
data: unknown;
|
|
47
|
+
constructor(options?: ErrorEventOptions);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
|
|
51
|
+
declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
|
|
52
|
+
declare function getEventMeta(container: unknown): EventMeta | undefined;
|
|
53
|
+
|
|
54
|
+
interface StandardHeaders {
|
|
55
|
+
[key: string]: string | string[] | undefined;
|
|
56
|
+
}
|
|
57
|
+
type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
|
|
58
|
+
interface StandardRequest {
|
|
59
|
+
/**
|
|
60
|
+
* Can be { request: Request } or { request: IncomingMessage, response: ServerResponse } based on the adapter.
|
|
61
|
+
*/
|
|
62
|
+
raw: Record<string, unknown>;
|
|
63
|
+
method: string;
|
|
64
|
+
url: URL;
|
|
65
|
+
headers: StandardHeaders;
|
|
66
|
+
/**
|
|
67
|
+
* The body has been parsed base on the content-type header.
|
|
68
|
+
* This method can safely call multiple times (cached).
|
|
69
|
+
*/
|
|
70
|
+
body: () => Promise<StandardBody>;
|
|
71
|
+
signal: AbortSignal | undefined;
|
|
72
|
+
}
|
|
73
|
+
interface StandardResponse {
|
|
74
|
+
status: number;
|
|
75
|
+
headers: StandardHeaders;
|
|
76
|
+
body: StandardBody;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { isTypescriptObject } from '@orpc/shared';
|
|
2
|
+
export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
|
|
3
|
+
|
|
4
|
+
class EventEncoderError extends TypeError {
|
|
5
|
+
}
|
|
6
|
+
class EventDecoderError extends TypeError {
|
|
7
|
+
}
|
|
8
|
+
class ErrorEvent extends Error {
|
|
9
|
+
data;
|
|
10
|
+
constructor(options) {
|
|
11
|
+
super(options?.message ?? "An error event was received", options);
|
|
12
|
+
this.data = options?.data;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function decodeEventMessage(encoded) {
|
|
17
|
+
const lines = encoded.replace(/\n+$/, "").split(/\n/);
|
|
18
|
+
const message = {
|
|
19
|
+
data: void 0,
|
|
20
|
+
event: void 0,
|
|
21
|
+
id: void 0,
|
|
22
|
+
retry: void 0,
|
|
23
|
+
comments: []
|
|
24
|
+
};
|
|
25
|
+
for (const line of lines) {
|
|
26
|
+
const index = line.indexOf(":");
|
|
27
|
+
const key = index === -1 ? line : line.slice(0, index);
|
|
28
|
+
const value = index === -1 ? "" : line.slice(index + 1).replace(/^\s/, "");
|
|
29
|
+
if (index === 0) {
|
|
30
|
+
message.comments.push(value);
|
|
31
|
+
} else if (key === "data") {
|
|
32
|
+
message.data ??= "";
|
|
33
|
+
message.data += `${value}
|
|
34
|
+
`;
|
|
35
|
+
} else if (key === "event") {
|
|
36
|
+
message.event = value;
|
|
37
|
+
} else if (key === "id") {
|
|
38
|
+
message.id = value;
|
|
39
|
+
} else if (key === "retry") {
|
|
40
|
+
const maybeInteger = Number.parseInt(value);
|
|
41
|
+
if (Number.isInteger(maybeInteger) && maybeInteger >= 0 && maybeInteger.toString() === value) {
|
|
42
|
+
message.retry = maybeInteger;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
message.data = message.data?.replace(/\n$/, "");
|
|
47
|
+
return message;
|
|
48
|
+
}
|
|
49
|
+
class EventDecoder {
|
|
50
|
+
constructor(options = {}) {
|
|
51
|
+
this.options = options;
|
|
52
|
+
}
|
|
53
|
+
incomplete = "";
|
|
54
|
+
feed(chunk) {
|
|
55
|
+
this.incomplete += chunk;
|
|
56
|
+
const lastCompleteIndex = this.incomplete.lastIndexOf("\n\n");
|
|
57
|
+
if (lastCompleteIndex === -1) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
const completes = this.incomplete.slice(0, lastCompleteIndex).split(/\n\n/);
|
|
61
|
+
this.incomplete = this.incomplete.slice(lastCompleteIndex + 2);
|
|
62
|
+
for (const encoded of completes) {
|
|
63
|
+
const message = decodeEventMessage(`${encoded}
|
|
64
|
+
|
|
65
|
+
`);
|
|
66
|
+
if (this.options.onEvent) {
|
|
67
|
+
this.options.onEvent(message);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
this.incomplete = "";
|
|
71
|
+
}
|
|
72
|
+
end() {
|
|
73
|
+
if (this.incomplete) {
|
|
74
|
+
throw new EventDecoderError("EventSource ended before complete");
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
class EventDecoderStream extends TransformStream {
|
|
79
|
+
constructor() {
|
|
80
|
+
let decoder;
|
|
81
|
+
super({
|
|
82
|
+
start(controller) {
|
|
83
|
+
decoder = new EventDecoder({
|
|
84
|
+
onEvent: (event) => {
|
|
85
|
+
controller.enqueue(event);
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
},
|
|
89
|
+
transform(chunk) {
|
|
90
|
+
decoder.feed(chunk);
|
|
91
|
+
},
|
|
92
|
+
flush() {
|
|
93
|
+
decoder.end();
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function assertEventId(id) {
|
|
100
|
+
if (id.includes("\n")) {
|
|
101
|
+
throw new EventEncoderError("Event-source id must not contain a newline character");
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
function assertEventName(event) {
|
|
105
|
+
if (event.includes("\n")) {
|
|
106
|
+
throw new EventEncoderError("Event-source event must not contain a newline character");
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
function assertEventRetry(retry) {
|
|
110
|
+
if (!Number.isInteger(retry) || retry < 0) {
|
|
111
|
+
throw new EventEncoderError("Event-source retry must be a integer and >= 0");
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
function assertEventComment(comment) {
|
|
115
|
+
if (comment.includes("\n")) {
|
|
116
|
+
throw new EventEncoderError("Event-source comment must not contain a newline character");
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
function encodeEventData(data) {
|
|
120
|
+
const lines = data?.split(/\n/) ?? [];
|
|
121
|
+
let output = "";
|
|
122
|
+
for (const line of lines) {
|
|
123
|
+
output += `data: ${line}
|
|
124
|
+
`;
|
|
125
|
+
}
|
|
126
|
+
return output;
|
|
127
|
+
}
|
|
128
|
+
function encodeEventComments(comments) {
|
|
129
|
+
let output = "";
|
|
130
|
+
for (const comment of comments ?? []) {
|
|
131
|
+
assertEventComment(comment);
|
|
132
|
+
output += `: ${comment}
|
|
133
|
+
`;
|
|
134
|
+
}
|
|
135
|
+
return output;
|
|
136
|
+
}
|
|
137
|
+
function encodeEventMessage(message) {
|
|
138
|
+
let output = "";
|
|
139
|
+
output += encodeEventComments(message.comments);
|
|
140
|
+
if (message.event !== void 0) {
|
|
141
|
+
assertEventName(message.event);
|
|
142
|
+
output += `event: ${message.event}
|
|
143
|
+
`;
|
|
144
|
+
}
|
|
145
|
+
if (message.retry !== void 0) {
|
|
146
|
+
assertEventRetry(message.retry);
|
|
147
|
+
output += `retry: ${message.retry}
|
|
148
|
+
`;
|
|
149
|
+
}
|
|
150
|
+
if (message.id !== void 0) {
|
|
151
|
+
assertEventId(message.id);
|
|
152
|
+
output += `id: ${message.id}
|
|
153
|
+
`;
|
|
154
|
+
}
|
|
155
|
+
output += encodeEventData(message.data);
|
|
156
|
+
output += "\n";
|
|
157
|
+
return output;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
const EVENT_SOURCE_META_SYMBOL = Symbol("ORPC_EVENT_SOURCE_META");
|
|
161
|
+
function withEventMeta(container, meta) {
|
|
162
|
+
if (meta.id !== void 0) {
|
|
163
|
+
assertEventId(meta.id);
|
|
164
|
+
}
|
|
165
|
+
if (meta.retry !== void 0) {
|
|
166
|
+
assertEventRetry(meta.retry);
|
|
167
|
+
}
|
|
168
|
+
if (meta.comments !== void 0) {
|
|
169
|
+
for (const comment of meta.comments) {
|
|
170
|
+
assertEventComment(comment);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
return new Proxy(container, {
|
|
174
|
+
get(target, prop, receiver) {
|
|
175
|
+
if (prop === EVENT_SOURCE_META_SYMBOL) {
|
|
176
|
+
return meta;
|
|
177
|
+
}
|
|
178
|
+
return Reflect.get(target, prop, receiver);
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
function getEventMeta(container) {
|
|
183
|
+
return isTypescriptObject(container) ? Reflect.get(container, EVENT_SOURCE_META_SYMBOL) : void 0;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export { ErrorEvent, EventDecoder, EventDecoderError, EventDecoderStream, EventEncoderError, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@orpc/standard-server",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0-next.05ebcce",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://unnoq.com",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/unnoq/orpc.git",
|
|
10
|
+
"directory": "packages/standard-server"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"orpc"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.mts",
|
|
18
|
+
"import": "./dist/index.mjs",
|
|
19
|
+
"default": "./dist/index.mjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@tinyhttp/content-disposition": "^2.2.2",
|
|
27
|
+
"@orpc/shared": "0.0.0-next.05ebcce"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "unbuild",
|
|
31
|
+
"build:watch": "pnpm run build --watch",
|
|
32
|
+
"type:check": "tsc -b"
|
|
33
|
+
}
|
|
34
|
+
}
|