UNPKG

realtime-data-cli-tool

Version:

A real-time data dashboard CLI tool built with Ink, React, and TypeScript that displays live ISS location, weather, Bitcoin prices, random facts, and inspirational quotes

12 lines (11 loc) 338 B
export const fetchFactData = async () => { try { const response = await fetch('https://uselessfacts.jsph.pl/random.json?language=en'); const data = await response.json(); return { text: data.text }; } catch (error) { console.error('Failed to fetch fact:', error); return null; } };