Client for STANFORD NER
npm install ner> Client for Stanford NER
```
$ npm install --save ner
`js
const NER = require('ner');
const ner = new NER({
port:8080,
host:'172.17.0.2'
})
ner.get('Wikipedia is a free-access, free-content Internet encyclopedia, supported and hosted by the non-profit Wikimedia Foundation. Those who can access the site can edit most of its articles.[5] Wikipedia is ranked among the ten most popular websites,[4] and constitutes the Internets largest and most popular general', (err, res) => {
console.log(res.entities);
});
`
#### options
##### port
Type: integer
Port on which NER server is running.
##### host
Type: string
HOST of the NER server eg. localhost .
#### parms
#### text
Type: string
Text to be tagged
#### callback(err, response)
Type: function`
Callback function which recieves the response object.
##### response.entities
Parsed entities from the xml server response.
##### response.raw
Raw xml response from server
##### response._parsed
Internal parser representation (regex matches)
MIT © Nikhil Srivastava