|
| 1 | +`LanguageDetect` is a port of the [PEAR::Text_LanguageDetect](http://pear.php.net/package/Text_LanguageDetect) for [node.js](http://nodejs.org). |
| 2 | + |
| 3 | +LanguageDetect can identify 52 human languages from text samples and return confidence scores for each. |
| 4 | + |
| 5 | +### Installation |
| 6 | + |
| 7 | +This package can be installed via [npm](http://npmjs.org/) as follows |
| 8 | + |
| 9 | + % npm install languagedetect -g |
| 10 | + |
| 11 | +### Example |
| 12 | + |
| 13 | + var LanguageDetect = require('languagedetect'); |
| 14 | + var lngDetector = new LanguageDetect(); |
| 15 | + |
| 16 | + // OR |
| 17 | + // var lngDetector = new (require('languagedetect')); |
| 18 | + |
| 19 | + console.log(lngDetector.detect('This is a test.')); |
| 20 | + |
| 21 | + /* |
| 22 | + Will print: |
| 23 | + [ [ 'english', 0.5969230769230769 ], |
| 24 | + [ 'hungarian', 0.407948717948718 ], |
| 25 | + [ 'latin', 0.39205128205128204 ], |
| 26 | + [ 'french', 0.367948717948718 ], |
| 27 | + [ 'portuguese', 0.3669230769230769 ], |
| 28 | + [ 'estonian', 0.3507692307692307 ], |
| 29 | + [ 'latvian', 0.2615384615384615 ], |
| 30 | + [ 'spanish', 0.2597435897435898 ], |
| 31 | + [ 'slovak', 0.25051282051282053 ], |
| 32 | + [ 'dutch', 0.2482051282051282 ], |
| 33 | + [ 'lithuanian', 0.2466666666666667 ], |
| 34 | + ... ] |
| 35 | + */ |
| 36 | + |
| 37 | + // Only get first 2 results |
| 38 | + console.log(lngDetector.detect('This is a test.', 2)); |
| 39 | + |
| 40 | + /* |
| 41 | + [ [ 'english', 0.5969230769230769 ], [ 'hungarian', 0.407948717948718 ] ] |
| 42 | + */ |
| 43 | + |
| 44 | +### API |
| 45 | + |
| 46 | + * `detect(sample, limit)` Detects the closeness of a sample of text to the known languages |
| 47 | + * `getLanguages()` Returns the list of detectable languages |
| 48 | + * `getLanguageCount()` Returns the number of languages that the lib can detect |
| 49 | + |
| 50 | +### Benchmark |
| 51 | + |
| 52 | +Currently LanguageDetect handles 1000 items in 2 seconds (vs 7.5 seconds with PEAR::Text_LanguageDetect) |
| 53 | + |
| 54 | +### Credits |
| 55 | + |
| 56 | +Nicholas Pisarro for his work on [PEAR::Text_LanguageDetect](http://pear.php.net/package/Text_LanguageDetect) |
0 commit comments