spotify-playing

1.0.8 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i spotify-playing

      Weekly Downloads

      1

      Version

      1.0.8

      License

      ISC

      Unpacked Size

      3.41 kB

      Total Files

      6

      Last publish

      Collaborators

      • micmax