3.0.0 • Published 11 months ago

music-routes-search v3.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
11 months ago

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);
3.0.0

11 months ago

2.3.0

1 year ago

2.2.1

1 year ago

2.4.0

1 year ago

2.2.0

2 years ago

2.1.0

2 years ago

2.0.1

4 years ago

2.0.0

5 years ago

1.0.0

5 years ago