Skip to content

Instantly share code, notes, and snippets.

@evanlucas
Created February 16, 2016 18:42
Show Gist options
  • Save evanlucas/d5f281b46806c42e0a12 to your computer and use it in GitHub Desktop.
Save evanlucas/d5f281b46806c42e0a12 to your computer and use it in GitHub Desktop.
net.js
'use strict'
const net = require('net')
const server = net.createServer((sock) => {
throw new Error('boom')
}).listen(8123, () => {
net.connect(8123)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment