varStaticServer = require('static-server');
var server = newStaticServer({
rootPath: '.', // required, the root of the server file treeport: process.argv[2], // required, the port to listen
});
server.start(function () {
console.log('Server listening to', server.port);
});