mic-max / spotify-playing

Gets the current song playing on Spotify

Home Page:https://www.npmjs.com/package/spotify-playing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spotify Playing

Node.js Package NPM Version

Gets the current song playing on Spotify

Requirements

Works on Windows, Mac, and Linux with the desktop spotify client.

Example

const playing = require('spotify-playing')

setInterval(playing, 1000, (err, now) => {
    if (err)
        // Platform not supported
        // Cannot find Spotify process
        // Nothing playing on Spotify
        return console.error(err)

    // { artist: 'The Fratellis', song: 'Chelsea Dagger' }
    console.log(now)
})

Troubleshooting

  • If playing on another device you first might need to switch to this device and switch the song.
  • Close and reopen Spotify

About

Gets the current song playing on Spotify

https://www.npmjs.com/package/spotify-playing


Languages

Language:JavaScript 100.0%