Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edgarvaguencia/node-ivoox
Unofficial iVoox API for node
https://github.com/edgarvaguencia/node-ivoox
api ivoox node npm yarn
Last synced: about 1 month ago
JSON representation
Unofficial iVoox API for node
- Host: GitHub
- URL: https://github.com/edgarvaguencia/node-ivoox
- Owner: EdgarVaguencia
- License: mit
- Created: 2015-10-01T17:26:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-16T19:07:42.000Z (over 1 year ago)
- Last Synced: 2024-11-15T21:35:26.610Z (about 1 month ago)
- Topics: api, ivoox, node, npm, yarn
- Language: JavaScript
- Size: 438 KB
- Stars: 16
- Watchers: 3
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-ivoox
===========Unofficial iVoox API for node
[![NPM](https://nodei.co/npm/node-ivoox.png?downloads=true&downloadRank=true)](https://nodei.co/npm/node-ivoox/)
[![Build Status](https://travis-ci.org/EdgarVaguencia/node-ivoox.svg?branch=master)](https://travis-ci.org/EdgarVaguencia/node-ivoox) [![Code Climate](https://codeclimate.com/github/EdgarVaguencia/node-ivoox/badges/gpa.svg)](https://codeclimate.com/github/EdgarVaguencia/node-ivoox) [![Coverage Status](https://coveralls.io/repos/EdgarVaguencia/node-ivoox/badge.svg?branch=master&service=github)](https://coveralls.io/github/EdgarVaguencia/node-ivoox?branch=master)
Install
-------```bash
npm install node-ivoox
```Use
----```javascript
var ivoox = require('node-ivoox');ivoox.audios().then(function(data) { console.log(data) }).catch(function(e) { console.error(e); });
```Methods
-------* audios([urlPodcasts])
* podcasts()
* search(string)Example of a response
---------------------```json
[
{
"author": "La Lupa con Rosa Pérez (Podcast oficial)",
"category": "Misterio y otras realidades",
"file": "http://ivoox.com/listen_mn_3423261_1.mp3",
"imgMain": "http://static-1.ivoox.com/audios/1408745050g.jpg",
"imgMini": "http://static-1.ivoox.com/usuarios/6251441429674mini.jpg",
"link": "http://www.ivoox.com/lupa-casas-malditas-encantadas-con-audios-mp3_rf_3423261_1.html",
"title": "La Lupa – “Casas malditas y encantadas” con Joaquín Abenza, J.M Marsella, Jesús..."
},
{
"author": "Contraperiodismo Matrix",
"category": "Misterio y otras realidades",
"file": "http://ivoox.com/listen_mn_9103980_1.mp3",
"imgMain": "http://static-1.ivoox.com/canales/6371393915683g.jpg",
"imgMini": "http://static-1.ivoox.com/usuarios/1211442557042mini.jpg",
"link": "http://www.ivoox.com/211015-contraperiodismo-matrix-nba-iluminati-audios-mp3_rf_9103980_1.html",
"title": "211015 contraperiodismo matrix. NBA iluminati."
}
]
```