File size: 270 Bytes
f89d1ea
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import yahooFinance from 'yahoo-finance2';

console.log('Type:', typeof yahooFinance);
console.log('Value:', yahooFinance);

try {
  const result = await yahooFinance.quote('AAPL');
  console.log('Success:', result);
} catch(e) {
  console.error('Error:', e.message);
}