I'm trying to build a client-side application with google-api-nodejs-client using browserify. Looks like inside it is trying to read some mime-type info using fs module and fails to do it in browser.
// Load additional types from node.js community
mime.load(path.join(__dirname, 'types/node.types'));
// Default type
mime.default_type = mime.lookup('bin');
Did anybody use this API for client side development?