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

@muhimur/apple-music

v0.4.6

Published

Apple Music API Client for Node.js

Downloads

11

Readme

Node.js Client for Apple Music

The Node.js client for Apple Music is a client library for Apple Music API built with TypeScript.

Currently this library provides only a feature to fetch a single resource such as album, artists, songs, playlists, music videos, or stations.

Note that this does not related to MusicKit JS, which is the official library of Apple Music for web apps.

Requirements

You need to be a member of the Apple Developer Program and obtain your Apple Music developer token with some tools such as apple-music-token-node.

Installation

Install the package with:

npm install --save @yujinakayama/apple-music

Type definitions for TypeScript are also included in the package.

Usage

You need to instantiate a client with your developer token:

import { Client } from "@yujinakayama/apple-music";

const client = new Client({ developerToken: 'YOUR_DEVELOPER_TOKEN' });

Fetching Single Resource

You can fetch album, artists, songs, playlists, music videos, or stations with client.RESOURCES.get():

async function main() {
  const client = new Client({ developerToken: 'YOUR_DEVELOPER_TOKEN' });

  const playlistID = 'pl.5ee8333dbe944d9f9151e97d92d1ead9';
  const response = await client.playlists.get(playlistID, { storefront: 'us' });
  const playlist = response.data[0];

  console.log(playlist.attributes!);
  // {
  //   artwork: {
  //     width: 4320,
  //     height: 1080,
  //     url: 'https://is1-ssl.mzstatic.com/image/thumb/Features124/v4/f7/25/2e/f7252e6c-921b-6475-7b34-754f3ca0ef1a/source/{w}x{h}cc.jpeg',
  //     bgColor: '0051cc',
  //     textColor1: 'e4fe63',
  //     textColor2: 'f3e8f1',
  //     textColor3: 'b6db78',
  //     textColor4: 'c2c9ea'
  //   },
  //   isChart: false,
  //   url: 'https://music.apple.com/us/playlist/a-list-pop/pl.5ee8333dbe944d9f9151e97d92d1ead9',
  //   lastModifiedDate: 2020-02-14T05:00:26.000Z,
  //   name: 'A-List Pop',
  //   playlistType: 'editorial',
  //   curatorName: 'Apple Music Pop',
  //   playParams: { id: 'pl.5ee8333dbe944d9f9151e97d92d1ead9', kind: 'playlist' },
  //   description: {
  //     standard: "The title track from Sam Smith’s forthcoming third album, “To Die For” was inspired by Abbot Kinney—the iconic beach-adjacent boulevard in Los Angeles’ Venice neighborhood. “I was walking down there on a Sunday and everyone was happy because everyone's happy on that road,” Smith tells Apple Music. “Just partners everywhere, kissing, and families. And it's basically about that—about feeling alone and feeling like you're on the outside watching everyone else together.” Add A-List Pop to your library to stay up on the latest and greatest pop music.",
  //     short: `Sam Smith's new song is inspired by "the most beautiful road in America."`
  //   }
  // }
}

main();

Handling Errors

You can handle API errors as:

async function main() {
  const client = new Client({ developerToken: 'YOUR_DEVELOPER_TOKEN' });

  try {
    const response = await client.playlists.get('nosuchplaylist', { storefront: 'us' });
  } catch (error) {
    console.log(error.httpStatusCode);
    // 404

    console.log(error.response.errors[0])
    // {
    //   id: 'LVZEECBHZRR4HII432DE7VDF6E',
    //   title: 'Resource Not Found',
    //   detail: 'Resource with requested id was not found',
    //   status: '404',
    //   code: '40400'
    // }
    }
  }
}

main();

Specifying Storefront

You must specify storefront either:

  • defaultStorefront parameter in the constructor
  • storefront parameter in get()
const client = new Client({
  developerToken: 'YOUR_DEVELOPER_TOKEN',
  defaultStorefront: 'us'
});

const response = await client.playlists.get(playlistID);
const client = new Client({
  developerToken: 'YOUR_DEVELOPER_TOKEN',
});

const response = await client.playlists.get(playlistID, { storefront: 'us' });

Specifying Language Tag

You can specify language tag either:

  • Unspecify for the storefront's default language
  • defaultLanguageTag parameter in the constructor
  • languageTag parameter in get()
const client = new Client({
  developerToken: 'YOUR_DEVELOPER_TOKEN',
  defaultStorefront: 'jp'
});

// The storefront's default
const response = await client.playlists.get(playlistID);
const client = new Client({
  developerToken: 'YOUR_DEVELOPER_TOKEN',
  defaultStorefront: 'jp',
  defaultLanguageTag: 'en-US'
});

const response = await client.playlists.get(playlistID);
const client = new Client({
  developerToken: 'YOUR_DEVELOPER_TOKEN',
  defaultStorefront: 'jp',
});

const response = await client.playlists.get(playlistID, { languageTag: 'en-US' });

License

Copyright (c) 2020 Yuji Nakayama

See the LICENSE.txt for details.