0.0.7 • Published 5 years ago
iexcloud-api v0.0.7
IEXCloud API
JavaScript library for the IEXCloud API
Installation
npm install -S iexcloud-api
Usage
const { IEXCloud } = require('iexcloud-api');
const TOKEN = '<YOUR_IEXCLOUD_API_TOKEN>';
async function getSymbols() {
const api = new IEXCloud(TOKEN);
console.log(await api.getSymbols());
}