Socket
Socket
Sign inDemoInstall

yandex-music-client

Package Overview
Dependencies
7
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    yandex-music-client

``` npm i yandex-music-client ```


Version published
Weekly downloads
44
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Yandex Music Client Logo
Yandex Music Client for JavaScript (Unofficial)

JavaScript client for Yandex Music generated from OpenAPI Schema.

Installation

npm i yandex-music-client

Usage

Creating Client

import { getToken } from 'yandex-music-client/token';
import { YandexMusicClient } from 'yandex-music-client/YandexMusicClient'

const token = await getToken('your email', 'your password');

const client = new YandexMusicClient({
    BASE: "https://api.music.yandex.net:443",
    HEADERS: {
        'Authorization': `OAuth ${config.token}`,
        // specify 'en' to receive data in English
        'Accept-Language': 'ru'
      },
});

Getting new releases

// ...

client.landing.getNewReleases();

Getting track URL

import { getTrackUrl } from 'yandex-music-client/trackUrl';
 
// ...

getTrackUrl(client, trackId);

Keywords

FAQs

Last updated on 02 Apr 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc