Coder Social home page Coder Social logo

language-detection's Introduction

Node JavaScript wrapper for the languagelayer API.

Supports both traditional callbacks and Promises/A+.

 

Installation

npm install language-detection [--save]

 

Configuration

Before using the languagelayer API client you have to setup your account and obtain your API Access Key.
You can get it by signing up at https://languagelayer.com/product.

 

Usage

The general API is documented here: https://languagelayer.com/documentation.
You can find parameters, result set definitions and status codes documented here as well.

Setup

var LanguageLayerAPI = require('language-detection');

var languageLayerAPI = new LanguageLayerAPI({
	access_key: [ACCESS_KEY],
	secure: [true|false] (Optional, defaults to false)
});

Optional Parameters

Secure (only available for Basic, Pro and Enterprise accounts)

Boolean value to indicate if the calls to the API should use a secure protocol or insecure (HTTP/HTTPS). Defaults to false (HTTP, insecure).

Callbacks vs. Promises

The Promises/A+ implementation used for this is this excellent bare bones library:
https://www.npmjs.com/package/promise

The language-detection library supports either mode and use of either one is not mutually exclusive to the alternative, so it's possible to use one exclusively or a combination, even in the same call, both the callback will be called and the promise handlers invoked.

Simple Detection

Takes a simple string and detects the language with a list of detections.

Define Query
var detectQuery = {
	query: 'I like apples & oranges.'
};
Simple Request (using Callback)
languageLayerAPI.detect(detectQuery, function (err, result) {
	if (err) {
    	return console.log('Detect Callback (Error): ' + JSON.stringify(err));
	}
    console.log('Detect Callback (Result): ' + JSON.stringify(result));
});
Simple Request (using Promises)
languageLayerAPI.detect(detectQuery)
	.then(function (result) {
    	console.log('Detect Promise Resolve: ' + JSON.stringify(result));
	})
	.catch(function (err) {
    	console.log('Detect Promise Reject: ' + JSON.stringify(err));
	});
Response
{
	"success": true,
	"results":[
		{
			"language_code": "en",
			"language_name": "English",
			"probability": 12.141682269266,
			"percentage": 100,
			"reliable_result": true
		}
	]
}

Batch Detection

Takes an array of strings and detects the language with a corresponding list of detections for each string.

Define Query
var batchQuery = {
	query: [
    	'Good afternoon, how are you today?',
    	'Guten Tag mein Herr, wie geht es Ihnen?',
    	'Buenos días señor, cómo está hoy?'
	],
	show_query: 1
};
Request (using Callback)
languageLayerAPI.batch(batchQuery, function (err, result) {
	if (err) {
    	return console.log('Batch Callback (Error): ' + JSON.stringify(err));
	}
    console.log('Batch Callback (Result): ' + JSON.stringify(result));
});
Request (using Promises)
languageLayerAPI.batch(batchQuery)
	.then(function (result) {
    	console.log('Batch Promise Resolve: ' + JSON.stringify(result));
	})
	.catch(function (err) {
    	console.log('Batch Promise Reject: ' + JSON.stringify(err));
	});
Response
{
 	"success": true,
  	"results": [
		[
          	{
          		"query": "I like apples & oranges.",
            	"language_code": "en",
            	"language_name": "English",
            	"probability": 12.141682269266,
            	"percentage": 100,
            	"reliable_result": true
          	}
        ],
	    [
        	{
        		"query": "Guten Tag mein Herr, wie geht es Ihnen?",
            	"language_code": "de",
            	"language_name": "German",
            	"probability": 23.045066185021,
            	"percentage": 100,
            	"reliable_result": false
          	}
        ],
        [
          	{
          		"query": "Buenos días señor, cómo está hoy?",
            	"language_code": "es",
            	"language_name": "Spanish",
            	"probability": 14.560273752505,
            	"percentage": 100,
            	"reliable_result": false
          	},
          	{
          		"query": "Buenos días señor, cómo está hoy?",
            	"language_code": "pt",
            	"language_name": "Portuguese",
            	"probability": 13.98519485076,
            	"percentage": 96.05035652818,
            	"reliable_result": false
          	},
          	{
          		"query": "Buenos días señor, cómo está hoy?",
            	"language_code": "gl",
            	"language_name": "Galician",
            	"probability": 13.585199932687,
            	"percentage": 93.30319033562,
            	"reliable_result": false
          	}
		]
 	]
 }

Supported Languages

Returns the list of Supported Languages, similar to the list found here:
https://languagelayer.com/languages

Request (using Callback)
languageLayerAPI.languages(function (err, result) {
	if (err) {
    	return console.log('Languages Callback (Error): ' + JSON.stringify(err));
	}
    console.log('Languages Callback (Result): ' + JSON.stringify(result));
});
Request (using Promises)
languageLayerAPI.languages(detectQuery)
	.then(function (result) {
    	console.log('Languages Promise Resolve: ' + JSON.stringify(result));
	})
	.catch(function (err) {
    	console.log('Languages Promise Reject: ' + JSON.stringify(err));
	});
Response
{
	"success": true,
	"languages": [
		{
  			"language_code": "en",
  			"language_name": "English"
		},
		{
  			"language_code": "af",
  			"language_name": "Afrikaans"
		},
		{
  			"language_code": "ar",
  			"language_name": "Arabic"
		},
		...
	]
}

Example Application

In the [rootdir]/example directory there is a fully functional application which runs all requests against all the endpoints in the API, the examples above can be seen there as source code.

The example application uses a process.env variable to hold the access key.

For running in development environments, it's easy to use the https://www.npmjs.com/package/dotenv to load variables from a local file into the environment.

Tests Travis

The tests are written for any NodeJS testing library, but has been run and targeted at the https://mochajs.org/ testing library.

Customer Support

Need any assistance? Get in touch with Customer Support.

Updates

Stay up to date by following @apilayernet on Twitter.

Legal

All usage of the languagelayer website, API, and services is subject to the languagelayer Terms & Conditions and all annexed legal documents and agreements.

Author

Peter Andreas Moelgaard (GitHub, Twitter)

 

License

Licensed under the The MIT License (MIT)

Copyright (©) 2016 Peter Andreas Moelgaard & apilayer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

language-detection's People

Contributors

pmoelgaard avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

isabella232

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.