Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
javascript-currency-library
Advanced tools
The goal of this javascript library is to provide some services with the currencies
The goal of this library is to provide some services with the currencies. The first one is to give the relationships between currencies and countries.
The data in this repo are pretty raws (ISO codes). To have more display-friendler things, you can use some others library :
Warning : the lists are not comprehensives ie. all the currencies are not defined and all the countries of a currency neither.
const currencyManager = require('javascript-currency-library');
console.log(currencyManager.get('GBP').getCountries());
// output : ['GB']
console.log(currencyManager.get('EUR').getCountries());
// output : ['ES','DE','FR', 'IT']
console.log(currencyManager.findByCountry('FR');
// output : 'EUR'
console.log(currencyManager.get('EUR').isAvailableIn('UK'));
// output : false
console.log(currencyManager.getSupportedCurrencies());
// output : ['EUR', 'GBP']
npm install --save javascript-currency-library
Look at the documentation in the code.
Look at contribution guidelines here : CONTRIBUTING.md
Simply run :
yarn install && yarn test
To automatically launch the tests when a file is changed :
yarn run watch-test
Check the style :
yarn run check-build
FAQs
The goal of this javascript library is to provide some services with the currencies
The npm package javascript-currency-library receives a total of 8 weekly downloads. As such, javascript-currency-library popularity was classified as not popular.
We found that javascript-currency-library 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.