# dotmatrix

> Converts a DOT file to an adjacency matrix

Latest version **1.0.0** (published 2018-12-13) · ISC license · 0 weekly downloads

## Install

```sh
npm install dotmatrix
pnpm add dotmatrix
yarn add dotmatrix
bun add dotmatrix
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-12-13 |
| First published | 2018-11-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 225.1 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Paul Musgrave |
| Maintainers | ps.musgrave |
| Keywords | dot, gv, adjacency, matrix |

## Links

- npm: https://www.npmjs.com/package/dotmatrix
- Repository: https://github.com/pmusgrave/dotmatrix
- Homepage: https://github.com/pmusgrave/dotmatrix#readme
- Issues: https://github.com/pmusgrave/dotmatrix/issues
- npm.io page: https://npm.io/package/dotmatrix

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2018-12-13
- 0.1.0 — 2018-12-01
- 0.0.0 — 2018-11-29

## README

# DOTMATRIX

This converts a DOT file to an adjacency matrix.

#### Example usage:
First, include the dotmatrix module.
Then, call ```dotmatrix.convert_dot_file_to_matrix```. The first argument is the path to the target dot file, and the second argument is a callback function to process the results.

e.g.
```
const dotmatrix = require('./dotmatrix.js');
const dot_path = process.argv[2];

dotmatrix.convert_dot_file_to_matrix(dot_path, (matrix) => {
  console.log(matrix);
});
```

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