code-server/packages/server
Asher d16c6aeb30
Fix port scanner when netstat isn't available
- It logs the error now.
- For some reason when there is an error node-netstat runs the callback
  twice. That resulted in us scheduling an exponentially growing number
	of calls which ate up all the CPU (and probably memory eventually).
  For now, opted to dispose when there is an error.
2019-03-25 18:31:43 -05:00
..
scripts Add task for packaging release (#6) 2019-03-06 18:15:52 -06:00
src Fix port scanner when netstat isn't available 2019-03-25 18:31:43 -05:00
.gitignore Add constants file 2019-02-07 13:11:01 -06:00
README.md Featureful (#31) 2019-02-21 11:55:42 -06:00
package.json Use a timing-safe equality check for passwords (#133) 2019-03-09 09:24:36 -08:00
webpack.config.js Fix trash 2019-03-12 14:04:17 -05:00
yarn.lock Use a timing-safe equality check for passwords (#133) 2019-03-09 09:24:36 -08:00

README.md

server

Endpoints

/tunnel/<port>

Tunnels a TCP connection over WebSockets. Implemented for proxying connections from a remote machine locally.

/ports

Watches for open ports. Implemented for tunneling ports on the remote server.

/resource/<url>

Reads files on GET. Writes files on POST.