Hey,
I am using browserify with express/nodejs to share a module with the browser itself. For those familiar, all my main.js file has is:
var Firebase = require('firebase');
running browserify main.js gives:
Error: Cannot find module 'request'
I am pretty new to browserify/express, so I could be doing something silly. Am I missing an import somewhere?
Thanks,
Raghav