
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@exodus/prices
Advanced tools
You can use this JavaScript module to get historical prices for cryptocurrencies / blockchain assets.
npm i --save @exodus/prices
fetchPrice()parameters:
fromSym: <string>: An asset or fiat string symbol.toSym: <string>: An asset or fiat string symbol.date: <Date>: An instance of Date representing some date in the past.Example:
global.fetch = require('node-fetch') // not necessary in the browser
const { fetchPrice } = require('@exodus/prices')
const t1 = new Date('2017-01-10 12:25 CST')
const btcPrice = await fetchPrice('BTC', 'USD', t1)
console.log(btcPrice.toFixed(2)) // => 903.30
const ethPrice = await fetchPrice('ETH', 'USD', t1)
console.log(ethPrice.toFixed(2)) // => 10.47
global.fetchthis depends on fetch() being defined globally.
node-fetch.This depends upon the cryptocompare API.
Granularity is only limited to daily. Thus, anytime in the day uses a simple linear interpolation between the open and close prices.
Occasionally cryptocompare's historical data changes. See https://github.com/ExodusMovement/audit-pricing/commit/2f9cc8cb61eb2e38983c3fee704943d67c6a9ef5 as an example.
If cryptocurrencies are interesting to you and you want to help solve some insanely challenging computer science problems, maybe you'd like to work at Exodus? Reach out and apply here: https://www.exodus.io/careers/
FAQs
Cryptocurrency prices
We found that @exodus/prices demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 33 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.