UNPKG

node-tagger

Version:

Node Web Service to tag Part Of Speech (POS)

9 lines (7 loc) 206 B
angular.module('Services', ['ngResource']). factory('Tagger', function($resource) { var url = '/ws/tag/phrase'; console.log('url='+url); return $resource(url, {}, {}); }) ;