# idstock-reader

> Reader for financial report that published by [Indonesian Stock Exchange](https://idx.co.id) that have .xlsx format

Latest version **0.2.1** (published 2023-07-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install idstock-reader
pnpm add idstock-reader
yarn add idstock-reader
bun add idstock-reader
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.1 |
| Published | 2023-07-11 |
| First published | 2022-09-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 10.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Hare Prananda |
| Maintainers | hareprananda |

## Links

- npm: https://www.npmjs.com/package/idstock-reader
- npm.io page: https://npm.io/package/idstock-reader

## Dependencies (2)

- [humps](https://npm.io/package/humps.md) ^2.0.1
- [read-excel-file](https://npm.io/package/read-excel-file.md) ^5.4.4

## Recent versions

- 0.2.1 (latest) — 2023-07-11
- 0.2.0 — 2022-09-11
- 0.1.2 — 2022-09-10
- 0.1.1 — 2022-09-06

## README

# IDX Financial Report Reader

Reader for financial report that published by [Indonesian Stock Exchange](https://idx.co.id) that have .xlsx format

## How to Install

```bash
  npm install idstock-reader

  // using yarn:

  yarn add idstock-reader
```

## Usage

```bash
import Reader from 'idstock-reader'


const readerIns = new Reader({path: "financialReportPath.xlsx", language: "en"})

// Get general information
await readerIns.getGeneral()

//get cashflow statement
await readerIns.getCashflow()

//get balance statement
await readerIns.getBalance()

//get income statement
await readerIns.getIncome()

//get change statement
await readerIns.getChangeStatement()

//get full report (general, income, cashflow, balance, change) statement
await readerIns.getFullReport()


```

---
_Source: https://npm.io/package/idstock-reader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
