Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kroid/angular-nlp-compromise
Natural Language Processing in your angularjs application. Based on nlp_compromise library (https://github.com/spencermountain/nlp_compromise)
https://github.com/kroid/angular-nlp-compromise
Last synced: about 2 months ago
JSON representation
Natural Language Processing in your angularjs application. Based on nlp_compromise library (https://github.com/spencermountain/nlp_compromise)
- Host: GitHub
- URL: https://github.com/kroid/angular-nlp-compromise
- Owner: Kroid
- Created: 2015-02-21T08:56:41.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-28T13:50:17.000Z (about 9 years ago)
- Last Synced: 2024-10-29T17:00:20.006Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 470 KB
- Stars: 33
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular-nlp-compromise
Natural Language Processing in your angularjs application. Based on [nlp_compromise](https://github.com/spencermountain/nlp_compromise) library.## Example:
[small angular example here](http://rawgit.com/kroid/angular-nlp-compromise/master/example/index.html)nlp_compromise examples:
* [Long Text Demo](http://rawgit.com/spencermountain/nlp_compromise/master/client_side/long_demo/index.html)
* [Specific Methods](http://rawgit.com/spencermountain/nlp_compromise/master/client_side/basic_demo/index.html)
* [Realtime Demo](http://rawgit.com/spencermountain/nlp_compromise/master/client_side/cute_demo/index.html)[![Video](http://i.vimeocdn.com/video/493948602_640.jpg)](https://vimeo.com/109880250)
## Getting started:
### Get the code:
Install via **[Bower](http://bower.io/)** `$ bower install --save angular-nlp-compromise`.Or [download the release](http://rawgit.com/kroid/angular-nlp-compromise/master/dist/angular-nlp-compromise.js) ([minified](http://rawgit.com/kroid/angular-nlp-compromise/master/dist/angular-nlp-compromise.min.js))
### Add module to your application.
#### index.html:
```html
```
#### app.js
```javascript
(function() {
angular
.module('app', ['nlpCompromise'])
.controller('AppController', controller);controller.$inject = ['nlp']
function controller(nlp) {
console.log(nlp);
}
})();
```
### Documentation
See docs in [nlp_compromise](https://github.com/spencermountain/nlp_compromise) repository.