word-stats
v0.3.0
Published
Analyze a list of words fetching pronunciation, stress, rhymes, and other useful data points.
Downloads
6
Readme
word-stats
Analyze a list of words fetching pronunciation, stress, rhymes, and other useful data points.
Install
npm install --save word-stats
Usage
var stats = require('word-stats');
var data = stats('elbow');
console.log(data);
/*
{
cmu: 'EH1 L B OW2',
pos: 'NN',
rhyme: 'OW',
stress: 'ss',
syllables: 2,
word: 'elbow'
}
*/
License
MIT