Skip to content

Instantly share code, notes, and snippets.

@sebastianrothbucher
Created February 26, 2016 12:21
Show Gist options
  • Save sebastianrothbucher/cd06bf76562bedbd9d45 to your computer and use it in GitHub Desktop.
Save sebastianrothbucher/cd06bf76562bedbd9d45 to your computer and use it in GitHub Desktop.
Write 2 plain TCP (like netcat would)
$ node -e 'var net=require("net"); var client=net.connect({port: 1881}, function(){client.write("hey"); client.end();}); '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment