https://github.com/jonathas/node-muvi
A Node.js module for acessing the Muvi API
https://github.com/jonathas/node-muvi
javascript muvi node nodejs streaming
Last synced: 2 months ago
JSON representation
A Node.js module for acessing the Muvi API
- Host: GitHub
- URL: https://github.com/jonathas/node-muvi
- Owner: jonathas
- License: mit
- Created: 2019-01-25T12:35:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T12:41:29.000Z (over 7 years ago)
- Last Synced: 2025-10-26T22:39:42.342Z (9 months ago)
- Topics: javascript, muvi, node, nodejs, streaming
- Language: JavaScript
- Homepage: https://www.muvi.com/api-new.html
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-muvi
A Node.js module for acessing the [Muvi API](https://www.muvi.com/api-new.html)
## Introduction
The Muvi API is designed to help developers, re-sellers, SIs, as well as 3rd party App developers to make use of Muvi's video streaming engine and deliver an enhanced video experience to their customers and end users. With the Muvi API you can build stunning apps, websites as well as business applications that make use of Video as their delivery and communication medium to interact with the end users. By using the Muvi API, developers can make use of Muvi's Video Streaming Engine and will be able to –
- Get Embed codes for the video player to display under your apps
- Add/Manage Subscribers
- Manage user Authentications
- Send search request and get results
## Dependencies
- request
- request-promise
## Installation
```bash
npm i node-muvi
```
## Usage
Inform the API base and API Token when creating a new object
```javascript
import Muvi from "node-muvi";
const muvi = new Muvi("https://myapi.muvi.com/rest", "155f746f4601f085715e7715dfc454rd");
muvi.getGenreList()
.then(res => {
console.log(res);
})
.catch(err => console.log(err));
```
## Maintainer
[Jon Ribeiro][0]
## License
MIT
[0]: https://github.com/jonathas