npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

spotify-lens

v3.0.2

Published

A enhanced wrapper for Spotify-api. It provides a simple api to the data otherwise have to be computed. It also provides a cli playback control and data export

Downloads

41

Readme

SpotifyLens

NB

So far the core functions I designed have all been implemented. The last function I added is to export top data for different countries. And I have also initiated a sister project Spotioid to visualize these data, check it out if you are interested.

Issues may occure if the playlist is extremely large due to API call frequency restrictions by Spofity (as I am doing concurrent requests, and in that case it will be too many). I will fix this problem later(but not soon). But you can checkout the code in Worker case 10 where there is a solution for a similar problem. If you found out any other bugs, please report on Github. PR is all welcomed.

This is a enhanced wrapper for Spotify-api. It provides a simple api to the data that otherwise have to be computed. Most of the methods extends the original track-oriented api to a playlist-oriented manner.

Along with the package also comes a interactive terminal interface with which these data can be exported to local .json file. In addition, some handy playback controls are integrated.

Features

  • Interactive REPL terminal interface for controling over spotify and export data. screenshot

  • Automatically refreshes access token in the interactive mode.

  • Get concatenated & pruned (configurable) data of all (Say goodbye to 50 objects at a time!) tracks in a playlist. Concurrent requests garantees the execution is still fast even when the playlist is long.

  • For scalability, there is a generic method(SpotifyLens.pageConcater) to retrieve any paged data in Spotify api. Say if you want to extend a new method to get concatenated album list of an artist, you can add a new method to SpotifyLens like this:

    async getAllAlbums(artistId) {
      const tasks = await this.pageConcater(this.getArtistAlbums.bind(this))(artistId)
      const responses = await Promise.all(tasks)
      //...
    }
        
  • Calculate a list of ranked artists from a playlist.

  • Genre analyzation for a playlist.

  • Playlist-oriented audio features analysis.

How to

Run interactively at the terminal

  • Create a .env file containing these fields.
    As for how to get secret and id, refer to the docs by Spotify.
ClientID=YOUR ID HERE
ClientSecret=YOUR SECRET HERE
Port=3000
OutputDir=data
Tracks=tracks
Artists=artists 
Genres=genres
AudioFeatures=audio_features
  • Clone the repository then npm install OR npm i spotify-lens.
  • node run.js and follow the instrcutions on the terminal.

Just use the core api

  • npm i spotify-lens
  • Manage the authentication yourself and then you can use the methods.

API

Worker

The Worker class provides authentication flow and cli.

SpotifyLens

The SpotifyLens class provides core functions, and is well-suited to be embeded into exsiting web services. It depends on lodash, spotify-web-api-node and chalk(for logging).

Available methods

  • Since the core is an extension from spotify-web-api-node, any methods from spotify-web-api-node are still valid!
  • getAllTracks(playlistId) returns all tracks found in the playlist with playlistId.
  • analyzeGenre(playlistId) examines the artists in the playlist wtih playlistId and return a counted genre representation.
[
  //...
   {
        "count": 82,
        "name": "tropical house"
    },
    {
        "count": 60,
        "name": "dance pop"
    },
    //...
]
  • analyzeGenreTokenized(playlistId) is similar to analyzeGenre but will tokenize tropical house to tropical and house.
  • getAllArtists(playlistId) returns a ranked artists list whose works are found in the playlist with playlistId. The artists are ranked by the number of works included in the playlist. So with this api you can analyze for example who are your favorite artists.
  • analyzeAudioFeatures(playlistId) returns an overall average of features: 'danceability','energy','key','loudness','mode','speechiness','acousticness','instrumentalness','liveness','valence','tempo'.
[
    {
        "name": "key",
        "value": 6.919607695008806
    },
    {
        "name": "loudness",
        "value": -6.809477846428727
    },
    {
        "name": "mode",
        "value": 0.2117378077248013
    }
    //...
]

For the methods above, if playlistId is undefined, it will target at the Saved Songs library.

  • addCurrent adds the currently being played track to the Saved Songs library.
  • getAllPlaylists returns current users' all playlists and the corresponding id.
  • getTopArtists({ limit = 50, offset=0 }) returns the spotify personalization information about top artistis. Same logic applies to getTopTracks({ time_range, limit, offset }) NB This is different from the default beheavior as specified by Spotfiy documentation. According to documentation from Spotify, the time_range is set to mid_term as default value. However, this function return data in all three time ranges. The returned value look like this:
{
  "long_term": [
    {
      //...
      "genres": [],
      "id": "4KXp3xtaz1wWXnu5u34eVX",
      "images": [],
      "popularity": 62,
      "type": "artist"
    }
    // ...
  ],
  "mid_term": [
    {
      //...
    }
  ],
  "short_term": [
    {
      //...
    }
  ]
}

Configure

In the config.js, you can configure some beheavior of the api.

  • PRUNE_***_KEYS contains the keys to be deleted when a *** object is fetched from spotify api.
  • SPOTIFY_SCOPES contains the scopes required for Spotify API.
  • PROMPT contains the cli.

Roadmap

  • [x] Customize keys to export on objects.
  • [x] Top artists/tracks.
  • [x] Genre data.
  • [ ] Reorgnize code to be more maintainable.
  • [x] Playlist audio features analysis.
  • [ ] Rewrite the project in Typescript.