npm - How to add browserify as a dependency of your node.js application? -
my node.js application depends on fact browserify available on command line, uses on shell script. how can make sure available on application without having require client install manually via npm install?
since you're not giving context, i'm assuming external dependencies located in ./node_modules in app's directory.
in case, install browserify (local) dependency, make available ./node_modules/.bin/browserify. that's how can refer shell script.
Comments
Post a Comment