node-corenlp
node-corenlp copied to clipboard
browserify does not work until package.json modified for request-promise-native.js
Tried to browserify my js file requiring corenlp, and only succeeded after I manually modified the line:
"request-promise-native": "./src/polyfills/request-promise-native.js",
to
"request-promise-native": "./dist/polyfills/request-promise-native.js",
I am new to node.js, and not sure if this is an issue. Just reporting the situation.