1.0.7 • Published 4 years ago

text-language-detector v1.0.7

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

Text Language Detector

Integrate language detection in your system with just one dependency.
This package has only one function export. Simple and consise API.

Install

npm i --save text-language-detector

Use

const detect = require("text-language-detector")

detect (`Rikssvenska, eller standardsvenska`).then (console.log)

Output

{
	"match_score":4,
	"match_language": "swe",
	"match_language_data":{
		"code3": "swe",
		"code2": "sv",
		"names": "Swedish",
		"scope": "Individual",
		"type": "Living",
		"name_native": "svenska",
		"names_other": ""
	},
	"match_languages_count": 2,
	"match_languages":[
		{
			"lang": "swe",
			"matchScore":4,
			"data":{
				"code3": "swe",
				"code2": "sv",
				"names": "Swedish",
				"scope": "Individual",
				"type": "Living",
				"name_native": "svenska",
				"names_other": ""
			}
		},
		{
			"lang": "nob",
			"matchScore":1,
			"data":{
				"code3": "nob",
				"code2": "nb",
				"names": "Bokmål, Norwegian; Norwegian Bokmål",
				"scope": "Individual",
				"type": "Living",
				"name_native": "bokmål",
				"names_other": "Bokmål"
			}
		}
	]
}

Test

$ node test.js
Rikssvenska, eller standa... Language: swe
В России проживает более ... Language: rus
Fonetiškai ir morfologišk... Language: lit
Genealogisen eli kielen a... Language: fin
English is a West Germani... Language: eng
Elkeen het die reg tot op... Language: afr
1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago