# imux

> Node.js integration with MIT-xperts iMux Multiplexer

Latest version **0.0.5** (published 2018-10-10) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2018-10-10 |
| First published | 2018-10-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 12.3 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Jon Ribeiro |
| Maintainers | jonathas |
| Keywords | imux, multiplexer, dvb, dsm-cc, hbbtv |

## Links

- npm: https://www.npmjs.com/package/imux
- Repository: https://github.com/jonathas/imux-node
- Issues: https://github.com/jonathas/imux-node/issues
- npm.io page: https://npm.io/package/imux

## Dependencies (3)

- [mime](https://npm.io/package/mime.md) ^2.2.0
- [request](https://npm.io/package/request.md) ^2.88.0
- [request-promise](https://npm.io/package/request-promise.md) ^4.2.2

## Recent versions

- 0.0.5 (latest) — 2018-10-10
- 0.0.4 — 2018-10-10
- 0.0.3 — 2018-10-10
- 0.0.2 — 2018-10-10
- 0.0.1 — 2018-10-10

## README

# imux

A Node.js module for acessing the [MIT-xperts iMux Multiplexer](http://www.mit-xperts.com/products/imux/)

## Dependencies

- mime
- request
- request-promise

## Installation

```bash
  npm i imux
```

## Usage

```javascript
import * as iMux from "imux";

const sendZipFile = async (zipPath) => {
    // An example of API base would be: https://172.12.75.139/imux/api/api.php
    await iMux.login(process.env.IMUX_API_BASE, process.env.IMUX_USER, process.env.IMUX_PASSWORD);
    await iMux.uploadZipFile(1, zipPath, true);
    await iMux.activate();
    await iMux.logoff();
};
```

## Maintainer

[Jon Ribeiro][0]

## License

MIT

[0]: https://github.com/jonathas

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