Language detection for Javascript. Based on the CLD2 (Compact Language Detector) library from Google.
Highly optimized for space and speed. Runs about 10x faster than other libraries. Detects over 160 languages. Full test coverage. Runs on Linux, OS X, and Windows.
$ npm install cld
require('cld').detect('This is a language recognition example', function(err, result) {
console.log(result);
});
var text = 'Това е пример за разпознаване на Български език';
var options = {
isHTML : false,
languageHint : 'BULGARIAN',
encodingHint : 'ISO_8859_5',
tldHint : 'bg',
httpHint : 'bg'
};
require('cld').detect(text, options, function(err, result) {
console.log(result);
});
Set to true if the string contains HTML tags
Pass a LANGUAGES key or value as a hint
Pass an ENCODINGS value as a hint
Pass top level domain as a hint
Pass an HTTP "Content-Encoding" value as a hint
Copyright 2011-2014, Blagovest Dachev.
Apache 2