Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
crypto-exchange-rates
Advanced tools
This repository contains JavaScript functions for retrieving cryptocurrency rates from Binance using the axios library.
npm install
to install the required dependencies.The Crypto Rates module provides the following functions:
getCryptoRates([symbols])
This function retrieves cryptocurrency rates from the Binance API.
symbols
(optional): An array of cryptocurrency symbols. If provided, it will return rates for the specified symbols. If not provided, it will return rates for all available cryptocurrencies.const { getCryptoRates } = require('crypto-exchange-rates');
getCryptoRates(['BTCUSDT', 'ETHUSDT'])
.then(result => {
console.log(result);
})
.catch(error => {
console.error(error);
});
getCryptoRate(symbol)
This function retrieves the rate for a specific cryptocurrency symbol from the Binance API.
symbol
: A string representing the cryptocurrency symbol for which you want to get the rate.const { getCryptoRate } = require('crypto-exchange-rates');
getCryptoRate('BTCUSDT')
.then(result => {
console.log(result);
})
.catch(error => {
console.error(error);
});
loadMarketData()
This function retrieves market data from the Binance API.
const { loadMarketData } = require('crypto-exchange-rates');
loadMarketData()
.then(result => {
console.log(result);
})
.catch(error => {
console.error(error);
});
Contributions to this project are welcome. Feel free to open issues and submit pull requests.
This project is licensed under the MIT License.
FAQs
Receives up-to-date cryptocurrency rates without delays
The npm package crypto-exchange-rates receives a total of 3 weekly downloads. As such, crypto-exchange-rates popularity was classified as not popular.
We found that crypto-exchange-rates 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.