Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@everapi/freecurrencyapi-js
Advanced tools
A JavaScript wrapper for the freecurrencyapi.com's API
Freecurrencyapi.com is a free currency API that provides realtime & historic data. This package is a JavaScript wrapper for freecurrencyapi.com that aims to make the usage of the API as easy as possible in your project.
npm install --save @everapi/freecurrencyapi-js
yarn add @everapi/freecurrencyapi-js
import Freecurrencyapi from '@everapi/freecurrencyapi-js';
or use it directly in a Browser:
<script src="path/to/freecurrencyapi-js/index.js"></script>
Initialize the API with your API Key (get one for free at freecurrencyapi.com):
const freecurrencyapi = new Freecurrencyapi('YOUR-API-KEY');
Afterwards you can make calls to the API like this:
freecurrencyapi.latest({
base_currency: 'USD',
currencies: 'EUR'
}).then(response => {
console.log(response);
});
Endpoints accessible with a free account:
status
currencies
latest
historical
Find out more about our endpoints, parameters and response data structure in the docs
The MIT License (MIT). Please see License File for more information.
FAQs
A JavaScript wrapper for the freecurrencyapi.com's API
The npm package @everapi/freecurrencyapi-js receives a total of 2 weekly downloads. As such, @everapi/freecurrencyapi-js popularity was classified as not popular.
We found that @everapi/freecurrencyapi-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.