# aux-dbf

> DBF for price PSM

Latest version **3.1.10** (published 2020-07-13) · ISC license · 0 weekly downloads

## Install

```sh
npm install aux-dbf
pnpm add aux-dbf
yarn add aux-dbf
bun add aux-dbf
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.1.10 |
| Published | 2020-07-13 |
| First published | 2020-05-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 96.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Dzhigurda A Anton |
| Maintainers | pikada-lab |
| Keywords | dbf, auxilium, apc |

## Links

- npm: https://www.npmjs.com/package/aux-dbf
- npm.io page: https://npm.io/package/aux-dbf

## Dependencies (2)

- [iconv-lite](https://npm.io/package/iconv-lite.md) ^0.5.1
- [@types/node](https://npm.io/package/@types/node.md) ^13.13.9

## Recent versions

- 3.1.10 (latest) — 2020-07-13
- 3.1.9 — 2020-07-13
- 3.1.8 — 2020-07-13
- 3.1.7 — 2020-07-13
- 3.1.6 — 2020-07-13
- 3.1.5 — 2020-05-25
- 3.1.4 — 2020-05-25
- 3.1.3 — 2020-05-24
- 3.1.2 — 2020-05-24
- 3.1.1 — 2020-05-24
- 3.1.0 — 2020-05-24
- 3.0.4 — 2020-05-10
- 3.0.3 — 2020-05-10
- 3.0.2 — 2020-05-10
- 3.0.1 — 2020-05-10
- … 1 more at https://npm.io/package/aux-dbf/versions

## README

# ИСПОЛЬЗОВАНИЕ

```typescript
let dbf = new DBFLib("./test/3-01038.dbf");

//  dbf.mode = DBF_MODE.TEST

dbf.DBFRead((err, dbf) => {
  // Создать массив 
  dbf.readRows();

  for (let i = 0; i < dbf.Count(); i++) {
    let row = dbf.getString(i, 1);
    console.log(row);
  }

  console.log(dbf.getString(dbf.Count() - 1, 0));
  console.log(dbf.Search(0, 733094050));

  // Создание индекса в виде BTree
  dbf.SetBTree(0);
  console.log(dbf.Search(0, 733094050));
});
```

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