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

music-md

v1.0.1

Published

Get metadata for artists and albums for use in music apps.

Downloads

6

Readme

Music Metadata

Get album / artist artwork and metadata

Install

$ npm install --save music-md

Usage


var musicMeta = require('music-md')

musicMeta.getAlbum('Goo', 'Sonic Youth', 'large')
  .then(function(data) {
    // console.log(data)
    // => 
          { artist: 'Sonic Youth',
            album: 'Goo',
            albumArtwork: 'https://lastfm-img2.akamaized.net/i/u/174s/9fecf539cc254e87b7b44035efd93ea7.png',
            trackList:
             [ { title: 'Dirty Boots', duration: '290', trackNo: 1 },
               { title: 'Tunic (Song for Karen)', duration: '377', trackNo: 2 },
               { title: 'Mary-Christ', duration: '188', trackNo: 3 },
               { title: 'Kool Thing', duration: '244', trackNo: 4 },
               { title: 'Mote', duration: '456', trackNo: 5 },
               { title: 'My Friend Goo', duration: '138', trackNo: 6 },
               { title: 'Disappearer', duration: '295', trackNo: 7 },
               { title: 'Mildred Pierce', duration: '132', trackNo: 8 },
               { title: 'Cinderella\'s Big Score', duration: '354', trackNo: 9 },
               { title: 'Scooter + Jinx', duration: '60', trackNo: 10 },
               { title: 'Titanium Expose', duration: '285', trackNo: 11 } ] 
    }
  })


musicMeta.getArtistInfoAndImage('Nine Inch Nails', 'medium')
  .then(function(data) {
    // console.log(data)
    // => 
      { artwork: 'https://lastfm-img2.akamaized.net/i/u/64s/4395b0232dda4cd08e1a871f5ecf1714.png',
        bio: "Nine Inch Nails is a Cleveland, OH, USA, Industrial rock band that was formed in 1988 by Trent Reznor, the only constant member of the band. He\'s generally credited for popularizing the genre known as "industrial rock" with both his releases and dark, theatrical music videos.\n\nBorn Michael Trent Reznor, he was raised by his maternal grandparents in Mercer, Pennsylvania, USA. Reznor took up piano at the age of five and in high school took up the tuba and saxophone. In the early to mid-80s...",
        tags:  ['industrial',
         'industrial rock',
         'rock',
         'alternative',
         'electronic']
    }
  })

API

getAlbum(album, artist, size)

album

Required
Type: string

Title of the album to search for.

artist

Required Type: string

Album's artist.

size

Required Type: string

possible values: small, medium, large, extralarge, mega

Size of album image to return.

Returns new Promise()

getArtist(artist, size)

artist

Required
Type: string

Title of the artist to search for.

size

Required Type: string

possible values: small, medium, large, extralarge, mega

Size of artist image to return.

Returns new Promise()

License

This package uses the Last.fm API for it's data. You may consult the Last.fm API Terms of Service for license details.

MIT License - Khalil Stemmler