パッケージの詳細

emailjs-tcp-proxy

emailjs40MIT非推奨1.0.2

This project is no longer maintained. Please reach out if you want to hop on as a maintainer.

Tunnels tcp connections to Socket.IO without TLS termination

emailjs, sockets, tcp, tls

readme

emailjs-tcp-proxy

Tunnels tcp connections to socketio without TLS termination

Usage as library to use in your own services

import attachProxy from 'emailjs-tcp-proxy'
import express from 'express'
import { Server } from 'http'

const server = Server(express())
server.listen(12345, () => {
  attachProxy(server)
})

Usage as standalone

git clone git@github.com:emailjs/emailjs-tcp-proxy.git
cd emailjs-tcp-proxy
PROXY_PORT=1234 npm start