ssbc/paulcbetts-cld-prebuilt

Name: paulcbetts-cld-prebuilt

Owner: Secure Scuttlebutt Consortium

Description: Fork of @paulcbetts/cld with automated prebuilds

Created: 2017-12-11 04:12:44.0

Updated: 2018-03-12 16:19:33.0

Pushed: 2017-12-11 04:44:39.0

Homepage: null

Size: 40071

Language: C++

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

node-cld

Build Status Dependencies NPM version

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.

Installation
m install cld

Linux users, make sure you have g++ >= 4.8. If this is not an option, you should be able to install node-cld 2.4.4 even with an older g++ build.

Examples
Simple
ire('cld').detect('This is a language recognition example', function(err, result) {
nsole.log(result);

Advanced
text    = '???? ? ?????? ?? ???????????? ?? ????????? ????';
options = {
HTML       : false,
nguageHint : 'BULGARIAN',
codingHint : 'ISO_8859_5',
dHint      : 'bg',
tpHint     : 'bg'


ire('cld').detect(text, options, function(err, result) {
nsole.log(result);

Options
isHTML

Set to true if the string contains HTML tags

languageHint

Pass a LANGUAGES key or value as a hint

encodingHint

Pass an ENCODINGS value as a hint

tldHint

Pass top level domain as a hint

httpHint

Pass an HTTP “Content-Encoding” value as a hint

Warning

Once the module has been installed, the underlying C source will remain in the `deps/cld` folder and continue to occupy considerable space. If you are under severe constraints you can delete this folder and reclam >100M

Copyright

Copyright 2011-2015, Blagovest Dachev.

License

Apache 2


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.