Files
dewedev/node_modules/spdy-transport/lib/spdy-transport.js
dwindown 7f2dd5260f Initial commit: Developer Tools MVP with visual editor
- Complete React app with 7 developer tools
- JSON Tool with visual structured editor
- Serialize Tool with visual structured editor
- URL, Base64, CSV/JSON, Beautifier, Diff tools
- Responsive navigation with dropdown menu
- Dark/light mode toggle
- Mobile-responsive design with sticky header
- All tools working with copy/paste functionality
2025-08-02 09:31:26 +07:00

26 lines
760 B
JavaScript

'use strict'
var transport = exports
// Exports utils
transport.utils = require('./spdy-transport/utils')
// Export parser&framer
transport.protocol = {}
transport.protocol.base = require('./spdy-transport/protocol/base')
transport.protocol.spdy = require('./spdy-transport/protocol/spdy')
transport.protocol.http2 = require('./spdy-transport/protocol/http2')
// Window
transport.Window = require('./spdy-transport/window')
// Priority Tree
transport.Priority = require('./spdy-transport/priority')
// Export Connection and Stream
transport.Stream = require('./spdy-transport/stream').Stream
transport.Connection = require('./spdy-transport/connection').Connection
// Just for `transport.connection.create()`
transport.connection = transport.Connection