Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
currency-conversion
Advanced tools
Free and startup-friendly currency converter JSON API for real-time and historical exchange rates - reliable and accurate, supporting 168 world currencies.
Node JavaScript wrapper for the currencylayer API.
Supports both traditional callbacks and Promises/A+.
npm install currency-conversion [--save]
Before using the currencylayer API client you have to setup your account and obtain your API Access Key.
You can get it by signing up at https://currencylayer.com/product.
The general API is documented here: https://currencylayer.com/documentation.
You can find parameters, result set definitions and status codes documented here as well.
var API = require('currency-conversion');
var api = new API({
access_key: [ACCESS_KEY],
secure: [true|false] (Optional, defaults to false)
});
Boolean value to indicate if the calls to the API should use a secure protocol or insecure (HTTP/HTTPS). Defaults to false (HTTP, insecure).
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.
All endpoints in the public API is available through this library.
Takes a simple string and detects the language with a list of detections.
var liveQuery = {
source: 'SGD',
currencies: ['USD', 'THB']
};
api.live(liveQuery, function (err, result) {
if (err) {
return console.log('Live Callback (Error): ' + JSON.stringify(err));
}
console.log('Live Callback (Result): ' + JSON.stringify(result));
});
{
"success": true,
"terms": "https://currencylayer.com/terms",
"privacy": "https://currencylayer.com/privacy",
"currencies": {
"AED": "United Arab Emirates Dirham",
"AFN": "Afghan Afghani",
"ALL": "Albanian Lek",
...
}
}
The Live API accepts a third argument which contains the options for the operation of the API.
var liveOptions = {
refresh_rate: [interval in milliseconds]
};
When the refresh_rate option is added, the API will update automatically and invoke the callbacks and promises accordingly. The example application illustrates this.
Internally the API uses the ETag and Date headers in the responses and If-None-Match and If-Modified-Since correspondingly on the requests. This reduces the payload sent from the server by utilising the 304 HTTP codes to use data from the internal cache instead of retrieving identical values from the server.
https://currencylayer.com/documentation
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.
The tests are written for any NodeJS testing library, but has been run and targeted at the https://mochajs.org/ testing library.
Need any assistance? Get in touch with Customer Support.
Stay up to date by following @apilayernet on Twitter.
All usage of the languagelayer website, API, and services is subject to the languagelayer Terms & Conditions and all annexed legal documents and agreements.
Peter Andreas Moelgaard (GitHub, Twitter)
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.
FAQs
Free and startup-friendly currency converter JSON API for real-time and historical exchange rates - reliable and accurate, supporting 168 world currencies.
The npm package currency-conversion receives a total of 15 weekly downloads. As such, currency-conversion popularity was classified as not popular.
We found that currency-conversion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.