itsmepetrov / yandex-music-api

A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yandex.Music API (Unofficial) for Node

This is a Node.js wrapper for the Yandex.Music API that is used in mobile apps (iOS/Android).

Installation

npm install yandex-music-api

Usage

var YandexMusicApi = require('yandex-music-api');

var api = new YandexMusicApi();

api.init({username: 'example@yandex.ru', password: 'password'}).then(function() {
	// place code here
})

This library provides following functions:

Users

  • getAccountStatus
  • getFeed

Music

  • getGenres
  • search

Playlist

  • getUserPlaylists
  • getPlaylist
  • getPlaylists
  • createPlaylist
  • removePlaylist
  • renamePlaylist
  • addTracksToPlaylist
  • removeTracksFromPlaylist

About

A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru

License:MIT License


Languages

Language:JavaScript 100.0%