asx-stocks

MIT License

Stars
0

ASXapi

port pyasx over to node with typescript

const asx = require('asx-stocks')

asx.getListedCompanies()
  .then((companies) => {
    console.log(companies[100])
    console.log(companies[101])
  })

--- output ---

{
  name: 'ALTERITY THERAPEUTICS LIMITED',
  ticker: 'ATH',
  gicsIndustry: 'Pharmaceuticals, Biotechnology & Life Sciences'
}
{
  name: 'ALTERNATIVE INVESTMENT TRUST',
  ticker: 'AIQ',
  gicsIndustry: 'Not Applic'
}