check if the word exist in the language configured, the language could be english , spanish, french or german
$ npm install check-word
var checkWord = require('check-word'),
words = checkWord('en'); // setup the language for check, default is en
words.check('dog'); // true
words.check('perro'); // false
words.check('hi'); // true
...
thanks to repository atebits/words.