I want to customize the Parse SDK. They provide source through an npm module, which makes it usable in node environments.
How can I compile this node module into a standalone parse.js script which will run as it is on a browser?
I tried using browserify as
browserify ./parse -o parse.js but the parse.js it spits out is quite large and still contains node remanents: process and require commands. Although it executes without any error on browser, the browser cannot find Parse definition.
processand so on. What do you have inparse.js?