1.1.1 • Published 3 years ago

ts-spotify-api v1.1.1

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 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

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago