in index.js [42:53]
function getMachineList()
{
if (machineList == null)
{
if (fs.existsSync(filename)){
machineList = JSON.parse(fs.readFileSync(filename, 'utf8'));
} else {
machineList = []
}
}
return machineList;
}