4.3.0 • Published 1 year ago

shoukaku-spotify v4.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

lavasfy npm

Spotify album, playlist, and track resolver for Lavalink.

Installing

# npm
npm i rajamoulimallareddy/shoukaku-spotify

# yarn
yarn add rajamoulimallareddy/shoukaku-spotify

Example Usage

const { SpotifyClient } = require("shoukaku-spotify");

const lavasfy = new SpotifyClient(
  {
    clientId: "a client id",
    clientSecret: "a client secret",
  },
  [
    {
      name: "main",
      url: "localhost:2333",
      auth: "youshallnotpass",
    },
  ]
);

(async () => {
  // We need to call this to get the Spotify API access token.
  await lavasfy.requestToken();

  // Select node to use with its id.
  const node = lavasfy.nodes.get("main");

  // fetch the current node.
  const node = lavasfy.getNode();

  // Use Node#load to load album, playlist, and track
  const album = await node.load(
    "https://open.spotify.com/album/4sZni6V6NvVYhfUFGqKuR3"
  );
  console.log(album);

  const playlist = await node.load(
    "https://open.spotify.com/playlist/2NdDBIGHUCu977yW5iKWQY"
  );
  console.log(playlist);

  const track = await node.load(
    "https://open.spotify.com/track/4zsxBgPkUFYEoOGDncGIBd"
  );
  console.log(track);

  const artist = await node.load(
    "https://open.spotify.com/artist/2IGbyqqfidUAYqW19slJuR"
  );
  console.log(artist);

  // Response object: https://github.com/Allvaa/lava-spotify/blob/master/src/typings/Lavalink/index.ts#L25
})();

Documentation

Note

This updated version of allvaa/lavasfy & noxzym/lava-spotify i have just made small changes other than that rest are from these only

4.3.0

1 year ago

4.2.2

2 years ago

4.2.0

2 years ago

4.1.0

2 years ago

3.0.0-shoukaku

2 years ago