music-routes-search
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

music-routes-search

Search the Music Routes data set

Usage

An individual is someone credited with performing on a track.

Search for an individual:

const { search } = require('music-routes-search');
const results = search('Chrissie Hynde', 'individual');
console.log(results);

An artist is someone to whom a track is credited. It may be an individual or a collective (band).

Search for an artist:

const { search } = require('music-routes-search');
const results = search('The Pretenders', 'artist');
console.log(results);

A track is a recording, typically of a single song.

Search for a track:

const { search } = require('music-routes-search');
const results = search('Back On The Chain Gang', 'track');
console.log(results);

A release explains where a track can be found. For example, it might be the name of the album where a track originally appeared.

Search for a release:

const { search } = require('music-routes-search');
const results = search('Learning To Crawl', 'album');
console.log(results);

Dependents (0)

Package Sidebar

Install

npm i music-routes-search

Weekly Downloads

10

Version

3.0.0

License

MIT

Unpacked Size

2.39 MB

Total Files

9

Last publish

Collaborators

  • trott