node-red-nodes/analysis/wordpos
Dave Conway-Jones 88985f4fe7 update analysis and utility nodes info style 2016-03-02 13:27:52 +00:00
..
72-wordpos.html update analysis and utility nodes info style 2016-03-02 13:27:52 +00:00
72-wordpos.js Update node-red-nodes sample, analysis, storage and time nodes to use strict and pass jshint scan 2014-06-28 23:37:19 +01:00
LICENSE Update swearfilter and wordpos as npms 2014-07-06 21:29:30 +01:00
README.md update analysis and utility nodes info style 2016-03-02 13:27:52 +00:00
package.json update analysis and utility nodes info style 2016-03-02 13:27:52 +00:00

README.md

node-red-node-wordpos

A Node-RED node that breaks a sentence into the various parts of (English) speech.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-wordpos

Usage

Uses the wordpos npm to analyse the msg.payload and classify the part-of-speech of each word.

The resulting message has a msg.pos object added with the results split into the following:

nouns:[],
verbs:[],
adjectives:[],
adverbs:[],
rest:[]

Note: a word may appear in multiple POS (eg, 'great' is both a noun and an adjective).