Skip to content

Instantly share code, notes, and snippets.

@thelinuxlich
Created June 2, 2015 18:47
Show Gist options
  • Save thelinuxlich/a2397a5fd0768603e8e7 to your computer and use it in GitHub Desktop.
Save thelinuxlich/a2397a5fd0768603e8e7 to your computer and use it in GitHub Desktop.
Client impl
"use strict";
const nano = require("nanomsg"),
rep = nano.socket("rep");
rep.connect("tcp://127.0.0.1:7000");
rep.on("message", function(buf) {
console.log(buf.toString());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment