- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
1.1 KiB
Markdown
27 lines
1.1 KiB
Markdown
# @remix-run/server-runtime
|
|
|
|
[Remix](https://remix.run) supports multiple server runtimes:
|
|
|
|
- [Node](https://nodejs.org/en/)
|
|
- [Cloudflare](https://developers.cloudflare.com/workers/learning/how-workers-works/)
|
|
- [Deno](https://deno.land/) (Experimental 🧪)
|
|
|
|
Support for each runtime is provided by a corresponding Remix package:
|
|
|
|
- [`@remix-run/node`](https://github.com/remix-run/remix/tree/main/packages/remix-node)
|
|
- [`@remix-run/cloudflare`](https://github.com/remix-run/remix/tree/main/packages/remix-cloudflare)
|
|
- [`@remix-run/deno`](https://github.com/remix-run/remix/tree/main/packages/remix-deno)
|
|
|
|
This package defines a "Remix server runtime interface" that each runtime package must conform to.
|
|
|
|
Each Remix server runtime package MUST:
|
|
|
|
- Implement and export values for each type in [`interface.ts`](./interface.ts)
|
|
- Re-export types in [`reexport.ts`](./reexport.ts)
|
|
|
|
Each Remix server runtime package MAY:
|
|
|
|
- Re-export the [default implementations](./index.ts) as its implementations
|
|
- Export custom implementations adhering to the [interface types](./interface.ts)
|
|
- Provide additional exports relevant for that runtime
|