├── .gitignore ├── LICENSE ├── README.md ├── examples ├── hashtagger │ ├── README.md │ └── tag_generator.js └── sentiments.js ├── index.js ├── lib ├── StanfordNLP.js ├── getParsedTree.js ├── index.js └── util.js ├── package.json └── test ├── StanfordSimpleNLP.test.js └── getParsedTree.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/README.md -------------------------------------------------------------------------------- /examples/hashtagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/examples/hashtagger/README.md -------------------------------------------------------------------------------- /examples/hashtagger/tag_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/examples/hashtagger/tag_generator.js -------------------------------------------------------------------------------- /examples/sentiments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/examples/sentiments.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/index'); -------------------------------------------------------------------------------- /lib/StanfordNLP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/lib/StanfordNLP.js -------------------------------------------------------------------------------- /lib/getParsedTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/lib/getParsedTree.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/package.json -------------------------------------------------------------------------------- /test/StanfordSimpleNLP.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/test/StanfordSimpleNLP.test.js -------------------------------------------------------------------------------- /test/getParsedTree.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshjoshi/node-stanford-corenlp/HEAD/test/getParsedTree.test.js --------------------------------------------------------------------------------