wordfuzz
v1.1.0
Published
Natural Language Processing with Datamuse and Wordnet
Downloads
24
Maintainers
Readme
wordfuzz
Natural Language Processing with Datamuse and Wordnet
Install dependency
# With npm
npm install --save wordfuzz
# With yarn
yarn add wordfuzz
Quickstart
const fuzz = require('wordfuzz');
fuzz()
.meansLike('develop')
.endsWith('m')
.max(1)
.ask().then(console.log);
// [{ word: 'transform', score: 17905, tags: ['v'] }]
TODO
- [ ] Complete Datamuse integration
- [ ] Provide option to communicate with local Wordnet
- [ ] Generate sentences instead of just words