poolboy
v0.2.0
Published
TCP connection pool with support for cross domain xml handling
Readme
TCP Connection Pool for Node.js
To install:
npm install poolboyTo setup:
// import poolboy
var poolboy = require('poolboy');
// create connection pool with request port
var poolServer = poolboy.setupConnectionPool(5000);TCP requests on port 5000 will now setup a new socket and return the socket port for creating a new tcp connection
Adding new connections:
// assigns new port
var newServer = poolboy.add()
// assigns a new specific port number
var newSpecificServer = poolboy.add(1234)Serving cross domain policy documents:
currently supports unity/flash cross domain policy format
poolboy.crossPolicyEnabled = true;
poolboy.crossPolicyPort = 8080; // defaults to 3001Parse JSON responses:
poolboy.jsonEmitEnabled = true;
