
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
react-currency-conv
Advanced tools
React component for currency conversion. Supports fetching latest and historical currency exchange rate based on the input date alongwith specific precision.
React component for currency conversion. Supports fetching latest and historical currency exchange rate based on the input date alongwith specific precision.
npm install react-currency-conv --save
You can get the converted value as the output of the react component and style it according to your preference.
import React from 'react';
import CurrencyConverter from 'react-currency-conv';
export default class App extends React.Component {
render() {
return (
<div className="App">
<CurrencyConverter from={'USD'} to={'CAD'} value={29}/>
</div>
);
}
}
Specify a specific precision:
// 2234.67 (default)
<CurrencyConverter from={'USD'} to={'CAD'} value={29} precision={2}/>
// 78.2482
<CurrencyConverter from={'USD'} to={'CAD'} value={29} precision={4}/>
To get the exchange rate value form :-
// NOTE: The date should be in `YYYY-MM-DD` format
<CurrencyConverter from={'USD'} to={'CAD'} value={29} date={'2010-12-22'}/>
All other attributes are applied normally to the element. For example, you can integrate bootstrap styling as:
<CurrencyConverter from={'USD'} to={'CAD'} value={29} className="form-control"/>
| Option | Default Value | Description |
|---|---|---|
| date | null | Date you want to fetch exchange rate of (YYYY-MM-DD) |
| precision | 2 | Number of digits after the decimal separator |
| Code |
|---|
| INR |
| IDR |
| ILS |
| MXN |
| USD |
| ZAR |
| NZD |
| NOK |
| CNY |
| BGN |
| TRY |
| PLN |
| SGD |
| CHF |
| THB |
| JPY |
| HRK |
| RUB |
| BRL |
| CAD |
| HKD |
| ISK |
| PHP |
| DKK |
| HUF |
| CZK |
| RON |
| SEK |
| AUD |
| EUR |
| MYR |
| KRW |
| GBP |
FAQs
React component for currency conversion. Supports fetching latest and historical currency exchange rate based on the input date alongwith specific precision.
We found that react-currency-conv 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.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.