require returns an object, you should store it somewhere
var Bob = require('./bob');
and then use this object
var bobInstance = new Bob();
require returns an object, you should store it somewhere
var Bob = require('./bob');
and then use this object
var bobInstance = new Bob();