An open API service indexing awesome lists of open source software.

https://github.com/jonathas/imux-node

A Node.js module for acessing the MIT-xperts iMux Multiplexer
https://github.com/jonathas/imux-node

dvb hbbtv imux javascript multiplexer node nodejs

Last synced: 2 months ago
JSON representation

A Node.js module for acessing the MIT-xperts iMux Multiplexer

Awesome Lists containing this project

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