service registry and port assignment for clusters
First spin up the seaport server:
$ seaport 9090
seaport listening on :9090
then obtain a port for a server called 'web'
:
server.js:
var seaport = require('seaport');
var ports = seaport.connect('localhost', 9090, { secret : 'beep boop' });
var http = require('http');
var server = http.createServer(function (req, res) {
res.end('beep boop\r\n');
});
ports.service('[email protected]', function (port, ready) {
server.listen(port, ready);
});
now just get()
that 'web'
service!
client.js:
var seaport = require('seaport');
var ports = seaport.connect(9090, { secret : 'beep boop' });
var request = require('request');
ports.get('[email protected]', function (ps) {
var u = 'http://' + ps[0].host + ':' + ps[0].port;
request(u).pipe(process.stdout);
});
output:
$ node server.js &
[1] 6012
$ node client.js
beep boop
and if you spin up client.js
before server.js
then it still works because
get()
queues the response!
Usage:
OPTIONS
--secret Use a service password for seaport connections.
seaport port OPTIONS
Create seaport server.
seaport host:port show OPTIONS
Show the port map from the server at host:port.
seaport host:port service name@version OPTIONS -- [COMMAND...]
Register a service. COMMAND will get an assigned port to use as
its last argument. If COMMAND exits it will be restarted.
seaport host:port query name@version OPTIONS
Query the server for services matching the name@version pattern.
The version may contain semver patterns to specify a range.
Prints out a JSON array of host:port strings.
var seaport = require('seaport')
All the parameters that take a role
parameter can be intelligently versioned
with semvers by specifying a version in
the role
parameter after an '@'
character.
Connect to the seaport service at ...
.
Request an array of host/port objects through cb(services)
that fulfill role
.
If there are no such services then the callback cb
will get queued until some
service fulfilling role
gets allocated.
Create a service fulfilling the role of role
.
Receive a callback cb(port, ready)
with the allocated port
and ready()
function to call and re-assume the port
every time the seaport service
connection gets interrupted.
Request a port to fulfil a role
. cb(port, ready)
fires with the result.
Call ready()
when your service is ready to start accepting connections.
If cb.length === 1
then ready()
will be fired automatically.
Give a port back. cb()
fires when complete.
Dictate to the server what port you are listening on. This is useful for re-establishing a route without restarting the server.
Get the services that satisfy the role role
in cb(services)
.
Services are just objects that look like: { host : '1.2.3.4', port : 5678 }
.
Instead of using the command-line tool to spin up a seaport server, you can use these api methods:
Create a new dnode seaport server.
The server emits 'allocate'
, 'assume'
, and 'free'
events when clients
allocate, assume, and free ports.
To get the seaport library, with npm do:
npm install seaport
To get the seaport command, do:
npm install -g seaport
MIT/X11