In your shell command prompt type in $> node
The REPL enviroment for node will turn up. Type the following command one by one to try and test pool module, interactively.
var myPool = require("pool");
var fun = function (){}
myPool.addKeyValue("a","b",fun);
myPool.enumerate();
.exit