1.0.2 • Published 7 years ago

ngspotifylib v1.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

NgSpotifylib

Angular module that fetches artist's names from spotify

Prerequisites

Angular4

Example code

export class AppComponent implements OnInit{ title = 'NG Spotify'; artist:string = "";

constructor(private router: Router){

} ngOnInit(){

} search(){ this.router.navigate('/link', { queryParams: { artist: this.artist } });

}

}