1.1.1 • Published 2 years ago

ts-spotify-api v1.1.1

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
2 years ago

ts-spotify-api

Interact with the Spotify API

Usage

import { Spotify } from 'ts-spotify-api';

// Initialization
const spotify = new Spotify({
    id: '12345678910',
    secret: '10987654321'
});

// Track search
const nggyu = await spotify.trackSearch({ query: 'Never Gonna Give You Up', limit: 1 });
console.log(nggyu.tracks.items[0]);

// Album search
const wyns = await spotify.albumSearch({ query: 'Whenever You Need Somebody', limit: 1 });
console.log(wyns.albums.items[0]);

// Artist search
const ra = await spotify.artistSearch({ query: 'Rick Astley', limit: 1 });
console.log(ra.artists.items[0]);
1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago