You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# CoreNLP for NodeJS
2
2
3
-
This library helps making NodeJS applications using the state-of-the-art technology for Natural Language Processing: Stanford CoreNLP.
3
+
This library helps making NodeJS/Web applications using the state-of-the-art technology for Natural Language Processing: Stanford CoreNLP.
4
+
It is compatible with the latest release of [.
4
5
5
6
[](https://travis-ci.org/gerardobort/node-corenlp)[](https://npm.runkit.com/corenlp)
@@ -174,7 +175,15 @@ pipeline.annotateSemgrex(expression, true) // similarly use pipeline.annotateTo
174
175
});
175
176
```
176
177
177
-
## 5. External Documentation
178
+
## 5. Client Side
179
+
180
+
This library is isomorphic, which means that works as well on a Browser. The API is exactly the same, and you can use it directly by requiring it via a `<script>` tag, using AMD (RequireJS), or within your app bundle.
181
+
182
+
The browser ready version of `corenlp` can be found as `dist/index.browser.min.js`, once built (`npm run build`).
RelationExtractorAnnotator # https://stanfordnlp.github.io/CoreNLP/relation.html - TODO
204
213
NaturalLogicAnnotator # https://stanfordnlp.github.io/CoreNLP/natlog.html - TODO
205
214
QuoteAnnotator # https://stanfordnlp.github.io/CoreNLP/quote.html - TODO
206
215
util
207
216
Tree # http://www.cs.cornell.edu/courses/cs474/2004fa/lec1.pdf
208
217
```
209
218
210
-
## 6. References
219
+
## 7. References
211
220
212
221
This library is *not* maintained by [StanfordNLP](https://github.com/stanfordnlp). However, it's based on and depends on [StanfordNLP/CoreNLP](https://github.com/stanfordnlp/CoreNLP) to function.
Manning, Christopher D., Mihai Surdeanu, John Bauer, Jenny Finkel, Steven J. Bethard, and David McClosky. 2014. The Stanford CoreNLP Natural Language Processing Toolkit In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics: System Demonstrations, pp. 55-60.
0 commit comments