Skip to content

hyrdbyrd/YandexApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YandexApi

(async () => {
    const { YandexMusicApi } = require('../index');

    const m = new YandexMusicApi();

    const userName = 'IRuss23';
    const playlistId = '3';

    const playlist = await m.getPlaylist(userName, playlistId);

    console.log(playlist.tracks.map(({ title, artists: [{ name }] }) => `${title} ${name}`).reverse());
})();

Exmaples

If you want to try something with this lib, check exmaples


Docs?

This lib is simply as can. Just read the code


TODO

  • add fetching for files (if it's legal)
  • maybe add kinopoisk api (if i need it)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published