- 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>
1.7 KiB
1.7 KiB
@remix-run/web-stream
Web streams APIs across web & node. In browsers this library just exports stream constructors, in node it exports [native web stream implementations][node webstreams] when available and web-streams-polyfill
⚠️ Please note that library makes no attempt to polyfill
WritableStreamorTransforStreamin web browsers that do not have them.
Usage
import {
ReadableStream,
WritableStream,
TransformStream,
} from "@remix-run/web-stream"
Usage from Typescript
This library makes use of typescript using JSDOC annotations and also generates type definitions along with typed definition maps. So you should be able to get all the type inference out of the box.
Install
npm install @remix-run/web-stream