Skip to content

Instantly share code, notes, and snippets.

@questsin
Created February 20, 2019 15:01
Show Gist options
  • Save questsin/9280af2a938e12b8fe6f17255a1bcc5c to your computer and use it in GitHub Desktop.
Save questsin/9280af2a938e12b8fe6f17255a1bcc5c to your computer and use it in GitHub Desktop.
var FicsClient = require("fics");
var socket = (new FicsClient()).getStream();
process.stdin.pipe(socket);
socket.pipe(process.stdout);
socket.on("close", process.exit);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment